blob: 470fe8998c9b820352e234c0aa9e2bd267804863 [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.
34 *
35 * TODO: Neil Brown made the following observation: We currently
36 * initially reserve NFSD_BUFSIZE space on the transmit queue and
37 * never release any of that until the request is complete.
38 * It would be good to calculate a new maximum response size while
39 * decoding the COMPOUND, and call svc_reserve with this number
40 * at the end of nfs4svc_decode_compoundargs.
41 */
42
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/namei.h>
Boaz Harrosh341eb182009-12-03 20:29:12 +020045#include <linux/statfs.h>
Andy Adamson0733d212009-04-03 08:28:01 +030046#include <linux/utsname.h>
Bryan Schumaker17456802011-07-13 10:50:48 -040047#include <linux/pagemap.h>
J. Bruce Fields4796f452007-07-17 04:04:51 -070048#include <linux/sunrpc/svcauth_gss.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020049
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050050#include "idmap.h"
51#include "acl.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020052#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050053#include "vfs.h"
Bryan Schumaker17456802011-07-13 10:50:48 -040054#include "state.h"
J. Bruce Fields10910062011-01-24 12:11:02 -050055#include "cache.h"
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +030056#include "netns.h"
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050057
David Quigley18032ca2013-05-02 13:19:10 -040058#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
59#include <linux/security.h>
60#endif
61
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define NFSDDBG_FACILITY NFSDDBG_XDR
64
J.Bruce Fields42ca0992006-10-04 02:16:20 -070065/*
66 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
67 * directory in order to indicate to the client that a filesystem boundary is present
68 * We use a fixed fsid for a referral
69 */
70#define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
71#define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
72
Al Virob37ad282006-10-19 23:28:59 -070073static __be32
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -050074check_filename(char *str, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 int i;
77
78 if (len == 0)
79 return nfserr_inval;
80 if (isdotent(str, len))
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -050081 return nfserr_badname;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 for (i = 0; i < len; i++)
83 if (str[i] == '/')
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -050084 return nfserr_badname;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return 0;
86}
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define DECODE_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -070089 __be32 *p; \
Al Virob37ad282006-10-19 23:28:59 -070090 __be32 status
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define DECODE_TAIL \
92 status = 0; \
93out: \
94 return status; \
95xdr_error: \
Chuck Lever817cb9d2007-09-11 18:01:20 -040096 dprintk("NFSD: xdr error (%s:%d)\n", \
97 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 status = nfserr_bad_xdr; \
99 goto out
100
101#define READ32(x) (x) = ntohl(*p++)
102#define READ64(x) do { \
103 (x) = (u64)ntohl(*p++) << 32; \
104 (x) |= ntohl(*p++); \
105} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define READMEM(x,nbytes) do { \
107 x = (char *)p; \
108 p += XDR_QUADLEN(nbytes); \
109} while (0)
110#define SAVEMEM(x,nbytes) do { \
111 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
112 savemem(argp, p, nbytes) : \
113 (char *)p)) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400114 dprintk("NFSD: xdr error (%s:%d)\n", \
115 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 goto xdr_error; \
117 } \
118 p += XDR_QUADLEN(nbytes); \
119} while (0)
120#define COPYMEM(x,nbytes) do { \
121 memcpy((x), p, nbytes); \
122 p += XDR_QUADLEN(nbytes); \
123} while (0)
124
125/* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
126#define READ_BUF(nbytes) do { \
127 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
128 p = argp->p; \
129 argp->p += XDR_QUADLEN(nbytes); \
130 } else if (!(p = read_buf(argp, nbytes))) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400131 dprintk("NFSD: xdr error (%s:%d)\n", \
132 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 goto xdr_error; \
134 } \
135} while (0)
136
J. Bruce Fields590b7432013-06-21 17:06:29 -0400137static void next_decode_page(struct nfsd4_compoundargs *argp)
138{
J. Bruce Fields590b7432013-06-21 17:06:29 -0400139 argp->p = page_address(argp->pagelist[0]);
J. Bruce Fields365da4a2013-11-19 17:32:43 -0500140 argp->pagelist++;
J. Bruce Fields590b7432013-06-21 17:06:29 -0400141 if (argp->pagelen < PAGE_SIZE) {
142 argp->end = argp->p + (argp->pagelen>>2);
143 argp->pagelen = 0;
144 } else {
145 argp->end = argp->p + (PAGE_SIZE>>2);
146 argp->pagelen -= PAGE_SIZE;
147 }
148}
149
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500150static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 /* We want more bytes than seem to be available.
153 * Maybe we need a new page, maybe we have just run out
154 */
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500155 unsigned int avail = (char *)argp->end - (char *)argp->p;
Al Viro2ebbc012006-10-19 23:28:58 -0700156 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (avail + argp->pagelen < nbytes)
158 return NULL;
159 if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */
160 return NULL;
161 /* ok, we can do it with the current plus the next page */
162 if (nbytes <= sizeof(argp->tmp))
163 p = argp->tmp;
164 else {
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800165 kfree(argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
167 if (!p)
168 return NULL;
169
170 }
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500171 /*
172 * The following memcpy is safe because read_buf is always
173 * called with nbytes > avail, and the two cases above both
174 * guarantee p points to at least nbytes bytes.
175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 memcpy(p, argp->p, avail);
J. Bruce Fields590b7432013-06-21 17:06:29 -0400177 next_decode_page(argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
179 argp->p += XDR_QUADLEN(nbytes - avail);
180 return p;
181}
182
Andy Adamson60adfc52009-04-03 08:28:50 +0300183static int zero_clientid(clientid_t *clid)
184{
185 return (clid->cl_boot == 0) && (clid->cl_id == 0);
186}
187
Christoph Hellwig2d8498d2013-11-20 00:24:11 -0800188/**
189 * defer_free - mark an allocation as deferred freed
190 * @argp: NFSv4 compound argument structure to be freed with
191 * @release: release callback to free @p, typically kfree()
192 * @p: pointer to be freed
193 *
194 * Marks @p to be freed when processing the compound operation
195 * described in @argp finishes.
196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197static int
198defer_free(struct nfsd4_compoundargs *argp,
199 void (*release)(const void *), void *p)
200{
201 struct tmpbuf *tb;
202
203 tb = kmalloc(sizeof(*tb), GFP_KERNEL);
204 if (!tb)
205 return -ENOMEM;
206 tb->buf = p;
207 tb->release = release;
208 tb->next = argp->to_free;
209 argp->to_free = tb;
210 return 0;
211}
212
Christoph Hellwig2d8498d2013-11-20 00:24:11 -0800213/**
214 * savemem - duplicate a chunk of memory for later processing
215 * @argp: NFSv4 compound argument structure to be freed with
216 * @p: pointer to be duplicated
217 * @nbytes: length to be duplicated
218 *
219 * Returns a pointer to a copy of @nbytes bytes of memory at @p
220 * that are preserved until processing of the NFSv4 compound
221 * operation described by @argp finishes.
222 */
Al Viro2ebbc012006-10-19 23:28:58 -0700223static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (p == argp->tmp) {
Thomas Meyer67114fe2011-11-17 23:43:40 +0100226 p = kmemdup(argp->tmp, nbytes, GFP_KERNEL);
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800227 if (!p)
228 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 } else {
Eric Sesterhenn73dff8b2006-10-03 23:37:14 +0200230 BUG_ON(p != argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 argp->tmpp = NULL;
232 }
233 if (defer_free(argp, kfree, p)) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800234 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return NULL;
236 } else
237 return (char *)p;
238}
239
Al Virob37ad282006-10-19 23:28:59 -0700240static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
242{
243 u32 bmlen;
244 DECODE_HEAD;
245
246 bmval[0] = 0;
247 bmval[1] = 0;
Andy Adamson7e705702009-04-03 08:29:11 +0300248 bmval[2] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 READ_BUF(4);
251 READ32(bmlen);
252 if (bmlen > 1000)
253 goto xdr_error;
254
255 READ_BUF(bmlen << 2);
256 if (bmlen > 0)
257 READ32(bmval[0]);
258 if (bmlen > 1)
259 READ32(bmval[1]);
Andy Adamson7e705702009-04-03 08:29:11 +0300260 if (bmlen > 2)
261 READ32(bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 DECODE_TAIL;
264}
265
Al Virob37ad282006-10-19 23:28:59 -0700266static __be32
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800267nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
David Quigley18032ca2013-05-02 13:19:10 -0400268 struct iattr *iattr, struct nfs4_acl **acl,
269 struct xdr_netobj *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 int expected_len, len = 0;
272 u32 dummy32;
273 char *buf;
274
275 DECODE_HEAD;
276 iattr->ia_valid = 0;
277 if ((status = nfsd4_decode_bitmap(argp, bmval)))
278 return status;
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 READ_BUF(4);
281 READ32(expected_len);
282
283 if (bmval[0] & FATTR4_WORD0_SIZE) {
284 READ_BUF(8);
285 len += 8;
286 READ64(iattr->ia_size);
287 iattr->ia_valid |= ATTR_SIZE;
288 }
289 if (bmval[0] & FATTR4_WORD0_ACL) {
J. Bruce Fields64a817c2013-03-26 14:11:13 -0400290 u32 nace;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800291 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 READ_BUF(4); len += 4;
294 READ32(nace);
295
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800296 if (nace > NFS4_ACL_MAX)
J. Bruce Fields798df332014-01-29 16:39:05 -0500297 return nfserr_fbig;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800298
299 *acl = nfs4_acl_new(nace);
Kinglong Meeeba1c992013-12-09 18:23:46 +0800300 if (*acl == NULL)
301 return nfserr_jukebox;
302
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800303 defer_free(argp, kfree, *acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800305 (*acl)->naces = nace;
306 for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 READ_BUF(16); len += 16;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800308 READ32(ace->type);
309 READ32(ace->flag);
310 READ32(ace->access_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 READ32(dummy32);
312 READ_BUF(dummy32);
313 len += XDR_QUADLEN(dummy32) << 2;
314 READMEM(buf, dummy32);
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800315 ace->whotype = nfs4_acl_get_whotype(buf, dummy32);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500316 status = nfs_ok;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800317 if (ace->whotype != NFS4_ACL_WHO_NAMED)
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -0800318 ;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800319 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
J. Bruce Fields3c726022011-01-04 17:53:52 -0500320 status = nfsd_map_name_to_gid(argp->rqstp,
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -0800321 buf, dummy32, &ace->who_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 else
J. Bruce Fields3c726022011-01-04 17:53:52 -0500323 status = nfsd_map_name_to_uid(argp->rqstp,
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -0800324 buf, dummy32, &ace->who_uid);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500325 if (status)
326 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328 } else
329 *acl = NULL;
330 if (bmval[1] & FATTR4_WORD1_MODE) {
331 READ_BUF(4);
332 len += 4;
333 READ32(iattr->ia_mode);
334 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
335 iattr->ia_valid |= ATTR_MODE;
336 }
337 if (bmval[1] & FATTR4_WORD1_OWNER) {
338 READ_BUF(4);
339 len += 4;
340 READ32(dummy32);
341 READ_BUF(dummy32);
342 len += (XDR_QUADLEN(dummy32) << 2);
343 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100344 if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
345 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 iattr->ia_valid |= ATTR_UID;
347 }
348 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
349 READ_BUF(4);
350 len += 4;
351 READ32(dummy32);
352 READ_BUF(dummy32);
353 len += (XDR_QUADLEN(dummy32) << 2);
354 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100355 if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
356 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 iattr->ia_valid |= ATTR_GID;
358 }
359 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
360 READ_BUF(4);
361 len += 4;
362 READ32(dummy32);
363 switch (dummy32) {
364 case NFS4_SET_TO_CLIENT_TIME:
365 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
366 all 32 bits of 'nseconds'. */
367 READ_BUF(12);
368 len += 12;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -0400369 READ64(iattr->ia_atime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 READ32(iattr->ia_atime.tv_nsec);
371 if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
372 return nfserr_inval;
373 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
374 break;
375 case NFS4_SET_TO_SERVER_TIME:
376 iattr->ia_valid |= ATTR_ATIME;
377 break;
378 default:
379 goto xdr_error;
380 }
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
383 READ_BUF(4);
384 len += 4;
385 READ32(dummy32);
386 switch (dummy32) {
387 case NFS4_SET_TO_CLIENT_TIME:
388 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
389 all 32 bits of 'nseconds'. */
390 READ_BUF(12);
391 len += 12;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -0400392 READ64(iattr->ia_mtime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 READ32(iattr->ia_mtime.tv_nsec);
394 if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
395 return nfserr_inval;
396 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
397 break;
398 case NFS4_SET_TO_SERVER_TIME:
399 iattr->ia_valid |= ATTR_MTIME;
400 break;
401 default:
402 goto xdr_error;
403 }
404 }
David Quigley18032ca2013-05-02 13:19:10 -0400405
406 label->len = 0;
407#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
408 if (bmval[2] & FATTR4_WORD2_SECURITY_LABEL) {
409 READ_BUF(4);
410 len += 4;
411 READ32(dummy32); /* lfs: we don't use it */
412 READ_BUF(4);
413 len += 4;
414 READ32(dummy32); /* pi: we don't use it either */
415 READ_BUF(4);
416 len += 4;
417 READ32(dummy32);
418 READ_BUF(dummy32);
419 if (dummy32 > NFSD4_MAX_SEC_LABEL_LEN)
420 return nfserr_badlabel;
421 len += (XDR_QUADLEN(dummy32) << 2);
422 READMEM(buf, dummy32);
423 label->data = kzalloc(dummy32 + 1, GFP_KERNEL);
424 if (!label->data)
425 return nfserr_jukebox;
J. Bruce Fields3378b7f2013-11-01 10:42:15 -0400426 label->len = dummy32;
David Quigley18032ca2013-05-02 13:19:10 -0400427 defer_free(argp, kfree, label->data);
428 memcpy(label->data, buf, dummy32);
429 }
430#endif
431
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800432 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
433 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
434 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2)
435 READ_BUF(expected_len - len);
436 else if (len != expected_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 goto xdr_error;
438
439 DECODE_TAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Al Virob37ad282006-10-19 23:28:59 -0700442static __be32
Benny Halevye31a1b62008-08-12 20:46:18 +0300443nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
444{
445 DECODE_HEAD;
446
447 READ_BUF(sizeof(stateid_t));
448 READ32(sid->si_generation);
449 COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
450
451 DECODE_TAIL;
452}
453
454static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
456{
457 DECODE_HEAD;
458
459 READ_BUF(4);
460 READ32(access->ac_req_access);
461
462 DECODE_TAIL;
463}
464
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400465static __be32 nfsd4_decode_cb_sec(struct nfsd4_compoundargs *argp, struct nfsd4_cb_sec *cbs)
466{
467 DECODE_HEAD;
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500468 u32 dummy, uid, gid;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400469 char *machine_name;
470 int i;
471 int nr_secflavs;
472
473 /* callback_sec_params4 */
474 READ_BUF(4);
475 READ32(nr_secflavs);
J. Bruce Fields57569a72013-05-17 16:25:32 -0400476 if (nr_secflavs)
477 cbs->flavor = (u32)(-1);
478 else
479 /* Is this legal? Be generous, take it to mean AUTH_NONE: */
480 cbs->flavor = 0;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400481 for (i = 0; i < nr_secflavs; ++i) {
482 READ_BUF(4);
483 READ32(dummy);
484 switch (dummy) {
485 case RPC_AUTH_NULL:
486 /* Nothing to read */
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500487 if (cbs->flavor == (u32)(-1))
488 cbs->flavor = RPC_AUTH_NULL;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400489 break;
490 case RPC_AUTH_UNIX:
491 READ_BUF(8);
492 /* stamp */
493 READ32(dummy);
494
495 /* machine name */
496 READ32(dummy);
497 READ_BUF(dummy);
498 SAVEMEM(machine_name, dummy);
499
500 /* uid, gid */
501 READ_BUF(8);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500502 READ32(uid);
503 READ32(gid);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400504
505 /* more gids */
506 READ_BUF(4);
507 READ32(dummy);
508 READ_BUF(dummy * 4);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500509 if (cbs->flavor == (u32)(-1)) {
Eric W. Biederman03bc6d12013-02-02 06:24:49 -0800510 kuid_t kuid = make_kuid(&init_user_ns, uid);
511 kgid_t kgid = make_kgid(&init_user_ns, gid);
512 if (uid_valid(kuid) && gid_valid(kgid)) {
513 cbs->uid = kuid;
514 cbs->gid = kgid;
515 cbs->flavor = RPC_AUTH_UNIX;
516 } else {
517 dprintk("RPC_AUTH_UNIX with invalid"
518 "uid or gid ignoring!\n");
519 }
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500520 }
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400521 break;
522 case RPC_AUTH_GSS:
523 dprintk("RPC_AUTH_GSS callback secflavor "
524 "not supported!\n");
525 READ_BUF(8);
526 /* gcbp_service */
527 READ32(dummy);
528 /* gcbp_handle_from_server */
529 READ32(dummy);
530 READ_BUF(dummy);
531 p += XDR_QUADLEN(dummy);
532 /* gcbp_handle_from_client */
533 READ_BUF(4);
534 READ32(dummy);
535 READ_BUF(dummy);
536 break;
537 default:
538 dprintk("Illegal callback secflavor\n");
539 return nfserr_inval;
540 }
541 }
542 DECODE_TAIL;
543}
544
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -0400545static __be32 nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs *argp, struct nfsd4_backchannel_ctl *bc)
546{
547 DECODE_HEAD;
548
549 READ_BUF(4);
550 READ32(bc->bc_cb_program);
551 nfsd4_decode_cb_sec(argp, &bc->bc_cb_sec);
552
553 DECODE_TAIL;
554}
555
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400556static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
557{
558 DECODE_HEAD;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400559
560 READ_BUF(NFS4_MAX_SESSIONID_LEN + 8);
561 COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
562 READ32(bcts->dir);
Bryan Schumaker6ce23572011-04-27 15:47:16 -0400563 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
564 * could help us figure out we should be using it. */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400565 DECODE_TAIL;
566}
567
Al Virob37ad282006-10-19 23:28:59 -0700568static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
570{
571 DECODE_HEAD;
572
Benny Halevye31a1b62008-08-12 20:46:18 +0300573 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300575 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 DECODE_TAIL;
578}
579
580
Al Virob37ad282006-10-19 23:28:59 -0700581static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
583{
584 DECODE_HEAD;
585
586 READ_BUF(12);
587 READ64(commit->co_offset);
588 READ32(commit->co_count);
589
590 DECODE_TAIL;
591}
592
Al Virob37ad282006-10-19 23:28:59 -0700593static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
595{
596 DECODE_HEAD;
597
598 READ_BUF(4);
599 READ32(create->cr_type);
600 switch (create->cr_type) {
601 case NF4LNK:
602 READ_BUF(4);
603 READ32(create->cr_linklen);
604 READ_BUF(create->cr_linklen);
605 SAVEMEM(create->cr_linkname, create->cr_linklen);
606 break;
607 case NF4BLK:
608 case NF4CHR:
609 READ_BUF(8);
610 READ32(create->cr_specdata1);
611 READ32(create->cr_specdata2);
612 break;
613 case NF4SOCK:
614 case NF4FIFO:
615 case NF4DIR:
616 default:
617 break;
618 }
619
620 READ_BUF(4);
621 READ32(create->cr_namelen);
622 READ_BUF(create->cr_namelen);
623 SAVEMEM(create->cr_name, create->cr_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500624 if ((status = check_filename(create->cr_name, create->cr_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return status;
626
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800627 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
David Quigley18032ca2013-05-02 13:19:10 -0400628 &create->cr_acl, &create->cr_label);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300629 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 goto out;
631
632 DECODE_TAIL;
633}
634
Al Virob37ad282006-10-19 23:28:59 -0700635static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
637{
Benny Halevye31a1b62008-08-12 20:46:18 +0300638 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Al Virob37ad282006-10-19 23:28:59 -0700641static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
643{
644 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
645}
646
Al Virob37ad282006-10-19 23:28:59 -0700647static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
649{
650 DECODE_HEAD;
651
652 READ_BUF(4);
653 READ32(link->li_namelen);
654 READ_BUF(link->li_namelen);
655 SAVEMEM(link->li_name, link->li_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500656 if ((status = check_filename(link->li_name, link->li_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return status;
658
659 DECODE_TAIL;
660}
661
Al Virob37ad282006-10-19 23:28:59 -0700662static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
664{
665 DECODE_HEAD;
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 /*
668 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
669 */
670 READ_BUF(28);
671 READ32(lock->lk_type);
672 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
673 goto xdr_error;
674 READ32(lock->lk_reclaim);
675 READ64(lock->lk_offset);
676 READ64(lock->lk_length);
677 READ32(lock->lk_is_new);
678
679 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300680 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300682 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
683 if (status)
684 return status;
685 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 READ32(lock->lk_new_lock_seqid);
687 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
688 READ32(lock->lk_new_owner.len);
689 READ_BUF(lock->lk_new_owner.len);
690 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
691 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300692 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
693 if (status)
694 return status;
695 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 READ32(lock->lk_old_lock_seqid);
697 }
698
699 DECODE_TAIL;
700}
701
Al Virob37ad282006-10-19 23:28:59 -0700702static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
704{
705 DECODE_HEAD;
706
707 READ_BUF(32);
708 READ32(lockt->lt_type);
709 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
710 goto xdr_error;
711 READ64(lockt->lt_offset);
712 READ64(lockt->lt_length);
713 COPYMEM(&lockt->lt_clientid, 8);
714 READ32(lockt->lt_owner.len);
715 READ_BUF(lockt->lt_owner.len);
716 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
717
718 DECODE_TAIL;
719}
720
Al Virob37ad282006-10-19 23:28:59 -0700721static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
723{
724 DECODE_HEAD;
725
Benny Halevye31a1b62008-08-12 20:46:18 +0300726 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 READ32(locku->lu_type);
728 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
729 goto xdr_error;
730 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300731 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
732 if (status)
733 return status;
734 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 READ64(locku->lu_offset);
736 READ64(locku->lu_length);
737
738 DECODE_TAIL;
739}
740
Al Virob37ad282006-10-19 23:28:59 -0700741static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
743{
744 DECODE_HEAD;
745
746 READ_BUF(4);
747 READ32(lookup->lo_len);
748 READ_BUF(lookup->lo_len);
749 SAVEMEM(lookup->lo_name, lookup->lo_len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500750 if ((status = check_filename(lookup->lo_name, lookup->lo_len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return status;
752
753 DECODE_TAIL;
754}
755
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200756static __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 -0400757{
758 __be32 *p;
759 u32 w;
760
761 READ_BUF(4);
762 READ32(w);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200763 *share_access = w & NFS4_SHARE_ACCESS_MASK;
764 *deleg_want = w & NFS4_SHARE_WANT_MASK;
765 if (deleg_when)
766 *deleg_when = w & NFS4_SHARE_WHEN_MASK;
767
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400768 switch (w & NFS4_SHARE_ACCESS_MASK) {
769 case NFS4_SHARE_ACCESS_READ:
770 case NFS4_SHARE_ACCESS_WRITE:
771 case NFS4_SHARE_ACCESS_BOTH:
772 break;
773 default:
774 return nfserr_bad_xdr;
775 }
Benny Halevyfc0d14f2011-10-27 20:43:01 +0200776 w &= ~NFS4_SHARE_ACCESS_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400777 if (!w)
778 return nfs_ok;
779 if (!argp->minorversion)
780 return nfserr_bad_xdr;
781 switch (w & NFS4_SHARE_WANT_MASK) {
782 case NFS4_SHARE_WANT_NO_PREFERENCE:
783 case NFS4_SHARE_WANT_READ_DELEG:
784 case NFS4_SHARE_WANT_WRITE_DELEG:
785 case NFS4_SHARE_WANT_ANY_DELEG:
786 case NFS4_SHARE_WANT_NO_DELEG:
787 case NFS4_SHARE_WANT_CANCEL:
788 break;
789 default:
790 return nfserr_bad_xdr;
791 }
Benny Halevy92bac8c2011-10-19 19:13:29 -0700792 w &= ~NFS4_SHARE_WANT_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400793 if (!w)
794 return nfs_ok;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200795
796 if (!deleg_when) /* open_downgrade */
797 return nfserr_inval;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400798 switch (w) {
799 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL:
800 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED:
Benny Halevyc668fc62011-10-19 19:13:13 -0700801 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL |
802 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED):
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400803 return nfs_ok;
804 }
805xdr_error:
806 return nfserr_bad_xdr;
807}
808
809static __be32 nfsd4_decode_share_deny(struct nfsd4_compoundargs *argp, u32 *x)
810{
811 __be32 *p;
812
813 READ_BUF(4);
814 READ32(*x);
815 /* Note: unlinke access bits, deny bits may be zero. */
Dan Carpenter01cd4af2011-10-17 10:41:17 +0300816 if (*x & ~NFS4_SHARE_DENY_BOTH)
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400817 return nfserr_bad_xdr;
818 return nfs_ok;
819xdr_error:
820 return nfserr_bad_xdr;
821}
822
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400823static __be32 nfsd4_decode_opaque(struct nfsd4_compoundargs *argp, struct xdr_netobj *o)
824{
825 __be32 *p;
826
827 READ_BUF(4);
828 READ32(o->len);
829
830 if (o->len == 0 || o->len > NFS4_OPAQUE_LIMIT)
831 return nfserr_bad_xdr;
832
833 READ_BUF(o->len);
834 SAVEMEM(o->data, o->len);
835 return nfs_ok;
836xdr_error:
837 return nfserr_bad_xdr;
838}
839
Al Virob37ad282006-10-19 23:28:59 -0700840static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
842{
843 DECODE_HEAD;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200844 u32 dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 memset(open->op_bmval, 0, sizeof(open->op_bmval));
847 open->op_iattr.ia_valid = 0;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400848 open->op_openowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800850 open->op_xdr_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /* seqid, share_access, share_deny, clientid, ownerlen */
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400852 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 READ32(open->op_seqid);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200854 /* decode, yet ignore deleg_when until supported */
855 status = nfsd4_decode_share_access(argp, &open->op_share_access,
856 &open->op_deleg_want, &dummy);
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400857 if (status)
858 goto xdr_error;
859 status = nfsd4_decode_share_deny(argp, &open->op_share_deny);
860 if (status)
861 goto xdr_error;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400862 READ_BUF(sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 COPYMEM(&open->op_clientid, sizeof(clientid_t));
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400864 status = nfsd4_decode_opaque(argp, &open->op_owner);
865 if (status)
866 goto xdr_error;
867 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 READ32(open->op_create);
869 switch (open->op_create) {
870 case NFS4_OPEN_NOCREATE:
871 break;
872 case NFS4_OPEN_CREATE:
873 READ_BUF(4);
874 READ32(open->op_createmode);
875 switch (open->op_createmode) {
876 case NFS4_CREATE_UNCHECKED:
877 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300878 status = nfsd4_decode_fattr(argp, open->op_bmval,
David Quigley18032ca2013-05-02 13:19:10 -0400879 &open->op_iattr, &open->op_acl, &open->op_label);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300880 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 goto out;
882 break;
883 case NFS4_CREATE_EXCLUSIVE:
Chuck Leverab4684d2012-03-02 17:13:50 -0500884 READ_BUF(NFS4_VERIFIER_SIZE);
885 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300887 case NFS4_CREATE_EXCLUSIVE4_1:
888 if (argp->minorversion < 1)
889 goto xdr_error;
Chuck Leverab4684d2012-03-02 17:13:50 -0500890 READ_BUF(NFS4_VERIFIER_SIZE);
891 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300892 status = nfsd4_decode_fattr(argp, open->op_bmval,
David Quigley18032ca2013-05-02 13:19:10 -0400893 &open->op_iattr, &open->op_acl, &open->op_label);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300894 if (status)
895 goto out;
896 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 default:
898 goto xdr_error;
899 }
900 break;
901 default:
902 goto xdr_error;
903 }
904
905 /* open_claim */
906 READ_BUF(4);
907 READ32(open->op_claim_type);
908 switch (open->op_claim_type) {
909 case NFS4_OPEN_CLAIM_NULL:
910 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
911 READ_BUF(4);
912 READ32(open->op_fname.len);
913 READ_BUF(open->op_fname.len);
914 SAVEMEM(open->op_fname.data, open->op_fname.len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500915 if ((status = check_filename(open->op_fname.data, open->op_fname.len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return status;
917 break;
918 case NFS4_OPEN_CLAIM_PREVIOUS:
919 READ_BUF(4);
920 READ32(open->op_delegate_type);
921 break;
922 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300923 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
924 if (status)
925 return status;
926 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 READ32(open->op_fname.len);
928 READ_BUF(open->op_fname.len);
929 SAVEMEM(open->op_fname.data, open->op_fname.len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500930 if ((status = check_filename(open->op_fname.data, open->op_fname.len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return status;
932 break;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400933 case NFS4_OPEN_CLAIM_FH:
934 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
935 if (argp->minorversion < 1)
936 goto xdr_error;
937 /* void */
938 break;
939 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
940 if (argp->minorversion < 1)
941 goto xdr_error;
942 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
943 if (status)
944 return status;
945 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 default:
947 goto xdr_error;
948 }
949
950 DECODE_TAIL;
951}
952
Al Virob37ad282006-10-19 23:28:59 -0700953static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
955{
956 DECODE_HEAD;
Anna Schumakere1a90eb2013-10-30 10:00:20 -0400957
958 if (argp->minorversion >= 1)
959 return nfserr_notsupp;
960
Benny Halevye31a1b62008-08-12 20:46:18 +0300961 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
962 if (status)
963 return status;
964 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 READ32(open_conf->oc_seqid);
Anna Schumakere1a90eb2013-10-30 10:00:20 -0400966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 DECODE_TAIL;
968}
969
Al Virob37ad282006-10-19 23:28:59 -0700970static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
972{
973 DECODE_HEAD;
974
Benny Halevye31a1b62008-08-12 20:46:18 +0300975 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
976 if (status)
977 return status;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400978 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 READ32(open_down->od_seqid);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200980 status = nfsd4_decode_share_access(argp, &open_down->od_share_access,
981 &open_down->od_deleg_want, NULL);
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400982 if (status)
983 return status;
984 status = nfsd4_decode_share_deny(argp, &open_down->od_share_deny);
985 if (status)
986 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 DECODE_TAIL;
988}
989
Al Virob37ad282006-10-19 23:28:59 -0700990static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
992{
993 DECODE_HEAD;
994
995 READ_BUF(4);
996 READ32(putfh->pf_fhlen);
997 if (putfh->pf_fhlen > NFS4_FHSIZE)
998 goto xdr_error;
999 READ_BUF(putfh->pf_fhlen);
1000 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
1001
1002 DECODE_TAIL;
1003}
1004
Al Virob37ad282006-10-19 23:28:59 -07001005static __be32
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001006nfsd4_decode_putpubfh(struct nfsd4_compoundargs *argp, void *p)
1007{
1008 if (argp->minorversion == 0)
1009 return nfs_ok;
1010 return nfserr_notsupp;
1011}
1012
1013static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
1015{
1016 DECODE_HEAD;
1017
Benny Halevye31a1b62008-08-12 20:46:18 +03001018 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
1019 if (status)
1020 return status;
1021 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 READ64(read->rd_offset);
1023 READ32(read->rd_length);
1024
1025 DECODE_TAIL;
1026}
1027
Al Virob37ad282006-10-19 23:28:59 -07001028static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
1030{
1031 DECODE_HEAD;
1032
1033 READ_BUF(24);
1034 READ64(readdir->rd_cookie);
1035 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
J. Bruce Fields3b299702014-03-20 21:20:26 -04001036 READ32(readdir->rd_dircount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 READ32(readdir->rd_maxcount);
1038 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
1039 goto out;
1040
1041 DECODE_TAIL;
1042}
1043
Al Virob37ad282006-10-19 23:28:59 -07001044static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
1046{
1047 DECODE_HEAD;
1048
1049 READ_BUF(4);
1050 READ32(remove->rm_namelen);
1051 READ_BUF(remove->rm_namelen);
1052 SAVEMEM(remove->rm_name, remove->rm_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001053 if ((status = check_filename(remove->rm_name, remove->rm_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return status;
1055
1056 DECODE_TAIL;
1057}
1058
Al Virob37ad282006-10-19 23:28:59 -07001059static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
1061{
1062 DECODE_HEAD;
1063
1064 READ_BUF(4);
1065 READ32(rename->rn_snamelen);
1066 READ_BUF(rename->rn_snamelen + 4);
1067 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
1068 READ32(rename->rn_tnamelen);
1069 READ_BUF(rename->rn_tnamelen);
1070 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001071 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 return status;
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001073 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return status;
1075
1076 DECODE_TAIL;
1077}
1078
Al Virob37ad282006-10-19 23:28:59 -07001079static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
1081{
1082 DECODE_HEAD;
1083
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001084 if (argp->minorversion >= 1)
1085 return nfserr_notsupp;
1086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 READ_BUF(sizeof(clientid_t));
1088 COPYMEM(clientid, sizeof(clientid_t));
1089
1090 DECODE_TAIL;
1091}
1092
Al Virob37ad282006-10-19 23:28:59 -07001093static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -07001094nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
1095 struct nfsd4_secinfo *secinfo)
1096{
1097 DECODE_HEAD;
1098
1099 READ_BUF(4);
1100 READ32(secinfo->si_namelen);
1101 READ_BUF(secinfo->si_namelen);
1102 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001103 status = check_filename(secinfo->si_name, secinfo->si_namelen);
Andy Adamsondcb488a32007-07-17 04:04:51 -07001104 if (status)
1105 return status;
1106 DECODE_TAIL;
1107}
1108
1109static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001110nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
1111 struct nfsd4_secinfo_no_name *sin)
1112{
1113 DECODE_HEAD;
1114
1115 READ_BUF(4);
1116 READ32(sin->sin_style);
1117 DECODE_TAIL;
1118}
1119
1120static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
1122{
Benny Halevye31a1b62008-08-12 20:46:18 +03001123 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Benny Halevye31a1b62008-08-12 20:46:18 +03001125 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
1126 if (status)
1127 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +08001128 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
David Quigley18032ca2013-05-02 13:19:10 -04001129 &setattr->sa_acl, &setattr->sa_label);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
Al Virob37ad282006-10-19 23:28:59 -07001132static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
1134{
1135 DECODE_HEAD;
1136
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001137 if (argp->minorversion >= 1)
1138 return nfserr_notsupp;
1139
Chuck Leverab4684d2012-03-02 17:13:50 -05001140 READ_BUF(NFS4_VERIFIER_SIZE);
1141 COPYMEM(setclientid->se_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001143 status = nfsd4_decode_opaque(argp, &setclientid->se_name);
1144 if (status)
1145 return nfserr_bad_xdr;
1146 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 READ32(setclientid->se_callback_prog);
1148 READ32(setclientid->se_callback_netid_len);
1149
1150 READ_BUF(setclientid->se_callback_netid_len + 4);
1151 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
1152 READ32(setclientid->se_callback_addr_len);
1153
1154 READ_BUF(setclientid->se_callback_addr_len + 4);
1155 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
1156 READ32(setclientid->se_callback_ident);
1157
1158 DECODE_TAIL;
1159}
1160
Al Virob37ad282006-10-19 23:28:59 -07001161static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
1163{
1164 DECODE_HEAD;
1165
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001166 if (argp->minorversion >= 1)
1167 return nfserr_notsupp;
1168
Chuck Leverab4684d2012-03-02 17:13:50 -05001169 READ_BUF(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 COPYMEM(&scd_c->sc_clientid, 8);
Chuck Leverab4684d2012-03-02 17:13:50 -05001171 COPYMEM(&scd_c->sc_confirm, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 DECODE_TAIL;
1174}
1175
1176/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -07001177static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
1179{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 DECODE_HEAD;
1181
1182 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
1183 goto out;
1184
1185 /* For convenience's sake, we compare raw xdr'd attributes in
J. Bruce Fieldse5f95702012-11-30 17:24:18 -05001186 * nfsd4_proc_verify */
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 READ_BUF(4);
1189 READ32(verify->ve_attrlen);
1190 READ_BUF(verify->ve_attrlen);
1191 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
1192
1193 DECODE_TAIL;
1194}
1195
Al Virob37ad282006-10-19 23:28:59 -07001196static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
1198{
1199 int avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 int len;
1201 DECODE_HEAD;
1202
Benny Halevye31a1b62008-08-12 20:46:18 +03001203 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
1204 if (status)
1205 return status;
1206 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 READ64(write->wr_offset);
1208 READ32(write->wr_stable_how);
1209 if (write->wr_stable_how > 2)
1210 goto xdr_error;
1211 READ32(write->wr_buflen);
1212
1213 /* Sorry .. no magic macros for this.. *
1214 * READ_BUF(write->wr_buflen);
1215 * SAVEMEM(write->wr_buf, write->wr_buflen);
1216 */
1217 avail = (char*)argp->end - (char*)argp->p;
1218 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -04001219 dprintk("NFSD: xdr error (%s:%d)\n",
1220 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 goto xdr_error;
1222 }
J. Bruce Fields70cc7f72012-11-16 14:16:46 -05001223 write->wr_head.iov_base = p;
1224 write->wr_head.iov_len = avail;
J. Bruce Fields70cc7f72012-11-16 14:16:46 -05001225 write->wr_pagelist = argp->pagelist;
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001226
1227 len = XDR_QUADLEN(write->wr_buflen) << 2;
1228 if (len >= avail) {
1229 int pages;
1230
1231 len -= avail;
1232
1233 pages = len >> PAGE_SHIFT;
1234 argp->pagelist += pages;
1235 argp->pagelen -= pages * PAGE_SIZE;
1236 len -= pages * PAGE_SIZE;
1237
1238 argp->p = (__be32 *)page_address(argp->pagelist[0]);
J. Bruce Fields365da4a2013-11-19 17:32:43 -05001239 argp->pagelist++;
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001240 argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001242 argp->p += XDR_QUADLEN(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 DECODE_TAIL;
1245}
1246
Al Virob37ad282006-10-19 23:28:59 -07001247static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1249{
1250 DECODE_HEAD;
1251
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001252 if (argp->minorversion >= 1)
1253 return nfserr_notsupp;
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 READ_BUF(12);
1256 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1257 READ32(rlockowner->rl_owner.len);
1258 READ_BUF(rlockowner->rl_owner.len);
1259 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1260
Andy Adamson60adfc52009-04-03 08:28:50 +03001261 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1262 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 DECODE_TAIL;
1264}
1265
Al Virob37ad282006-10-19 23:28:59 -07001266static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001267nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001268 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001269{
Mi Jinlong5afa0402010-11-09 09:39:23 +08001270 int dummy, tmp;
Andy Adamson0733d212009-04-03 08:28:01 +03001271 DECODE_HEAD;
1272
1273 READ_BUF(NFS4_VERIFIER_SIZE);
1274 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1275
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001276 status = nfsd4_decode_opaque(argp, &exid->clname);
1277 if (status)
1278 return nfserr_bad_xdr;
Andy Adamson0733d212009-04-03 08:28:01 +03001279
1280 READ_BUF(4);
1281 READ32(exid->flags);
1282
1283 /* Ignore state_protect4_a */
1284 READ_BUF(4);
1285 READ32(exid->spa_how);
1286 switch (exid->spa_how) {
1287 case SP4_NONE:
1288 break;
1289 case SP4_MACH_CRED:
1290 /* spo_must_enforce */
1291 READ_BUF(4);
1292 READ32(dummy);
1293 READ_BUF(dummy * 4);
1294 p += dummy;
1295
1296 /* spo_must_allow */
1297 READ_BUF(4);
1298 READ32(dummy);
1299 READ_BUF(dummy * 4);
1300 p += dummy;
1301 break;
1302 case SP4_SSV:
1303 /* ssp_ops */
1304 READ_BUF(4);
1305 READ32(dummy);
1306 READ_BUF(dummy * 4);
1307 p += dummy;
1308
1309 READ_BUF(4);
1310 READ32(dummy);
1311 READ_BUF(dummy * 4);
1312 p += dummy;
1313
1314 /* ssp_hash_algs<> */
1315 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001316 READ32(tmp);
1317 while (tmp--) {
1318 READ_BUF(4);
1319 READ32(dummy);
1320 READ_BUF(dummy);
1321 p += XDR_QUADLEN(dummy);
1322 }
Andy Adamson0733d212009-04-03 08:28:01 +03001323
1324 /* ssp_encr_algs<> */
1325 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001326 READ32(tmp);
1327 while (tmp--) {
1328 READ_BUF(4);
1329 READ32(dummy);
1330 READ_BUF(dummy);
1331 p += XDR_QUADLEN(dummy);
1332 }
Andy Adamson0733d212009-04-03 08:28:01 +03001333
1334 /* ssp_window and ssp_num_gss_handles */
1335 READ_BUF(8);
1336 READ32(dummy);
1337 READ32(dummy);
1338 break;
1339 default:
1340 goto xdr_error;
1341 }
1342
1343 /* Ignore Implementation ID */
1344 READ_BUF(4); /* nfs_impl_id4 array length */
1345 READ32(dummy);
1346
1347 if (dummy > 1)
1348 goto xdr_error;
1349
1350 if (dummy == 1) {
1351 /* nii_domain */
1352 READ_BUF(4);
1353 READ32(dummy);
1354 READ_BUF(dummy);
1355 p += XDR_QUADLEN(dummy);
1356
1357 /* nii_name */
1358 READ_BUF(4);
1359 READ32(dummy);
1360 READ_BUF(dummy);
1361 p += XDR_QUADLEN(dummy);
1362
1363 /* nii_date */
1364 READ_BUF(12);
1365 p += 3;
1366 }
1367 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001368}
1369
1370static __be32
1371nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1372 struct nfsd4_create_session *sess)
1373{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001374 DECODE_HEAD;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001375 u32 dummy;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001376
1377 READ_BUF(16);
1378 COPYMEM(&sess->clientid, 8);
1379 READ32(sess->seqid);
1380 READ32(sess->flags);
1381
1382 /* Fore channel attrs */
1383 READ_BUF(28);
1384 READ32(dummy); /* headerpadsz is always 0 */
1385 READ32(sess->fore_channel.maxreq_sz);
1386 READ32(sess->fore_channel.maxresp_sz);
1387 READ32(sess->fore_channel.maxresp_cached);
1388 READ32(sess->fore_channel.maxops);
1389 READ32(sess->fore_channel.maxreqs);
1390 READ32(sess->fore_channel.nr_rdma_attrs);
1391 if (sess->fore_channel.nr_rdma_attrs == 1) {
1392 READ_BUF(4);
1393 READ32(sess->fore_channel.rdma_attrs);
1394 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1395 dprintk("Too many fore channel attr bitmaps!\n");
1396 goto xdr_error;
1397 }
1398
1399 /* Back channel attrs */
1400 READ_BUF(28);
1401 READ32(dummy); /* headerpadsz is always 0 */
1402 READ32(sess->back_channel.maxreq_sz);
1403 READ32(sess->back_channel.maxresp_sz);
1404 READ32(sess->back_channel.maxresp_cached);
1405 READ32(sess->back_channel.maxops);
1406 READ32(sess->back_channel.maxreqs);
1407 READ32(sess->back_channel.nr_rdma_attrs);
1408 if (sess->back_channel.nr_rdma_attrs == 1) {
1409 READ_BUF(4);
1410 READ32(sess->back_channel.rdma_attrs);
1411 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1412 dprintk("Too many back channel attr bitmaps!\n");
1413 goto xdr_error;
1414 }
1415
J. Bruce Fieldsacb28872012-03-27 14:50:26 -04001416 READ_BUF(4);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001417 READ32(sess->callback_prog);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -04001418 nfsd4_decode_cb_sec(argp, &sess->cb_sec);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001419 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001420}
1421
1422static __be32
1423nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1424 struct nfsd4_destroy_session *destroy_session)
1425{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001426 DECODE_HEAD;
1427 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1428 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1429
1430 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001431}
1432
1433static __be32
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001434nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp,
1435 struct nfsd4_free_stateid *free_stateid)
1436{
1437 DECODE_HEAD;
1438
1439 READ_BUF(sizeof(stateid_t));
1440 READ32(free_stateid->fr_stateid.si_generation);
1441 COPYMEM(&free_stateid->fr_stateid.si_opaque, sizeof(stateid_opaque_t));
1442
1443 DECODE_TAIL;
1444}
1445
1446static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001447nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1448 struct nfsd4_sequence *seq)
1449{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001450 DECODE_HEAD;
1451
1452 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1453 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1454 READ32(seq->seqid);
1455 READ32(seq->slotid);
1456 READ32(seq->maxslots);
1457 READ32(seq->cachethis);
1458
1459 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001460}
1461
Bryan Schumaker17456802011-07-13 10:50:48 -04001462static __be32
1463nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid)
1464{
Bryan Schumaker17456802011-07-13 10:50:48 -04001465 int i;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001466 __be32 *p, status;
1467 struct nfsd4_test_stateid_id *stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04001468
1469 READ_BUF(4);
1470 test_stateid->ts_num_ids = ntohl(*p++);
1471
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001472 INIT_LIST_HEAD(&test_stateid->ts_stateid_list);
Bryan Schumaker17456802011-07-13 10:50:48 -04001473
1474 for (i = 0; i < test_stateid->ts_num_ids; i++) {
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001475 stateid = kmalloc(sizeof(struct nfsd4_test_stateid_id), GFP_KERNEL);
1476 if (!stateid) {
Al Viroafcf6792012-04-13 00:15:37 -04001477 status = nfserrno(-ENOMEM);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001478 goto out;
1479 }
1480
1481 defer_free(argp, kfree, stateid);
1482 INIT_LIST_HEAD(&stateid->ts_id_list);
1483 list_add_tail(&stateid->ts_id_list, &test_stateid->ts_stateid_list);
1484
1485 status = nfsd4_decode_stateid(argp, &stateid->ts_id_stateid);
Bryan Schumaker17456802011-07-13 10:50:48 -04001486 if (status)
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001487 goto out;
Bryan Schumaker17456802011-07-13 10:50:48 -04001488 }
1489
1490 status = 0;
1491out:
1492 return status;
1493xdr_error:
1494 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__, __LINE__);
1495 status = nfserr_bad_xdr;
1496 goto out;
1497}
1498
Mi Jinlong345c2842011-10-20 17:51:39 +08001499static __be32 nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs *argp, struct nfsd4_destroy_clientid *dc)
1500{
1501 DECODE_HEAD;
1502
1503 READ_BUF(8);
1504 COPYMEM(&dc->clientid, 8);
1505
1506 DECODE_TAIL;
1507}
1508
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001509static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1510{
1511 DECODE_HEAD;
1512
1513 READ_BUF(4);
1514 READ32(rc->rca_one_fs);
1515
1516 DECODE_TAIL;
1517}
1518
Andy Adamson2db134e2009-04-03 08:27:55 +03001519static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001520nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1521{
1522 return nfs_ok;
1523}
1524
Benny Halevy3c375c62008-07-02 11:14:01 +03001525static __be32
1526nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1527{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001528 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001529}
1530
Benny Halevy347e0ad2008-07-02 11:13:41 +03001531typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1532
1533static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001534 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1535 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1536 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1537 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1538 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1539 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1540 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1541 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1542 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1543 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1544 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1545 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1546 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1547 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1548 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1549 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1550 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1551 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1552 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1553 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001554 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_putpubfh,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001555 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1556 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1557 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1558 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1559 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1560 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1561 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1562 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1563 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1564 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1565 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1566 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1567 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1568 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1569 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1570 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Andy Adamson2db134e2009-04-03 08:27:55 +03001571
1572 /* new operations for NFSv4.1 */
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04001573 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_backchannel_ctl,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001574 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001575 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1576 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1577 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001578 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001579 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1580 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1581 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1582 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1583 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1584 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001585 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001586 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1587 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
Bryan Schumaker17456802011-07-13 10:50:48 -04001588 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001589 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
Mi Jinlong345c2842011-10-20 17:51:39 +08001590 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_destroy_clientid,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001591 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Andy Adamson2db134e2009-04-03 08:27:55 +03001592};
1593
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001594static inline bool
1595nfsd4_opnum_in_range(struct nfsd4_compoundargs *argp, struct nfsd4_op *op)
1596{
Anna Schumaker8217d142013-10-30 13:38:13 -04001597 if (op->opnum < FIRST_NFS4_OP)
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001598 return false;
Anna Schumaker8217d142013-10-30 13:38:13 -04001599 else if (argp->minorversion == 0 && op->opnum > LAST_NFS40_OP)
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001600 return false;
Anna Schumaker8217d142013-10-30 13:38:13 -04001601 else if (argp->minorversion == 1 && op->opnum > LAST_NFS41_OP)
1602 return false;
1603 else if (argp->minorversion == 2 && op->opnum > LAST_NFS42_OP)
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001604 return false;
1605 return true;
1606}
Benny Halevyf2feb962008-07-02 11:14:22 +03001607
Benny Halevy347e0ad2008-07-02 11:13:41 +03001608static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1610{
1611 DECODE_HEAD;
1612 struct nfsd4_op *op;
J. Bruce Fields10910062011-01-24 12:11:02 -05001613 bool cachethis = false;
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04001614 int auth_slack= argp->rqstp->rq_auth_slack;
1615 int max_reply = auth_slack + 8; /* opcnt, status */
J. Bruce Fieldsb0e35fd2014-02-04 10:36:59 -05001616 int readcount = 0;
1617 int readbytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 int i;
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 READ_BUF(4);
1621 READ32(argp->taglen);
1622 READ_BUF(argp->taglen + 8);
1623 SAVEMEM(argp->tag, argp->taglen);
1624 READ32(argp->minorversion);
1625 READ32(argp->opcnt);
J. Bruce Fields4f0cefb2014-03-11 15:39:13 -04001626 max_reply += 4 + (XDR_QUADLEN(argp->taglen) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 if (argp->taglen > NFSD4_MAX_TAGLEN)
1629 goto xdr_error;
1630 if (argp->opcnt > 100)
1631 goto xdr_error;
1632
Tobias Klausere8c96f82006-03-24 03:15:34 -08001633 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1635 if (!argp->ops) {
1636 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001637 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 goto xdr_error;
1639 }
1640 }
1641
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001642 if (argp->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
Benny Halevy30cff1f2008-07-02 11:13:18 +03001643 argp->opcnt = 0;
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 for (i = 0; i < argp->opcnt; i++) {
1646 op = &argp->ops[i];
1647 op->replay = NULL;
1648
J. Bruce Fields8a61b182012-11-16 22:28:38 -05001649 READ_BUF(4);
1650 READ32(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001652 if (nfsd4_opnum_in_range(argp, op))
1653 op->status = nfsd4_dec_ops[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001654 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 op->opnum = OP_ILLEGAL;
1656 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001658 /*
1659 * We'll try to cache the result in the DRC if any one
1660 * op in the compound wants to be cached:
1661 */
1662 cachethis |= nfsd4_cache_this_op(op);
J. Bruce Fields6ff40de2013-11-05 15:07:16 -05001663
J. Bruce Fieldsb0e35fd2014-02-04 10:36:59 -05001664 if (op->opnum == OP_READ) {
1665 readcount++;
1666 readbytes += nfsd4_max_reply(argp->rqstp, op);
1667 } else
1668 max_reply += nfsd4_max_reply(argp->rqstp, op);
J. Bruce Fieldse372ba62014-05-19 12:27:11 -04001669
1670 if (op->status) {
1671 argp->opcnt = i+1;
1672 break;
1673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001675 /* Sessions make the DRC unnecessary: */
1676 if (argp->minorversion)
1677 cachethis = false;
J. Bruce Fieldsb0e35fd2014-02-04 10:36:59 -05001678 svc_reserve(argp->rqstp, max_reply + readbytes);
J. Bruce Fields10910062011-01-24 12:11:02 -05001679 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -04001681 if (readcount > 1 || max_reply > PAGE_SIZE - auth_slack)
J. Bruce Fieldsb0e35fd2014-02-04 10:36:59 -05001682 argp->rqstp->rq_splice_ok = false;
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 DECODE_TAIL;
1685}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001687static __be32 *encode_change(__be32 *p, struct kstat *stat, struct inode *inode)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001688{
1689 if (IS_I_VERSION(inode)) {
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001690 p = xdr_encode_hyper(p, inode->i_version);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001691 } else {
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001692 *p++ = cpu_to_be32(stat->ctime.tv_sec);
1693 *p++ = cpu_to_be32(stat->ctime.tv_nsec);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001694 }
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001695 return p;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001696}
1697
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001698static __be32 *encode_cinfo(__be32 *p, struct nfsd4_change_info *c)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001699{
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001700 *p++ = cpu_to_be32(c->atomic);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001701 if (c->change_supported) {
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001702 p = xdr_encode_hyper(p, c->before_change);
1703 p = xdr_encode_hyper(p, c->after_change);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001704 } else {
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001705 *p++ = cpu_to_be32(c->before_ctime_sec);
1706 *p++ = cpu_to_be32(c->before_ctime_nsec);
1707 *p++ = cpu_to_be32(c->after_ctime_sec);
1708 *p++ = cpu_to_be32(c->after_ctime_nsec);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001709 }
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04001710 return p;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001711}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001713/* Encode as an array of strings the string given with components
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001714 * separated @sep, escaped with esc_enter and esc_exit.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001715 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001716static __be32 nfsd4_encode_components_esc(struct xdr_stream *xdr, char sep,
1717 char *components, char esc_enter,
1718 char esc_exit)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001719{
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001720 __be32 *p;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04001721 __be32 pathlen;
1722 int pathlen_offset;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001723 int strlen, count=0;
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001724 char *str, *end, *next;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001725
1726 dprintk("nfsd4_encode_components(%s)\n", components);
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04001727
1728 pathlen_offset = xdr->buf->len;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001729 p = xdr_reserve_space(xdr, 4);
1730 if (!p)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001731 return nfserr_resource;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04001732 p++; /* We will fill this in with @count later */
1733
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001734 end = str = components;
1735 while (*end) {
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001736 bool found_esc = false;
1737
1738 /* try to parse as esc_start, ..., esc_end, sep */
1739 if (*str == esc_enter) {
1740 for (; *end && (*end != esc_exit); end++)
1741 /* find esc_exit or end of string */;
1742 next = end + 1;
1743 if (*end && (!*next || *next == sep)) {
1744 str++;
1745 found_esc = true;
1746 }
1747 }
1748
1749 if (!found_esc)
1750 for (; *end && (*end != sep); end++)
1751 /* find sep or end of string */;
1752
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001753 strlen = end - str;
1754 if (strlen) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001755 p = xdr_reserve_space(xdr, strlen + 4);
1756 if (!p)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001757 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04001758 p = xdr_encode_opaque(p, str, strlen);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001759 count++;
1760 }
1761 else
1762 end++;
1763 str = end;
1764 }
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04001765 pathlen = htonl(xdr->buf->len - pathlen_offset);
1766 write_bytes_to_xdr_buf(xdr->buf, pathlen_offset, &pathlen, 4);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001767 return 0;
1768}
1769
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001770/* Encode as an array of strings the string given with components
1771 * separated @sep.
1772 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001773static __be32 nfsd4_encode_components(struct xdr_stream *xdr, char sep,
1774 char *components)
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001775{
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001776 return nfsd4_encode_components_esc(xdr, sep, components, 0, 0);
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001777}
1778
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001779/*
1780 * encode a location element of a fs_locations structure
1781 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001782static __be32 nfsd4_encode_fs_location4(struct xdr_stream *xdr,
1783 struct nfsd4_fs_location *location)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001784{
Al Virob37ad282006-10-19 23:28:59 -07001785 __be32 status;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001786
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001787 status = nfsd4_encode_components_esc(xdr, ':', location->hosts,
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001788 '[', ']');
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001789 if (status)
1790 return status;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001791 status = nfsd4_encode_components(xdr, '/', location->path);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001792 if (status)
1793 return status;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001794 return 0;
1795}
1796
1797/*
Trond Myklebusted748aa2011-09-12 19:37:06 -04001798 * Encode a path in RFC3530 'pathname4' format
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001799 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001800static __be32 nfsd4_encode_path(struct xdr_stream *xdr,
1801 const struct path *root,
1802 const struct path *path)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001803{
Al Viro301f0262013-09-01 16:06:39 -04001804 struct path cur = *path;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001805 __be32 *p;
Trond Myklebusted748aa2011-09-12 19:37:06 -04001806 struct dentry **components = NULL;
1807 unsigned int ncomponents = 0;
1808 __be32 err = nfserr_jukebox;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001809
Trond Myklebusted748aa2011-09-12 19:37:06 -04001810 dprintk("nfsd4_encode_components(");
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001811
Trond Myklebusted748aa2011-09-12 19:37:06 -04001812 path_get(&cur);
1813 /* First walk the path up to the nfsd root, and store the
1814 * dentries/path components in an array.
1815 */
1816 for (;;) {
1817 if (cur.dentry == root->dentry && cur.mnt == root->mnt)
1818 break;
1819 if (cur.dentry == cur.mnt->mnt_root) {
1820 if (follow_up(&cur))
1821 continue;
1822 goto out_free;
1823 }
1824 if ((ncomponents & 15) == 0) {
1825 struct dentry **new;
1826 new = krealloc(components,
1827 sizeof(*new) * (ncomponents + 16),
1828 GFP_KERNEL);
1829 if (!new)
1830 goto out_free;
1831 components = new;
1832 }
1833 components[ncomponents++] = cur.dentry;
1834 cur.dentry = dget_parent(cur.dentry);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001835 }
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001836 err = nfserr_resource;
1837 p = xdr_reserve_space(xdr, 4);
1838 if (!p)
Trond Myklebusted748aa2011-09-12 19:37:06 -04001839 goto out_free;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04001840 *p++ = cpu_to_be32(ncomponents);
Trond Myklebusted748aa2011-09-12 19:37:06 -04001841
1842 while (ncomponents) {
1843 struct dentry *dentry = components[ncomponents - 1];
Al Viro301f0262013-09-01 16:06:39 -04001844 unsigned int len;
Trond Myklebusted748aa2011-09-12 19:37:06 -04001845
Al Viro301f0262013-09-01 16:06:39 -04001846 spin_lock(&dentry->d_lock);
1847 len = dentry->d_name.len;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001848 p = xdr_reserve_space(xdr, len + 4);
1849 if (!p) {
Al Viro301f0262013-09-01 16:06:39 -04001850 spin_unlock(&dentry->d_lock);
Trond Myklebusted748aa2011-09-12 19:37:06 -04001851 goto out_free;
Al Viro301f0262013-09-01 16:06:39 -04001852 }
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04001853 p = xdr_encode_opaque(p, dentry->d_name.name, len);
Trond Myklebusted748aa2011-09-12 19:37:06 -04001854 dprintk("/%s", dentry->d_name.name);
Al Viro301f0262013-09-01 16:06:39 -04001855 spin_unlock(&dentry->d_lock);
Trond Myklebusted748aa2011-09-12 19:37:06 -04001856 dput(dentry);
1857 ncomponents--;
1858 }
1859
Trond Myklebusted748aa2011-09-12 19:37:06 -04001860 err = 0;
1861out_free:
1862 dprintk(")\n");
1863 while (ncomponents)
1864 dput(components[--ncomponents]);
1865 kfree(components);
1866 path_put(&cur);
1867 return err;
1868}
1869
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001870static __be32 nfsd4_encode_fsloc_fsroot(struct xdr_stream *xdr,
1871 struct svc_rqst *rqstp, const struct path *path)
Trond Myklebusted748aa2011-09-12 19:37:06 -04001872{
1873 struct svc_export *exp_ps;
1874 __be32 res;
1875
1876 exp_ps = rqst_find_fsidzero_export(rqstp);
1877 if (IS_ERR(exp_ps))
1878 return nfserrno(PTR_ERR(exp_ps));
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001879 res = nfsd4_encode_path(xdr, &exp_ps->ex_path, path);
Trond Myklebusted748aa2011-09-12 19:37:06 -04001880 exp_put(exp_ps);
1881 return res;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001882}
1883
1884/*
1885 * encode a fs_locations structure
1886 */
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001887static __be32 nfsd4_encode_fs_locations(struct xdr_stream *xdr,
1888 struct svc_rqst *rqstp, struct svc_export *exp)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001889{
Al Virob37ad282006-10-19 23:28:59 -07001890 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001891 int i;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001892 __be32 *p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001893 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001894
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001895 status = nfsd4_encode_fsloc_fsroot(xdr, rqstp, &exp->ex_path);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001896 if (status)
1897 return status;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001898 p = xdr_reserve_space(xdr, 4);
1899 if (!p)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001900 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04001901 *p++ = cpu_to_be32(fslocs->locations_count);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001902 for (i=0; i<fslocs->locations_count; i++) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001903 status = nfsd4_encode_fs_location4(xdr, &fslocs->locations[i]);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001904 if (status)
1905 return status;
1906 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001907 return 0;
1908}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04001910static u32 nfs4_file_type(umode_t mode)
1911{
1912 switch (mode & S_IFMT) {
1913 case S_IFIFO: return NF4FIFO;
1914 case S_IFCHR: return NF4CHR;
1915 case S_IFDIR: return NF4DIR;
1916 case S_IFBLK: return NF4BLK;
1917 case S_IFLNK: return NF4LNK;
1918 case S_IFREG: return NF4REG;
1919 case S_IFSOCK: return NF4SOCK;
1920 default: return NF4BAD;
1921 };
1922}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Al Virob37ad282006-10-19 23:28:59 -07001924static inline __be32
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001925nfsd4_encode_aclname(struct xdr_stream *xdr, struct svc_rqst *rqstp,
1926 struct nfs4_ace *ace)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
J. Bruce Fields35541162014-01-08 09:49:01 -05001928 if (ace->whotype != NFS4_ACL_WHO_NAMED)
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001929 return nfs4_acl_write_who(xdr, ace->whotype);
J. Bruce Fields35541162014-01-08 09:49:01 -05001930 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001931 return nfsd4_encode_group(xdr, rqstp, ace->who_gid);
J. Bruce Fields35541162014-01-08 09:49:01 -05001932 else
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001933 return nfsd4_encode_user(xdr, rqstp, ace->who_uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934}
1935
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001936#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1937 FATTR4_WORD0_RDATTR_ERROR)
1938#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1939
David Quigley18032ca2013-05-02 13:19:10 -04001940#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
1941static inline __be32
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001942nfsd4_encode_security_label(struct xdr_stream *xdr, struct svc_rqst *rqstp,
1943 void *context, int len)
David Quigley18032ca2013-05-02 13:19:10 -04001944{
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001945 __be32 *p;
David Quigley18032ca2013-05-02 13:19:10 -04001946
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001947 p = xdr_reserve_space(xdr, len + 4 + 4 + 4);
1948 if (!p)
David Quigley18032ca2013-05-02 13:19:10 -04001949 return nfserr_resource;
1950
1951 /*
1952 * For now we use a 0 here to indicate the null translation; in
1953 * the future we may place a call to translation code here.
1954 */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04001955 *p++ = cpu_to_be32(0); /* lfs */
1956 *p++ = cpu_to_be32(0); /* pi */
David Quigley18032ca2013-05-02 13:19:10 -04001957 p = xdr_encode_opaque(p, context, len);
David Quigley18032ca2013-05-02 13:19:10 -04001958 return 0;
1959}
1960#else
1961static inline __be32
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04001962nfsd4_encode_security_label(struct xdr_stream *xdr, struct svc_rqst *rqstp,
1963 void *context, int len)
David Quigley18032ca2013-05-02 13:19:10 -04001964{ return 0; }
1965#endif
1966
Al Virob37ad282006-10-19 23:28:59 -07001967static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001968{
1969 /* As per referral draft: */
1970 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
1971 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
1972 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
1973 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
1974 *rdattr_err = NFSERR_MOVED;
1975 else
1976 return nfserr_moved;
1977 }
1978 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
1979 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
1980 return 0;
1981}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04001983
1984static int get_parent_attributes(struct svc_export *exp, struct kstat *stat)
1985{
1986 struct path path = exp->ex_path;
1987 int err;
1988
1989 path_get(&path);
1990 while (follow_up(&path)) {
1991 if (path.dentry != path.mnt->mnt_root)
1992 break;
1993 }
Al Viro3dadecc2013-01-24 02:18:08 -05001994 err = vfs_getattr(&path, stat);
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04001995 path_put(&path);
1996 return err;
1997}
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999/*
2000 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2001 * ourselves.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 */
Al Virob37ad282006-10-19 23:28:59 -07002003__be32
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04002004nfsd4_encode_fattr(struct xdr_stream *xdr, struct svc_fh *fhp,
2005 struct svc_export *exp,
2006 struct dentry *dentry, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002007 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 u32 bmval0 = bmval[0];
2010 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03002011 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 struct kstat stat;
J. Bruce Fieldsd50e61362014-01-15 12:21:12 -05002013 struct svc_fh *tempfh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 struct kstatfs statfs;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002015 __be32 *p;
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05002016 int starting_len = xdr->buf->len;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002017 int attrlen_offset;
2018 __be32 attrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 u32 dummy;
2020 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002021 u32 rdattr_err = 0;
Al Virob37ad282006-10-19 23:28:59 -07002022 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002023 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 int aclsupport = 0;
2025 struct nfs4_acl *acl = NULL;
David Quigley18032ca2013-05-02 13:19:10 -04002026 void *context = NULL;
2027 int contextlen;
2028 bool contextsupport = false;
Andy Adamson7e705702009-04-03 08:29:11 +03002029 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2030 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002031 struct path path = {
2032 .mnt = exp->ex_path.mnt,
2033 .dentry = dentry,
2034 };
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03002035 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03002038 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
2039 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
2040 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002042 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03002043 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002044 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
2045 if (status)
2046 goto out;
2047 }
2048
Al Viro3dadecc2013-01-24 02:18:08 -05002049 err = vfs_getattr(&path, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07002050 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002052 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
2053 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
2055 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002056 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07002057 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 goto out_nfserr;
2059 }
2060 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
J. Bruce Fieldsd50e61362014-01-15 12:21:12 -05002061 tempfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
2062 status = nfserr_jukebox;
2063 if (!tempfh)
2064 goto out;
2065 fh_init(tempfh, NFS4_FHSIZE);
2066 status = fh_compose(tempfh, exp, dentry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (status)
2068 goto out;
J. Bruce Fieldsd50e61362014-01-15 12:21:12 -05002069 fhp = tempfh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 }
2071 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
2072 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07002073 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
2074 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07002076 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07002078 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 status = nfserr_attrnotsupp;
2080 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07002081 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 goto out_nfserr;
2083 }
2084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
David Quigley18032ca2013-05-02 13:19:10 -04002086#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2087 if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) ||
2088 bmval[0] & FATTR4_WORD0_SUPPORTED_ATTRS) {
2089 err = security_inode_getsecctx(dentry->d_inode,
2090 &context, &contextlen);
2091 contextsupport = (err == 0);
2092 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
2093 if (err == -EOPNOTSUPP)
2094 bmval2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2095 else if (err)
2096 goto out_nfserr;
2097 }
2098 }
2099#endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2100
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002101 if (bmval2) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002102 p = xdr_reserve_space(xdr, 16);
2103 if (!p)
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002104 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002105 *p++ = cpu_to_be32(3);
2106 *p++ = cpu_to_be32(bmval0);
2107 *p++ = cpu_to_be32(bmval1);
2108 *p++ = cpu_to_be32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002109 } else if (bmval1) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002110 p = xdr_reserve_space(xdr, 12);
2111 if (!p)
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002112 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002113 *p++ = cpu_to_be32(2);
2114 *p++ = cpu_to_be32(bmval0);
2115 *p++ = cpu_to_be32(bmval1);
Andy Adamson7e705702009-04-03 08:29:11 +03002116 } else {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002117 p = xdr_reserve_space(xdr, 8);
2118 if (!p)
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002119 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002120 *p++ = cpu_to_be32(1);
2121 *p++ = cpu_to_be32(bmval0);
Andy Adamson7e705702009-04-03 08:29:11 +03002122 }
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002123
2124 attrlen_offset = xdr->buf->len;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002125 p = xdr_reserve_space(xdr, 4);
2126 if (!p)
2127 goto out_resource;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002128 p++; /* to be backfilled later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03002131 u32 word0 = nfsd_suppattrs0(minorversion);
2132 u32 word1 = nfsd_suppattrs1(minorversion);
2133 u32 word2 = nfsd_suppattrs2(minorversion);
2134
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002135 if (!aclsupport)
2136 word0 &= ~FATTR4_WORD0_ACL;
David Quigley18032ca2013-05-02 13:19:10 -04002137 if (!contextsupport)
2138 word2 &= ~FATTR4_WORD2_SECURITY_LABEL;
Andy Adamson7e705702009-04-03 08:29:11 +03002139 if (!word2) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002140 p = xdr_reserve_space(xdr, 12);
2141 if (!p)
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002142 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002143 *p++ = cpu_to_be32(2);
2144 *p++ = cpu_to_be32(word0);
2145 *p++ = cpu_to_be32(word1);
Andy Adamson7e705702009-04-03 08:29:11 +03002146 } else {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002147 p = xdr_reserve_space(xdr, 16);
2148 if (!p)
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002149 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002150 *p++ = cpu_to_be32(3);
2151 *p++ = cpu_to_be32(word0);
2152 *p++ = cpu_to_be32(word1);
2153 *p++ = cpu_to_be32(word2);
Andy Adamson7e705702009-04-03 08:29:11 +03002154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 }
2156 if (bmval0 & FATTR4_WORD0_TYPE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002157 p = xdr_reserve_space(xdr, 4);
2158 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 goto out_resource;
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002160 dummy = nfs4_file_type(stat.mode);
J. Bruce Fields6b6d81372013-01-16 17:11:11 -05002161 if (dummy == NF4BAD) {
2162 status = nfserr_serverfault;
2163 goto out;
2164 }
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002165 *p++ = cpu_to_be32(dummy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 }
2167 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002168 p = xdr_reserve_space(xdr, 4);
2169 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07002171 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002172 *p++ = cpu_to_be32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07002173 else
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002174 *p++ = cpu_to_be32(NFS4_FH_PERSISTENT|
2175 NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 }
2177 if (bmval0 & FATTR4_WORD0_CHANGE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002178 p = xdr_reserve_space(xdr, 8);
2179 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 goto out_resource;
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04002181 p = encode_change(p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
2183 if (bmval0 & FATTR4_WORD0_SIZE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002184 p = xdr_reserve_space(xdr, 8);
2185 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002187 p = xdr_encode_hyper(p, stat.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
2189 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002190 p = xdr_reserve_space(xdr, 4);
2191 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002193 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 }
2195 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002196 p = xdr_reserve_space(xdr, 4);
2197 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002199 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 }
2201 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002202 p = xdr_reserve_space(xdr, 4);
2203 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002205 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
2207 if (bmval0 & FATTR4_WORD0_FSID) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002208 p = xdr_reserve_space(xdr, 16);
2209 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002211 if (exp->ex_fslocs.migrated) {
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002212 p = xdr_encode_hyper(p, NFS4_REFERRAL_FSID_MAJOR);
2213 p = xdr_encode_hyper(p, NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002214 } else switch(fsid_source(fhp)) {
2215 case FSIDSOURCE_FSID:
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002216 p = xdr_encode_hyper(p, (u64)exp->ex_fsid);
2217 p = xdr_encode_hyper(p, (u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002218 break;
2219 case FSIDSOURCE_DEV:
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002220 *p++ = cpu_to_be32(0);
2221 *p++ = cpu_to_be32(MAJOR(stat.dev));
2222 *p++ = cpu_to_be32(0);
2223 *p++ = cpu_to_be32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08002224 break;
2225 case FSIDSOURCE_UUID:
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002226 p = xdr_encode_opaque_fixed(p, exp->ex_uuid, 16);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002227 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
2229 }
2230 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002231 p = xdr_reserve_space(xdr, 4);
2232 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002234 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
2236 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002237 p = xdr_reserve_space(xdr, 4);
2238 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002240 *p++ = cpu_to_be32(nn->nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 }
2242 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002243 p = xdr_reserve_space(xdr, 4);
2244 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002246 *p++ = cpu_to_be32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
2248 if (bmval0 & FATTR4_WORD0_ACL) {
2249 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 if (acl == NULL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002252 p = xdr_reserve_space(xdr, 4);
2253 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 goto out_resource;
2255
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002256 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 goto out_acl;
2258 }
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002259 p = xdr_reserve_space(xdr, 4);
2260 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002262 *p++ = cpu_to_be32(acl->naces);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002264 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002265 p = xdr_reserve_space(xdr, 4*3);
2266 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002268 *p++ = cpu_to_be32(ace->type);
2269 *p++ = cpu_to_be32(ace->flag);
2270 *p++ = cpu_to_be32(ace->access_mask &
2271 NFS4_ACE_MASK_ALL);
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002272 status = nfsd4_encode_aclname(xdr, rqstp, ace);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 if (status)
2274 goto out;
2275 }
2276 }
2277out_acl:
2278 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002279 p = xdr_reserve_space(xdr, 4);
2280 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002282 *p++ = cpu_to_be32(aclsupport ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
2284 }
2285 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002286 p = xdr_reserve_space(xdr, 4);
2287 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002289 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 }
2291 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002292 p = xdr_reserve_space(xdr, 4);
2293 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002295 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 }
2297 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002298 p = xdr_reserve_space(xdr, 4);
2299 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002301 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 }
2303 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002304 p = xdr_reserve_space(xdr, 4);
2305 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002307 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 }
2309 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002310 p = xdr_reserve_space(xdr, fhp->fh_handle.fh_size + 4);
2311 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 goto out_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002313 p = xdr_encode_opaque(p, &fhp->fh_handle.fh_base,
2314 fhp->fh_handle.fh_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
2316 if (bmval0 & FATTR4_WORD0_FILEID) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002317 p = xdr_reserve_space(xdr, 8);
2318 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002320 p = xdr_encode_hyper(p, stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 }
2322 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002323 p = xdr_reserve_space(xdr, 8);
2324 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002326 p = xdr_encode_hyper(p, (u64) statfs.f_ffree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002329 p = xdr_reserve_space(xdr, 8);
2330 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002332 p = xdr_encode_hyper(p, (u64) statfs.f_ffree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002335 p = xdr_reserve_space(xdr, 8);
2336 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002338 p = xdr_encode_hyper(p, (u64) statfs.f_files);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002340 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002341 status = nfsd4_encode_fs_locations(xdr, rqstp, exp);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002342 if (status)
2343 goto out;
2344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002346 p = xdr_reserve_space(xdr, 4);
2347 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002349 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
2351 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002352 p = xdr_reserve_space(xdr, 8);
2353 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002355 p = xdr_encode_hyper(p, exp->ex_path.mnt->mnt_sb->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 }
2357 if (bmval0 & FATTR4_WORD0_MAXLINK) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002358 p = xdr_reserve_space(xdr, 4);
2359 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002361 *p++ = cpu_to_be32(255);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 }
2363 if (bmval0 & FATTR4_WORD0_MAXNAME) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002364 p = xdr_reserve_space(xdr, 4);
2365 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002367 *p++ = cpu_to_be32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
2369 if (bmval0 & FATTR4_WORD0_MAXREAD) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002370 p = xdr_reserve_space(xdr, 8);
2371 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002373 p = xdr_encode_hyper(p, (u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 }
2375 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002376 p = xdr_reserve_space(xdr, 8);
2377 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002379 p = xdr_encode_hyper(p, (u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
2381 if (bmval1 & FATTR4_WORD1_MODE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002382 p = xdr_reserve_space(xdr, 4);
2383 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002385 *p++ = cpu_to_be32(stat.mode & S_IALLUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 }
2387 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002388 p = xdr_reserve_space(xdr, 4);
2389 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002391 *p++ = cpu_to_be32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 }
2393 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002394 p = xdr_reserve_space(xdr, 4);
2395 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002397 *p++ = cpu_to_be32(stat.nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
2399 if (bmval1 & FATTR4_WORD1_OWNER) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002400 status = nfsd4_encode_user(xdr, rqstp, stat.uid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 if (status)
2402 goto out;
2403 }
2404 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002405 status = nfsd4_encode_group(xdr, rqstp, stat.gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 if (status)
2407 goto out;
2408 }
2409 if (bmval1 & FATTR4_WORD1_RAWDEV) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002410 p = xdr_reserve_space(xdr, 8);
2411 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002413 *p++ = cpu_to_be32((u32) MAJOR(stat.rdev));
2414 *p++ = cpu_to_be32((u32) MINOR(stat.rdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 }
2416 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002417 p = xdr_reserve_space(xdr, 8);
2418 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 goto out_resource;
2420 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002421 p = xdr_encode_hyper(p, dummy64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 }
2423 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002424 p = xdr_reserve_space(xdr, 8);
2425 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 goto out_resource;
2427 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002428 p = xdr_encode_hyper(p, dummy64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
2430 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002431 p = xdr_reserve_space(xdr, 8);
2432 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 goto out_resource;
2434 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002435 p = xdr_encode_hyper(p, dummy64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 }
2437 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002438 p = xdr_reserve_space(xdr, 8);
2439 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 goto out_resource;
2441 dummy64 = (u64)stat.blocks << 9;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002442 p = xdr_encode_hyper(p, dummy64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 }
2444 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002445 p = xdr_reserve_space(xdr, 12);
2446 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002448 p = xdr_encode_hyper(p, (s64)stat.atime.tv_sec);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002449 *p++ = cpu_to_be32(stat.atime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 }
2451 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002452 p = xdr_reserve_space(xdr, 12);
2453 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002455 *p++ = cpu_to_be32(0);
2456 *p++ = cpu_to_be32(1);
2457 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 }
2459 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002460 p = xdr_reserve_space(xdr, 12);
2461 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002463 p = xdr_encode_hyper(p, (s64)stat.ctime.tv_sec);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002464 *p++ = cpu_to_be32(stat.ctime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 }
2466 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002467 p = xdr_reserve_space(xdr, 12);
2468 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 goto out_resource;
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002470 p = xdr_encode_hyper(p, (s64)stat.mtime.tv_sec);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002471 *p++ = cpu_to_be32(stat.mtime.tv_nsec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 }
2473 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002474 p = xdr_reserve_space(xdr, 8);
2475 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002477 /*
2478 * Get parent's attributes if not ignoring crossmount
2479 * and this is the root of a cross-mounted filesystem.
2480 */
2481 if (ignore_crossmnt == 0 &&
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002482 dentry == exp->ex_path.mnt->mnt_root)
2483 get_parent_attributes(exp, &stat);
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002484 p = xdr_encode_hyper(p, stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
David Quigley18032ca2013-05-02 13:19:10 -04002486 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002487 status = nfsd4_encode_security_label(xdr, rqstp, context,
2488 contextlen);
David Quigley18032ca2013-05-02 13:19:10 -04002489 if (status)
2490 goto out;
2491 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002492 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04002493 p = xdr_reserve_space(xdr, 16);
2494 if (!p)
J. Bruce Fieldsde3997a2014-01-28 16:05:15 -05002495 goto out_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002496 *p++ = cpu_to_be32(3);
2497 *p++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2498 *p++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2499 *p++ = cpu_to_be32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
Benny Halevy8c18f202009-04-03 08:29:14 +03002500 }
Andy Adamson7e705702009-04-03 08:29:11 +03002501
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04002502 attrlen = htonl(xdr->buf->len - attrlen_offset - 4);
2503 write_bytes_to_xdr_buf(xdr->buf, attrlen_offset, &attrlen, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 status = nfs_ok;
2505
2506out:
J. Bruce Fieldsba4e55b2013-05-15 10:27:52 -04002507#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
David Quigley18032ca2013-05-02 13:19:10 -04002508 if (context)
2509 security_release_secctx(context, contextlen);
J. Bruce Fieldsba4e55b2013-05-15 10:27:52 -04002510#endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002511 kfree(acl);
Yan, Zheng18df11d02014-03-10 12:52:07 +08002512 if (tempfh) {
J. Bruce Fieldsd50e61362014-01-15 12:21:12 -05002513 fh_put(tempfh);
Yan, Zheng18df11d02014-03-10 12:52:07 +08002514 kfree(tempfh);
2515 }
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05002516 if (status)
2517 xdr_truncate_encode(xdr, starting_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return status;
2519out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002520 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 goto out;
2522out_resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 status = nfserr_resource;
2524 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
2526
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04002527static void svcxdr_init_encode_from_buffer(struct xdr_stream *xdr,
2528 struct xdr_buf *buf, __be32 *p, int bytes)
2529{
2530 xdr->scratch.iov_len = 0;
2531 memset(buf, 0, sizeof(struct xdr_buf));
2532 buf->head[0].iov_base = p;
2533 buf->head[0].iov_len = 0;
2534 buf->len = 0;
2535 xdr->buf = buf;
2536 xdr->iov = buf->head;
2537 xdr->p = p;
2538 xdr->end = (void *)p + bytes;
2539 buf->buflen = bytes;
2540}
2541
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04002542__be32 nfsd4_encode_fattr_to_buf(__be32 **p, int words,
2543 struct svc_fh *fhp, struct svc_export *exp,
2544 struct dentry *dentry, u32 *bmval,
2545 struct svc_rqst *rqstp, int ignore_crossmnt)
2546{
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04002547 struct xdr_buf dummy;
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04002548 struct xdr_stream xdr;
2549 __be32 ret;
2550
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04002551 svcxdr_init_encode_from_buffer(&xdr, &dummy, *p, words << 2);
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04002552 ret = nfsd4_encode_fattr(&xdr, fhp, exp, dentry, bmval, rqstp,
2553 ignore_crossmnt);
2554 *p = xdr.p;
2555 return ret;
2556}
2557
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002558static inline int attributes_need_mount(u32 *bmval)
2559{
2560 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2561 return 1;
2562 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2563 return 1;
2564 return 0;
2565}
2566
Al Virob37ad282006-10-19 23:28:59 -07002567static __be32
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002568nfsd4_encode_dirent_fattr(struct xdr_stream *xdr, struct nfsd4_readdir *cd,
2569 const char *name, int namlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570{
2571 struct svc_export *exp = cd->rd_fhp->fh_export;
2572 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002573 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002574 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
2576 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2577 if (IS_ERR(dentry))
2578 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002579 if (!dentry->d_inode) {
2580 /*
2581 * nfsd_buffered_readdir drops the i_mutex between
2582 * readdir and calling this callback, leaving a window
2583 * where this directory entry could have gone away.
2584 */
2585 dput(dentry);
2586 return nfserr_noent;
2587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
2589 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002590 /*
2591 * In the case of a mountpoint, the client may be asking for
2592 * attributes that are only properties of the underlying filesystem
2593 * as opposed to the cross-mounted file system. In such a case,
2594 * we will not follow the cross mount and will fill the attribtutes
2595 * directly from the mountpoint dentry.
2596 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002597 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002598 int err;
2599
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002600 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2601 && !attributes_need_mount(cd->rd_bmval)) {
2602 ignore_crossmnt = 1;
2603 goto out_encode;
2604 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002605 /*
2606 * Why the heck aren't we just using nfsd_lookup??
2607 * Different "."/".." handling? Something else?
2608 * At least, add a comment here to explain....
2609 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002610 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2611 if (err) {
2612 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 goto out_put;
2614 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002615 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2616 if (nfserr)
2617 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
2619 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002620out_encode:
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002621 nfserr = nfsd4_encode_fattr(xdr, NULL, exp, dentry, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002622 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623out_put:
2624 dput(dentry);
2625 exp_put(exp);
2626 return nfserr;
2627}
2628
Al Viro2ebbc012006-10-19 23:28:58 -07002629static __be32 *
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002630nfsd4_encode_rdattr_error(struct xdr_stream *xdr, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002632 __be32 *p;
2633
2634 p = xdr_reserve_space(xdr, 6);
2635 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 return NULL;
2637 *p++ = htonl(2);
2638 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2639 *p++ = htonl(0); /* bmval1 */
2640
J. Bruce Fields87915c62013-01-16 17:33:28 -05002641 *p++ = htonl(4); /* attribute length */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 *p++ = nfserr; /* no htonl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 return p;
2644}
2645
2646static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002647nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2648 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002650 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002652 struct xdr_stream *xdr = cd->xdr;
2653 int start_offset = xdr->buf->len;
2654 int cookie_offset;
2655 int entry_bytes;
Al Virob37ad282006-10-19 23:28:59 -07002656 __be32 nfserr = nfserr_toosmall;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002657 __be64 wire_offset;
2658 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660 /* In nfsv4, "." and ".." never make it onto the wire.. */
2661 if (name && isdotent(name, namlen)) {
2662 cd->common.err = nfs_ok;
2663 return 0;
2664 }
2665
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002666 if (cd->cookie_offset) {
2667 wire_offset = cpu_to_be64(offset);
2668 write_bytes_to_xdr_buf(xdr->buf, cd->cookie_offset,
2669 &wire_offset, 8);
2670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002672 p = xdr_reserve_space(xdr, 4);
2673 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 *p++ = xdr_one; /* mark entry present */
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002676 cookie_offset = xdr->buf->len;
2677 p = xdr_reserve_space(xdr, 3*4 + namlen);
2678 if (!p)
2679 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2681 p = xdr_encode_array(p, name, namlen); /* name length & name */
2682
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002683 nfserr = nfsd4_encode_dirent_fattr(xdr, cd, name, namlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 switch (nfserr) {
2685 case nfs_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 break;
2687 case nfserr_resource:
2688 nfserr = nfserr_toosmall;
2689 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002690 case nfserr_noent:
2691 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 default:
2693 /*
2694 * If the client requested the RDATTR_ERROR attribute,
2695 * we stuff the error code into this attribute
2696 * and continue. If this attribute was not requested,
2697 * then in accordance with the spec, we fail the
2698 * entire READDIR operation(!)
2699 */
2700 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2701 goto fail;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002702 p = nfsd4_encode_rdattr_error(xdr, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002703 if (p == NULL) {
2704 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 }
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002708 nfserr = nfserr_toosmall;
2709 entry_bytes = xdr->buf->len - start_offset;
2710 if (entry_bytes > cd->rd_maxcount)
2711 goto fail;
2712 cd->rd_maxcount -= entry_bytes;
J. Bruce Fields3b299702014-03-20 21:20:26 -04002713 if (!cd->rd_dircount)
2714 goto fail;
2715 cd->rd_dircount--;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002716 cd->cookie_offset = cookie_offset;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002717skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 cd->common.err = nfs_ok;
2719 return 0;
2720fail:
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05002721 xdr_truncate_encode(xdr, start_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 cd->common.err = nfserr;
2723 return -EINVAL;
2724}
2725
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002726static __be32
2727nfsd4_encode_stateid(struct xdr_stream *xdr, stateid_t *sid)
Benny Halevye2f282b2008-08-12 20:45:07 +03002728{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002729 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002730
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002731 p = xdr_reserve_space(xdr, sizeof(stateid_t));
2732 if (!p)
2733 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002734 *p++ = cpu_to_be32(sid->si_generation);
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002735 p = xdr_encode_opaque_fixed(p, &sid->si_opaque,
2736 sizeof(stateid_opaque_t));
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002737 return 0;
Benny Halevye2f282b2008-08-12 20:45:07 +03002738}
2739
Benny Halevy695e12f2008-07-04 14:38:33 +03002740static __be32
Al Virob37ad282006-10-19 23:28:59 -07002741nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002743 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002744 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
2746 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002747 p = xdr_reserve_space(xdr, 8);
2748 if (!p)
2749 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002750 *p++ = cpu_to_be32(access->ac_supported);
2751 *p++ = cpu_to_be32(access->ac_resp_access);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002753 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754}
2755
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002756static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
2757{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002758 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002759 __be32 *p;
2760
2761 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002762 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 8);
2763 if (!p)
2764 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002765 p = xdr_encode_opaque_fixed(p, bcts->sessionid.data,
2766 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002767 *p++ = cpu_to_be32(bcts->dir);
J. Bruce Fields6e67b5d2012-09-13 09:49:43 -04002768 /* Sorry, we do not yet support RDMA over 4.1: */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002769 *p++ = cpu_to_be32(0);
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002770 }
2771 return nfserr;
2772}
2773
Benny Halevy695e12f2008-07-04 14:38:33 +03002774static __be32
Al Virob37ad282006-10-19 23:28:59 -07002775nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002777 struct xdr_stream *xdr = &resp->xdr;
2778
Benny Halevye2f282b2008-08-12 20:45:07 +03002779 if (!nfserr)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002780 nfserr = nfsd4_encode_stateid(xdr, &close->cl_stateid);
Benny Halevye2f282b2008-08-12 20:45:07 +03002781
Benny Halevy695e12f2008-07-04 14:38:33 +03002782 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783}
2784
2785
Benny Halevy695e12f2008-07-04 14:38:33 +03002786static __be32
Al Virob37ad282006-10-19 23:28:59 -07002787nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002789 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002790 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002793 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
2794 if (!p)
2795 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002796 p = xdr_encode_opaque_fixed(p, commit->co_verf.data,
2797 NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002799 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800}
2801
Benny Halevy695e12f2008-07-04 14:38:33 +03002802static __be32
Al Virob37ad282006-10-19 23:28:59 -07002803nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002805 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002806 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002809 p = xdr_reserve_space(xdr, 32);
2810 if (!p)
2811 return nfserr_resource;
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04002812 p = encode_cinfo(p, &create->cr_cinfo);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002813 *p++ = cpu_to_be32(2);
2814 *p++ = cpu_to_be32(create->cr_bmval[0]);
2815 *p++ = cpu_to_be32(create->cr_bmval[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002817 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818}
2819
Al Virob37ad282006-10-19 23:28:59 -07002820static __be32
2821nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822{
2823 struct svc_fh *fhp = getattr->ga_fhp;
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04002824 struct xdr_stream *xdr = &resp->xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826 if (nfserr)
2827 return nfserr;
2828
J. Bruce Fieldsd5184652013-08-26 16:04:46 -04002829 nfserr = nfsd4_encode_fattr(xdr, fhp, fhp->fh_export, fhp->fh_dentry,
2830 getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002831 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return nfserr;
2833}
2834
Benny Halevy695e12f2008-07-04 14:38:33 +03002835static __be32
2836nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002838 struct xdr_stream *xdr = &resp->xdr;
Benny Halevy695e12f2008-07-04 14:38:33 +03002839 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002841 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
2843 if (!nfserr) {
2844 len = fhp->fh_handle.fh_size;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002845 p = xdr_reserve_space(xdr, len + 4);
2846 if (!p)
2847 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002848 p = xdr_encode_opaque(p, &fhp->fh_handle.fh_base, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002850 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851}
2852
2853/*
2854* Including all fields other than the name, a LOCK4denied structure requires
2855* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2856*/
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002857static __be32
2858nfsd4_encode_lock_denied(struct xdr_stream *xdr, struct nfsd4_lock_denied *ld)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002860 struct xdr_netobj *conf = &ld->ld_owner;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002861 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04002863again:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002864 p = xdr_reserve_space(xdr, 32 + XDR_LEN(conf->len));
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04002865 if (!p) {
2866 /*
2867 * Don't fail to return the result just because we can't
2868 * return the conflicting open:
2869 */
2870 if (conf->len) {
2871 conf->len = 0;
2872 conf->data = NULL;
2873 goto again;
2874 }
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002875 return nfserr_resource;
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04002876 }
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002877 p = xdr_encode_hyper(p, ld->ld_start);
2878 p = xdr_encode_hyper(p, ld->ld_length);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002879 *p++ = cpu_to_be32(ld->ld_type);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002880 if (conf->len) {
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04002881 p = xdr_encode_opaque_fixed(p, &ld->ld_clientid, 8);
2882 p = xdr_encode_opaque(p, conf->data, conf->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04002884 p = xdr_encode_hyper(p, (u64)0); /* clientid */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002885 *p++ = cpu_to_be32(0); /* length of owner name */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 }
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002887 return nfserr_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
Benny Halevy695e12f2008-07-04 14:38:33 +03002890static __be32
Al Virob37ad282006-10-19 23:28:59 -07002891nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002893 struct xdr_stream *xdr = &resp->xdr;
2894
Benny Halevye2f282b2008-08-12 20:45:07 +03002895 if (!nfserr)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002896 nfserr = nfsd4_encode_stateid(xdr, &lock->lk_resp_stateid);
Benny Halevye2f282b2008-08-12 20:45:07 +03002897 else if (nfserr == nfserr_denied)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002898 nfserr = nfsd4_encode_lock_denied(xdr, &lock->lk_denied);
J. Bruce Fields8c7424c2014-03-10 12:19:10 -04002899 kfree(lock->lk_denied.ld_owner.data);
Benny Halevy695e12f2008-07-04 14:38:33 +03002900 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901}
2902
Benny Halevy695e12f2008-07-04 14:38:33 +03002903static __be32
Al Virob37ad282006-10-19 23:28:59 -07002904nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002906 struct xdr_stream *xdr = &resp->xdr;
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 if (nfserr == nfserr_denied)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002909 nfsd4_encode_lock_denied(xdr, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002910 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911}
2912
Benny Halevy695e12f2008-07-04 14:38:33 +03002913static __be32
Al Virob37ad282006-10-19 23:28:59 -07002914nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002916 struct xdr_stream *xdr = &resp->xdr;
2917
Benny Halevye2f282b2008-08-12 20:45:07 +03002918 if (!nfserr)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002919 nfserr = nfsd4_encode_stateid(xdr, &locku->lu_stateid);
Benny Halevye2f282b2008-08-12 20:45:07 +03002920
Benny Halevy695e12f2008-07-04 14:38:33 +03002921 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922}
2923
2924
Benny Halevy695e12f2008-07-04 14:38:33 +03002925static __be32
Al Virob37ad282006-10-19 23:28:59 -07002926nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002928 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002929 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
2931 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002932 p = xdr_reserve_space(xdr, 20);
2933 if (!p)
2934 return nfserr_resource;
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04002935 p = encode_cinfo(p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002937 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938}
2939
2940
Benny Halevy695e12f2008-07-04 14:38:33 +03002941static __be32
Al Virob37ad282006-10-19 23:28:59 -07002942nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002944 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002945 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
2947 if (nfserr)
2948 goto out;
2949
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002950 nfserr = nfsd4_encode_stateid(xdr, &open->op_stateid);
2951 if (nfserr)
2952 goto out;
2953 p = xdr_reserve_space(xdr, 40);
2954 if (!p)
2955 return nfserr_resource;
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04002956 p = encode_cinfo(p, &open->op_cinfo);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002957 *p++ = cpu_to_be32(open->op_rflags);
2958 *p++ = cpu_to_be32(2);
2959 *p++ = cpu_to_be32(open->op_bmval[0]);
2960 *p++ = cpu_to_be32(open->op_bmval[1]);
2961 *p++ = cpu_to_be32(open->op_delegate_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963 switch (open->op_delegate_type) {
2964 case NFS4_OPEN_DELEGATE_NONE:
2965 break;
2966 case NFS4_OPEN_DELEGATE_READ:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002967 nfserr = nfsd4_encode_stateid(xdr, &open->op_delegate_stateid);
2968 if (nfserr)
2969 return nfserr;
2970 p = xdr_reserve_space(xdr, 20);
2971 if (!p)
2972 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002973 *p++ = cpu_to_be32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
2975 /*
2976 * TODO: ACE's in delegations
2977 */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002978 *p++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2979 *p++ = cpu_to_be32(0);
2980 *p++ = cpu_to_be32(0);
2981 *p++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 break;
2983 case NFS4_OPEN_DELEGATE_WRITE:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05002984 nfserr = nfsd4_encode_stateid(xdr, &open->op_delegate_stateid);
2985 if (nfserr)
2986 return nfserr;
2987 p = xdr_reserve_space(xdr, 32);
2988 if (!p)
2989 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002990 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
2992 /*
2993 * TODO: space_limit's in delegations
2994 */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04002995 *p++ = cpu_to_be32(NFS4_LIMIT_SIZE);
2996 *p++ = cpu_to_be32(~(u32)0);
2997 *p++ = cpu_to_be32(~(u32)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998
2999 /*
3000 * TODO: ACE's in delegations
3001 */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003002 *p++ = cpu_to_be32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
3003 *p++ = cpu_to_be32(0);
3004 *p++ = cpu_to_be32(0);
3005 *p++ = cpu_to_be32(0); /* XXX: is NULL principal ok? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 break;
Benny Halevyd24433c2012-02-16 20:57:17 +02003007 case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */
3008 switch (open->op_why_no_deleg) {
3009 case WND4_CONTENTION:
3010 case WND4_RESOURCE:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003011 p = xdr_reserve_space(xdr, 8);
3012 if (!p)
3013 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003014 *p++ = cpu_to_be32(open->op_why_no_deleg);
3015 /* deleg signaling not supported yet: */
3016 *p++ = cpu_to_be32(0);
Benny Halevyd24433c2012-02-16 20:57:17 +02003017 break;
3018 default:
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003019 p = xdr_reserve_space(xdr, 4);
3020 if (!p)
3021 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003022 *p++ = cpu_to_be32(open->op_why_no_deleg);
Benny Halevyd24433c2012-02-16 20:57:17 +02003023 }
Benny Halevyd24433c2012-02-16 20:57:17 +02003024 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 default:
3026 BUG();
3027 }
3028 /* XXX save filehandle here */
3029out:
Benny Halevy695e12f2008-07-04 14:38:33 +03003030 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031}
3032
Benny Halevy695e12f2008-07-04 14:38:33 +03003033static __be32
Al Virob37ad282006-10-19 23:28:59 -07003034nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003036 struct xdr_stream *xdr = &resp->xdr;
3037
Benny Halevye2f282b2008-08-12 20:45:07 +03003038 if (!nfserr)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003039 nfserr = nfsd4_encode_stateid(xdr, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Benny Halevy695e12f2008-07-04 14:38:33 +03003041 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042}
3043
Benny Halevy695e12f2008-07-04 14:38:33 +03003044static __be32
Al Virob37ad282006-10-19 23:28:59 -07003045nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003047 struct xdr_stream *xdr = &resp->xdr;
3048
Benny Halevye2f282b2008-08-12 20:45:07 +03003049 if (!nfserr)
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003050 nfserr = nfsd4_encode_stateid(xdr, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
Benny Halevy695e12f2008-07-04 14:38:33 +03003052 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053}
3054
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003055static __be32 nfsd4_encode_splice_read(
3056 struct nfsd4_compoundres *resp,
3057 struct nfsd4_read *read,
3058 struct file *file, unsigned long maxcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059{
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003060 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fields34a78b42014-05-13 16:32:04 -04003061 struct xdr_buf *buf = xdr->buf;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003062 u32 eof;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003063 int space_left;
3064 __be32 nfserr;
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003065 __be32 *p = xdr->p - 2;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003066
3067 /*
3068 * Don't inline pages unless we know there's room for eof,
3069 * count, and possible padding:
3070 */
3071 if (xdr->end - xdr->p < 3)
3072 return nfserr_resource;
3073
3074 nfserr = nfsd_splice_read(read->rd_rqstp, file,
3075 read->rd_offset, &maxcount);
3076 if (nfserr) {
3077 /*
3078 * nfsd_splice_actor may have already messed with the
3079 * page length; reset it so as not to confuse
3080 * xdr_truncate_encode:
3081 */
J. Bruce Fields34a78b42014-05-13 16:32:04 -04003082 buf->page_len = 0;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003083 return nfserr;
3084 }
3085
3086 eof = (read->rd_offset + maxcount >=
3087 read->rd_fhp->fh_dentry->d_inode->i_size);
3088
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003089 *(p++) = htonl(eof);
3090 *(p++) = htonl(maxcount);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003091
J. Bruce Fields34a78b42014-05-13 16:32:04 -04003092 buf->page_len = maxcount;
3093 buf->len += maxcount;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003094 xdr->page_ptr += (maxcount + PAGE_SIZE - 1) / PAGE_SIZE;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003095
3096 /* Use rest of head for padding and remaining ops: */
J. Bruce Fields34a78b42014-05-13 16:32:04 -04003097 buf->tail[0].iov_base = xdr->p;
3098 buf->tail[0].iov_len = 0;
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003099 xdr->iov = buf->tail;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003100 if (maxcount&3) {
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003101 int pad = 4 - (maxcount&3);
3102
3103 *(xdr->p++) = 0;
3104
J. Bruce Fields34a78b42014-05-13 16:32:04 -04003105 buf->tail[0].iov_base += maxcount&3;
J. Bruce Fieldsfec25fa2014-05-13 17:27:03 -04003106 buf->tail[0].iov_len = pad;
3107 buf->len += pad;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003108 }
3109
3110 space_left = min_t(int, (void *)xdr->end - (void *)xdr->p,
J. Bruce Fields34a78b42014-05-13 16:32:04 -04003111 buf->buflen - buf->len);
3112 buf->buflen = buf->len + space_left;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003113 xdr->end = (__be32 *)((void *)xdr->end + space_left);
3114
3115 return 0;
3116}
3117
3118static __be32 nfsd4_encode_readv(struct nfsd4_compoundres *resp,
3119 struct nfsd4_read *read,
3120 struct file *file, unsigned long maxcount)
3121{
3122 struct xdr_stream *xdr = &resp->xdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 u32 eof;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003124 int v;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003125 int starting_len = xdr->buf->len - 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 long len;
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003127 int thislen;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003128 __be32 nfserr;
3129 __be32 tmp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003130 __be32 *p;
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003131 u32 zzz = 0;
3132 int pad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 len = maxcount;
3135 v = 0;
J. Bruce Fields6ff98972014-03-11 16:51:23 -04003136
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003137 thislen = (void *)xdr->end - (void *)xdr->p;
3138 if (len < thislen)
3139 thislen = len;
3140 p = xdr_reserve_space(xdr, (thislen+3)&~3);
3141 WARN_ON_ONCE(!p);
3142 resp->rqstp->rq_vec[v].iov_base = p;
3143 resp->rqstp->rq_vec[v].iov_len = thislen;
3144 v++;
3145 len -= thislen;
3146
3147 while (len) {
J. Bruce Fields6ff98972014-03-11 16:51:23 -04003148 thislen = min_t(long, len, PAGE_SIZE);
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003149 p = xdr_reserve_space(xdr, (thislen+3)&~3);
3150 WARN_ON_ONCE(!p);
3151 resp->rqstp->rq_vec[v].iov_base = p;
J. Bruce Fields6ff98972014-03-11 16:51:23 -04003152 resp->rqstp->rq_vec[v].iov_len = thislen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 v++;
J. Bruce Fields6ff98972014-03-11 16:51:23 -04003154 len -= thislen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 }
3156 read->rd_vlen = v;
3157
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003158 nfserr = nfsd_readv(file, read->rd_offset, resp->rqstp->rq_vec,
3159 read->rd_vlen, &maxcount);
3160 if (nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 return nfserr;
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003162 xdr_truncate_encode(xdr, starting_len + 8 + ((maxcount+3)&~3));
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003163
NeilBrown44524352006-10-04 02:15:46 -07003164 eof = (read->rd_offset + maxcount >=
3165 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003167 tmp = htonl(eof);
3168 write_bytes_to_xdr_buf(xdr->buf, starting_len , &tmp, 4);
3169 tmp = htonl(maxcount);
3170 write_bytes_to_xdr_buf(xdr->buf, starting_len + 4, &tmp, 4);
3171
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003172 pad = (maxcount&3) ? 4 - (maxcount&3) : 0;
3173 write_bytes_to_xdr_buf(xdr->buf, starting_len + 8 + maxcount,
3174 &zzz, pad);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 return 0;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003176
3177}
3178
3179static __be32
3180nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
3181 struct nfsd4_read *read)
3182{
3183 unsigned long maxcount;
3184 struct xdr_stream *xdr = &resp->xdr;
3185 struct file *file = read->rd_filp;
3186 int starting_len = xdr->buf->len;
3187 struct raparms *ra;
3188 __be32 *p;
3189 __be32 err;
3190
3191 if (nfserr)
3192 return nfserr;
3193
3194 p = xdr_reserve_space(xdr, 8); /* eof flag and byte count */
3195 if (!p) {
3196 WARN_ON_ONCE(resp->rqstp->rq_splice_ok);
3197 return nfserr_resource;
3198 }
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003199 if (resp->xdr.buf->page_len && resp->rqstp->rq_splice_ok) {
3200 WARN_ON_ONCE(1);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003201 return nfserr_resource;
3202 }
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003203 xdr_commit_encode(xdr);
3204
3205 maxcount = svc_max_payload(resp->rqstp);
J. Bruce Fieldsb0420982014-03-18 17:44:10 -04003206 if (maxcount > xdr->buf->buflen - xdr->buf->len)
3207 maxcount = xdr->buf->buflen - xdr->buf->len;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04003208 if (maxcount > read->rd_length)
3209 maxcount = read->rd_length;
3210
3211 if (!read->rd_filp) {
3212 err = nfsd_get_tmp_read_open(resp->rqstp, read->rd_fhp,
3213 &file, &ra);
3214 if (err)
3215 goto err_truncate;
3216 }
3217
3218 if (file->f_op->splice_read && resp->rqstp->rq_splice_ok)
3219 err = nfsd4_encode_splice_read(resp, read, file, maxcount);
3220 else
3221 err = nfsd4_encode_readv(resp, read, file, maxcount);
3222
3223 if (!read->rd_filp)
3224 nfsd_put_tmp_read_open(file, ra);
3225
3226err_truncate:
3227 if (err)
3228 xdr_truncate_encode(xdr, starting_len);
3229 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230}
3231
Al Virob37ad282006-10-19 23:28:59 -07003232static __be32
3233nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234{
3235 int maxcount;
J. Bruce Fields476a7b12014-01-20 17:08:27 -05003236 __be32 wire_count;
3237 int zero = 0;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003238 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05003239 int length_offset = xdr->buf->len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003240 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
3242 if (nfserr)
3243 return nfserr;
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04003244
3245 p = xdr_reserve_space(xdr, 4);
3246 if (!p)
3247 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 maxcount = PAGE_SIZE;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003249
J. Bruce Fields476a7b12014-01-20 17:08:27 -05003250 p = xdr_reserve_space(xdr, maxcount);
3251 if (!p)
J. Bruce Fields4e21ac42014-03-22 15:15:11 -04003252 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 /*
3254 * XXX: By default, the ->readlink() VFS op will truncate symlinks
3255 * if they would overflow the buffer. Is this kosher in NFSv4? If
3256 * not, one easy fix is: if ->readlink() precisely fills the buffer,
3257 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
3258 */
J. Bruce Fields476a7b12014-01-20 17:08:27 -05003259 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp,
3260 (char *)p, &maxcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 if (nfserr == nfserr_isdir)
J. Bruce Fieldsd3f627c2014-02-26 17:00:38 -05003262 nfserr = nfserr_inval;
3263 if (nfserr) {
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05003264 xdr_truncate_encode(xdr, length_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 return nfserr;
J. Bruce Fieldsd3f627c2014-02-26 17:00:38 -05003266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
J. Bruce Fields476a7b12014-01-20 17:08:27 -05003268 wire_count = htonl(maxcount);
3269 write_bytes_to_xdr_buf(xdr->buf, length_offset, &wire_count, 4);
3270 xdr_truncate_encode(xdr, length_offset + 4 + maxcount);
3271 if (maxcount & 3)
3272 write_bytes_to_xdr_buf(xdr->buf, length_offset + 4 + maxcount,
3273 &zero, 4 - (maxcount&3));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 return 0;
3275}
3276
Al Virob37ad282006-10-19 23:28:59 -07003277static __be32
3278nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279{
3280 int maxcount;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003281 int bytes_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 loff_t offset;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003283 __be64 wire_offset;
J. Bruce Fieldsddd1ea52013-08-27 21:32:25 -04003284 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05003285 int starting_len = xdr->buf->len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003286 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
3288 if (nfserr)
3289 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003291 p = xdr_reserve_space(xdr, NFS4_VERIFIER_SIZE);
3292 if (!p)
3293 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
3295 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003296 *p++ = cpu_to_be32(0);
3297 *p++ = cpu_to_be32(0);
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003298 resp->xdr.buf->head[0].iov_len = ((char *)resp->xdr.p)
3299 - (char *)resp->xdr.buf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
3301 /*
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003302 * Number of bytes left for directory entries allowing for the
3303 * final 8 bytes of the readdir and a following failed op:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 */
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003305 bytes_left = xdr->buf->buflen - xdr->buf->len
3306 - COMPOUND_ERR_SLACK_SPACE - 8;
3307 if (bytes_left < 0) {
3308 nfserr = nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 goto err_no_verf;
3310 }
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003311 maxcount = min_t(u32, readdir->rd_maxcount, INT_MAX);
3312 /*
3313 * Note the rfc defines rd_maxcount as the size of the
3314 * READDIR4resok structure, which includes the verifier above
3315 * and the 8 bytes encoded at the end of this function:
3316 */
3317 if (maxcount < 16) {
3318 nfserr = nfserr_toosmall;
3319 goto err_no_verf;
3320 }
3321 maxcount = min_t(int, maxcount-16, bytes_left);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003323 readdir->xdr = xdr;
3324 readdir->rd_maxcount = maxcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 readdir->common.err = 0;
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003326 readdir->cookie_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
3328 offset = readdir->rd_cookie;
3329 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
3330 &offset,
3331 &readdir->common, nfsd4_encode_dirent);
3332 if (nfserr == nfs_ok &&
3333 readdir->common.err == nfserr_toosmall &&
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003334 xdr->buf->len == starting_len + 8) {
3335 /* nothing encoded; which limit did we hit?: */
3336 if (maxcount - 16 < bytes_left)
3337 /* It was the fault of rd_maxcount: */
3338 nfserr = nfserr_toosmall;
3339 else
3340 /* We ran out of buffer space: */
3341 nfserr = nfserr_resource;
3342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 if (nfserr)
3344 goto err_no_verf;
3345
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003346 if (readdir->cookie_offset) {
3347 wire_offset = cpu_to_be64(offset);
3348 write_bytes_to_xdr_buf(xdr->buf, readdir->cookie_offset,
3349 &wire_offset, 8);
3350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
J. Bruce Fields561f0ed2014-01-20 16:37:11 -05003352 p = xdr_reserve_space(xdr, 8);
3353 if (!p) {
3354 WARN_ON_ONCE(1);
3355 goto err_no_verf;
3356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 *p++ = 0; /* no more entries */
3358 *p++ = htonl(readdir->common.err == nfserr_eof);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
3360 return 0;
3361err_no_verf:
J. Bruce Fields1fcea5b2014-02-26 20:17:02 -05003362 xdr_truncate_encode(xdr, starting_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 return nfserr;
3364}
3365
Benny Halevy695e12f2008-07-04 14:38:33 +03003366static __be32
Al Virob37ad282006-10-19 23:28:59 -07003367nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003369 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003370 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
3372 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003373 p = xdr_reserve_space(xdr, 20);
3374 if (!p)
3375 return nfserr_resource;
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04003376 p = encode_cinfo(p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003378 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379}
3380
Benny Halevy695e12f2008-07-04 14:38:33 +03003381static __be32
Al Virob37ad282006-10-19 23:28:59 -07003382nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003384 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003385 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
3387 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003388 p = xdr_reserve_space(xdr, 40);
3389 if (!p)
3390 return nfserr_resource;
J. Bruce Fieldsd05d5742014-03-22 18:48:39 -04003391 p = encode_cinfo(p, &rename->rn_sinfo);
3392 p = encode_cinfo(p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003394 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395}
3396
Benny Halevy695e12f2008-07-04 14:38:33 +03003397static __be32
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003398nfsd4_do_encode_secinfo(struct xdr_stream *xdr,
Chuck Levera77c8062013-03-16 15:55:10 -04003399 __be32 nfserr, struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07003400{
Chuck Lever676e4eb2013-04-30 18:48:54 -04003401 u32 i, nflavs, supported;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003402 struct exp_flavor_info *flavs;
3403 struct exp_flavor_info def_flavs[2];
Chuck Lever676e4eb2013-04-30 18:48:54 -04003404 __be32 *p, *flavorsp;
3405 static bool report = true;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003406
3407 if (nfserr)
3408 goto out;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003409 nfserr = nfserr_resource;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003410 if (exp->ex_nflavors) {
3411 flavs = exp->ex_flavors;
3412 nflavs = exp->ex_nflavors;
3413 } else { /* Handling of some defaults in absence of real secinfo: */
3414 flavs = def_flavs;
3415 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
3416 nflavs = 2;
3417 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
3418 flavs[1].pseudoflavor = RPC_AUTH_NULL;
3419 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
3420 nflavs = 1;
3421 flavs[0].pseudoflavor
3422 = svcauth_gss_flavor(exp->ex_client);
3423 } else {
3424 nflavs = 1;
3425 flavs[0].pseudoflavor
3426 = exp->ex_client->flavour->flavour;
3427 }
3428 }
3429
Chuck Lever676e4eb2013-04-30 18:48:54 -04003430 supported = 0;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003431 p = xdr_reserve_space(xdr, 4);
3432 if (!p)
3433 goto out;
Chuck Lever676e4eb2013-04-30 18:48:54 -04003434 flavorsp = p++; /* to be backfilled later */
Chuck Lever676e4eb2013-04-30 18:48:54 -04003435
J. Bruce Fields4796f452007-07-17 04:04:51 -07003436 for (i = 0; i < nflavs; i++) {
Chuck Lever676e4eb2013-04-30 18:48:54 -04003437 rpc_authflavor_t pf = flavs[i].pseudoflavor;
Chuck Levera77c8062013-03-16 15:55:10 -04003438 struct rpcsec_gss_info info;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003439
Chuck Lever676e4eb2013-04-30 18:48:54 -04003440 if (rpcauth_get_gssinfo(pf, &info) == 0) {
3441 supported++;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003442 p = xdr_reserve_space(xdr, 4 + 4 +
3443 XDR_LEN(info.oid.len) + 4 + 4);
3444 if (!p)
3445 goto out;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003446 *p++ = cpu_to_be32(RPC_AUTH_GSS);
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003447 p = xdr_encode_opaque(p, info.oid.data, info.oid.len);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003448 *p++ = cpu_to_be32(info.qop);
3449 *p++ = cpu_to_be32(info.service);
Chuck Lever676e4eb2013-04-30 18:48:54 -04003450 } else if (pf < RPC_AUTH_MAXFLAVOR) {
3451 supported++;
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003452 p = xdr_reserve_space(xdr, 4);
3453 if (!p)
3454 goto out;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003455 *p++ = cpu_to_be32(pf);
Chuck Lever676e4eb2013-04-30 18:48:54 -04003456 } else {
3457 if (report)
3458 pr_warn("NFS: SECINFO: security flavor %u "
3459 "is not supported\n", pf);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003460 }
3461 }
Chuck Levera77c8062013-03-16 15:55:10 -04003462
Chuck Lever676e4eb2013-04-30 18:48:54 -04003463 if (nflavs != supported)
3464 report = false;
3465 *flavorsp = htonl(supported);
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003466 nfserr = 0;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003467out:
3468 if (exp)
3469 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03003470 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003471}
3472
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003473static __be32
3474nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
3475 struct nfsd4_secinfo *secinfo)
3476{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003477 struct xdr_stream *xdr = &resp->xdr;
3478
3479 return nfsd4_do_encode_secinfo(xdr, nfserr, secinfo->si_exp);
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003480}
3481
3482static __be32
3483nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
3484 struct nfsd4_secinfo_no_name *secinfo)
3485{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003486 struct xdr_stream *xdr = &resp->xdr;
3487
3488 return nfsd4_do_encode_secinfo(xdr, nfserr, secinfo->sin_exp);
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003489}
3490
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491/*
3492 * The SETATTR encode routine is special -- it always encodes a bitmap,
3493 * regardless of the error status.
3494 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003495static __be32
Al Virob37ad282006-10-19 23:28:59 -07003496nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003498 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003499 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003501 p = xdr_reserve_space(xdr, 16);
3502 if (!p)
3503 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 if (nfserr) {
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003505 *p++ = cpu_to_be32(3);
3506 *p++ = cpu_to_be32(0);
3507 *p++ = cpu_to_be32(0);
3508 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 }
3510 else {
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003511 *p++ = cpu_to_be32(3);
3512 *p++ = cpu_to_be32(setattr->sa_bmval[0]);
3513 *p++ = cpu_to_be32(setattr->sa_bmval[1]);
3514 *p++ = cpu_to_be32(setattr->sa_bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003516 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517}
3518
Benny Halevy695e12f2008-07-04 14:38:33 +03003519static __be32
Al Virob37ad282006-10-19 23:28:59 -07003520nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003522 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003523 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
3525 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003526 p = xdr_reserve_space(xdr, 8 + NFS4_VERIFIER_SIZE);
3527 if (!p)
3528 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003529 p = xdr_encode_opaque_fixed(p, &scd->se_clientid, 8);
3530 p = xdr_encode_opaque_fixed(p, &scd->se_confirm,
3531 NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 }
3533 else if (nfserr == nfserr_clid_inuse) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003534 p = xdr_reserve_space(xdr, 8);
3535 if (!p)
3536 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003537 *p++ = cpu_to_be32(0);
3538 *p++ = cpu_to_be32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003540 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541}
3542
Benny Halevy695e12f2008-07-04 14:38:33 +03003543static __be32
Al Virob37ad282006-10-19 23:28:59 -07003544nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003546 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003547 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
3549 if (!nfserr) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003550 p = xdr_reserve_space(xdr, 16);
3551 if (!p)
3552 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003553 *p++ = cpu_to_be32(write->wr_bytes_written);
3554 *p++ = cpu_to_be32(write->wr_how_written);
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003555 p = xdr_encode_opaque_fixed(p, write->wr_verifier.data,
3556 NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003558 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559}
3560
J. Bruce Fields57266a62013-04-13 14:27:29 -04003561static const u32 nfs4_minimal_spo_must_enforce[2] = {
3562 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
3563 1 << (OP_EXCHANGE_ID - 32) |
3564 1 << (OP_CREATE_SESSION - 32) |
3565 1 << (OP_DESTROY_SESSION - 32) |
3566 1 << (OP_DESTROY_CLIENTID - 32)
3567};
3568
Benny Halevy695e12f2008-07-04 14:38:33 +03003569static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003570nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003571 struct nfsd4_exchange_id *exid)
3572{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003573 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003574 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03003575 char *major_id;
3576 char *server_scope;
3577 int major_id_sz;
3578 int server_scope_sz;
3579 uint64_t minor_id = 0;
3580
3581 if (nfserr)
3582 return nfserr;
3583
3584 major_id = utsname()->nodename;
3585 major_id_sz = strlen(major_id);
3586 server_scope = utsname()->nodename;
3587 server_scope_sz = strlen(server_scope);
3588
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003589 p = xdr_reserve_space(xdr,
Andy Adamson0733d212009-04-03 08:28:01 +03003590 8 /* eir_clientid */ +
3591 4 /* eir_sequenceid */ +
3592 4 /* eir_flags */ +
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003593 4 /* spr_how */);
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003594 if (!p)
3595 return nfserr_resource;
Andy Adamson0733d212009-04-03 08:28:01 +03003596
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003597 p = xdr_encode_opaque_fixed(p, &exid->clientid, 8);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003598 *p++ = cpu_to_be32(exid->seqid);
3599 *p++ = cpu_to_be32(exid->flags);
Andy Adamson0733d212009-04-03 08:28:01 +03003600
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003601 *p++ = cpu_to_be32(exid->spa_how);
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003602
J. Bruce Fields57266a62013-04-13 14:27:29 -04003603 switch (exid->spa_how) {
3604 case SP4_NONE:
3605 break;
3606 case SP4_MACH_CRED:
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003607 /* spo_must_enforce, spo_must_allow */
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003608 p = xdr_reserve_space(xdr, 16);
3609 if (!p)
3610 return nfserr_resource;
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003611
J. Bruce Fields57266a62013-04-13 14:27:29 -04003612 /* spo_must_enforce bitmap: */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003613 *p++ = cpu_to_be32(2);
3614 *p++ = cpu_to_be32(nfs4_minimal_spo_must_enforce[0]);
3615 *p++ = cpu_to_be32(nfs4_minimal_spo_must_enforce[1]);
J. Bruce Fields57266a62013-04-13 14:27:29 -04003616 /* empty spo_must_allow bitmap: */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003617 *p++ = cpu_to_be32(0);
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003618
J. Bruce Fields57266a62013-04-13 14:27:29 -04003619 break;
3620 default:
3621 WARN_ON_ONCE(1);
3622 }
Andy Adamson0733d212009-04-03 08:28:01 +03003623
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003624 p = xdr_reserve_space(xdr,
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003625 8 /* so_minor_id */ +
3626 4 /* so_major_id.len */ +
3627 (XDR_QUADLEN(major_id_sz) * 4) +
3628 4 /* eir_server_scope.len */ +
3629 (XDR_QUADLEN(server_scope_sz) * 4) +
3630 4 /* eir_server_impl_id.count (0) */);
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003631 if (!p)
3632 return nfserr_resource;
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003633
Andy Adamson0733d212009-04-03 08:28:01 +03003634 /* The server_owner struct */
J. Bruce Fieldsb64c7f32014-03-22 17:11:35 -04003635 p = xdr_encode_hyper(p, minor_id); /* Minor id */
Andy Adamson0733d212009-04-03 08:28:01 +03003636 /* major id */
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003637 p = xdr_encode_opaque(p, major_id, major_id_sz);
Andy Adamson0733d212009-04-03 08:28:01 +03003638
3639 /* Server scope */
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003640 p = xdr_encode_opaque(p, server_scope, server_scope_sz);
Andy Adamson0733d212009-04-03 08:28:01 +03003641
3642 /* Implementation id */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003643 *p++ = cpu_to_be32(0); /* zero length nfs_impl_id4 array */
Andy Adamson0733d212009-04-03 08:28:01 +03003644 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003645}
3646
3647static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003648nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003649 struct nfsd4_create_session *sess)
3650{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003651 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003652 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003653
3654 if (nfserr)
3655 return nfserr;
3656
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003657 p = xdr_reserve_space(xdr, 24);
3658 if (!p)
3659 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003660 p = xdr_encode_opaque_fixed(p, sess->sessionid.data,
3661 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003662 *p++ = cpu_to_be32(sess->seqid);
3663 *p++ = cpu_to_be32(sess->flags);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003664
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003665 p = xdr_reserve_space(xdr, 28);
3666 if (!p)
3667 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003668 *p++ = cpu_to_be32(0); /* headerpadsz */
3669 *p++ = cpu_to_be32(sess->fore_channel.maxreq_sz);
3670 *p++ = cpu_to_be32(sess->fore_channel.maxresp_sz);
3671 *p++ = cpu_to_be32(sess->fore_channel.maxresp_cached);
3672 *p++ = cpu_to_be32(sess->fore_channel.maxops);
3673 *p++ = cpu_to_be32(sess->fore_channel.maxreqs);
3674 *p++ = cpu_to_be32(sess->fore_channel.nr_rdma_attrs);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003675
3676 if (sess->fore_channel.nr_rdma_attrs) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003677 p = xdr_reserve_space(xdr, 4);
3678 if (!p)
3679 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003680 *p++ = cpu_to_be32(sess->fore_channel.rdma_attrs);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003681 }
3682
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003683 p = xdr_reserve_space(xdr, 28);
3684 if (!p)
3685 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003686 *p++ = cpu_to_be32(0); /* headerpadsz */
3687 *p++ = cpu_to_be32(sess->back_channel.maxreq_sz);
3688 *p++ = cpu_to_be32(sess->back_channel.maxresp_sz);
3689 *p++ = cpu_to_be32(sess->back_channel.maxresp_cached);
3690 *p++ = cpu_to_be32(sess->back_channel.maxops);
3691 *p++ = cpu_to_be32(sess->back_channel.maxreqs);
3692 *p++ = cpu_to_be32(sess->back_channel.nr_rdma_attrs);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003693
3694 if (sess->back_channel.nr_rdma_attrs) {
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003695 p = xdr_reserve_space(xdr, 4);
3696 if (!p)
3697 return nfserr_resource;
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003698 *p++ = cpu_to_be32(sess->back_channel.rdma_attrs);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003699 }
3700 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003701}
3702
3703static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003704nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003705 struct nfsd4_sequence *seq)
3706{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003707 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003708 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003709
3710 if (nfserr)
3711 return nfserr;
3712
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003713 p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN + 20);
3714 if (!p)
3715 return nfserr_resource;
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003716 p = xdr_encode_opaque_fixed(p, seq->sessionid.data,
3717 NFS4_MAX_SESSIONID_LEN);
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003718 *p++ = cpu_to_be32(seq->seqid);
3719 *p++ = cpu_to_be32(seq->slotid);
J. Bruce Fieldsb7d7ca32011-08-31 15:39:30 -04003720 /* Note slotid's are numbered from zero: */
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003721 *p++ = cpu_to_be32(seq->maxslots - 1); /* sr_highest_slotid */
3722 *p++ = cpu_to_be32(seq->maxslots - 1); /* sr_target_highest_slotid */
3723 *p++ = cpu_to_be32(seq->status_flags);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003724
J. Bruce Fieldsf5236012014-03-21 17:57:57 -04003725 resp->cstate.data_offset = xdr->buf->len; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003726 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003727}
3728
J. Bruce Fields2355c592012-04-25 16:56:22 -04003729static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003730nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumaker17456802011-07-13 10:50:48 -04003731 struct nfsd4_test_stateid *test_stateid)
3732{
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003733 struct xdr_stream *xdr = &resp->xdr;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003734 struct nfsd4_test_stateid_id *stateid, *next;
Bryan Schumaker17456802011-07-13 10:50:48 -04003735 __be32 *p;
Bryan Schumaker17456802011-07-13 10:50:48 -04003736
J. Bruce Fieldsa11fcce2014-02-03 16:31:42 -05003737 if (nfserr)
3738 return nfserr;
3739
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003740 p = xdr_reserve_space(xdr, 4 + (4 * test_stateid->ts_num_ids));
3741 if (!p)
3742 return nfserr_resource;
Bryan Schumaker17456802011-07-13 10:50:48 -04003743 *p++ = htonl(test_stateid->ts_num_ids);
Bryan Schumaker17456802011-07-13 10:50:48 -04003744
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003745 list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) {
Al Viro02f5fde2012-04-13 00:10:34 -04003746 *p++ = stateid->ts_id_status;
Bryan Schumaker17456802011-07-13 10:50:48 -04003747 }
Bryan Schumaker17456802011-07-13 10:50:48 -04003748
3749 return nfserr;
3750}
3751
Andy Adamson2db134e2009-04-03 08:27:55 +03003752static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003753nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3754{
3755 return nfserr;
3756}
3757
3758typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3759
Andy Adamson2db134e2009-04-03 08:27:55 +03003760/*
3761 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3762 * since we don't need to filter out obsolete ops as this is
3763 * done in the decoding phase.
3764 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003765static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003766 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3767 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3768 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3769 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3770 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3771 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3772 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3773 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3774 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3775 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3776 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3777 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3778 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3779 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3780 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3781 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003782 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003783 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3784 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3785 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3786 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3787 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3788 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3789 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3790 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3791 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3792 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3793 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3794 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3795 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3796 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3797 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3798 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3799 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3800 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3801 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3802 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003803
3804 /* NFSv4.1 operations */
3805 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003806 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
Andy Adamson2db134e2009-04-03 08:27:55 +03003807 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3808 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
Kinglong Mee43212cc2013-12-09 19:04:23 +08003809 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
3810 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003811 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3812 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3813 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3814 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3815 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3816 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003817 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003818 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3819 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
Bryan Schumaker17456802011-07-13 10:50:48 -04003820 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003821 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3822 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3823 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003824};
3825
Andy Adamson496c2622009-04-03 08:28:48 +03003826/*
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04003827 * Calculate whether we still have space to encode repsize bytes.
3828 * There are two considerations:
3829 * - For NFS versions >=4.1, the size of the reply must stay within
3830 * session limits
3831 * - For all NFS versions, we must stay within limited preallocated
3832 * buffer space.
Andy Adamson496c2622009-04-03 08:28:48 +03003833 *
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04003834 * This is called before the operation is processed, so can only provide
3835 * an upper estimate. For some nonidempotent operations (such as
3836 * getattr), it's not necessarily a problem if that estimate is wrong,
3837 * as we can fail it after processing without significant side effects.
Andy Adamson496c2622009-04-03 08:28:48 +03003838 */
J. Bruce Fieldsa8095f72014-03-11 17:54:34 -04003839__be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 respsize)
Andy Adamson496c2622009-04-03 08:28:48 +03003840{
J. Bruce Fields67492c92014-03-08 16:42:05 -05003841 struct xdr_buf *buf = &resp->rqstp->rq_res;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003842 struct nfsd4_slot *slot = resp->cstate.slot;
Andy Adamson496c2622009-04-03 08:28:48 +03003843
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003844 if (buf->len + respsize <= buf->buflen)
3845 return nfs_ok;
3846 if (!nfsd4_has_session(&resp->cstate))
J. Bruce Fieldsea8d7722014-03-08 17:19:55 -05003847 return nfserr_resource;
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003848 if (slot->sl_flags & NFSD4_SLOT_CACHETHIS) {
3849 WARN_ON_ONCE(1);
3850 return nfserr_rep_too_big_to_cache;
J. Bruce Fieldsea8d7722014-03-08 17:19:55 -05003851 }
J. Bruce Fields47ee5292014-03-12 21:39:35 -04003852 return nfserr_rep_too_big;
Andy Adamson496c2622009-04-03 08:28:48 +03003853}
3854
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855void
3856nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3857{
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04003858 struct xdr_stream *xdr = &resp->xdr;
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003859 struct nfs4_stateowner *so = resp->cstate.replay_owner;
J. Bruce Fields5f4ab942014-03-07 11:01:37 -05003860 struct svc_rqst *rqstp = resp->rqstp;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04003861 int post_err_offset;
J. Bruce Fields07d1f802014-03-06 20:39:29 -05003862 nfsd4_enc encoder;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003863 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003865 p = xdr_reserve_space(xdr, 8);
3866 if (!p) {
3867 WARN_ON_ONCE(1);
3868 return;
3869 }
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003870 *p++ = cpu_to_be32(op->opnum);
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04003871 post_err_offset = xdr->buf->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Benny Halevy695e12f2008-07-04 14:38:33 +03003873 if (op->opnum == OP_ILLEGAL)
3874 goto status;
3875 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3876 !nfsd4_enc_ops[op->opnum]);
J. Bruce Fields07d1f802014-03-06 20:39:29 -05003877 encoder = nfsd4_enc_ops[op->opnum];
3878 op->status = encoder(resp, op->status, &op->u);
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04003879 xdr_commit_encode(xdr);
3880
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04003881 /* nfsd4_check_resp_size guarantees enough room for error status */
J. Bruce Fields5f4ab942014-03-07 11:01:37 -05003882 if (!op->status) {
3883 int space_needed = 0;
3884 if (!nfsd4_last_compound_op(rqstp))
3885 space_needed = COMPOUND_ERR_SLACK_SPACE;
3886 op->status = nfsd4_check_resp_size(resp, space_needed);
3887 }
J. Bruce Fieldsc8f13d92014-05-08 17:38:18 -04003888 if (op->status == nfserr_resource && nfsd4_has_session(&resp->cstate)) {
3889 struct nfsd4_slot *slot = resp->cstate.slot;
3890
3891 if (slot->sl_flags & NFSD4_SLOT_CACHETHIS)
3892 op->status = nfserr_rep_too_big_to_cache;
3893 else
3894 op->status = nfserr_rep_too_big;
3895 }
J. Bruce Fields07d1f802014-03-06 20:39:29 -05003896 if (op->status == nfserr_resource ||
3897 op->status == nfserr_rep_too_big ||
3898 op->status == nfserr_rep_too_big_to_cache) {
3899 /*
3900 * The operation may have already been encoded or
3901 * partially encoded. No op returns anything additional
3902 * in the case of one of these three errors, so we can
3903 * just truncate back to after the status. But it's a
3904 * bug if we had to do this on a non-idempotent op:
3905 */
3906 warn_on_nonidempotent_op(op);
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04003907 xdr_truncate_encode(xdr, post_err_offset);
J. Bruce Fields07d1f802014-03-06 20:39:29 -05003908 }
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003909 if (so) {
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04003910 int len = xdr->buf->len - post_err_offset;
3911
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003912 so->so_replay.rp_status = op->status;
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04003913 so->so_replay.rp_buflen = len;
3914 read_bytes_from_xdr_buf(xdr->buf, post_err_offset,
3915 so->so_replay.rp_buf, len);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003916 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003917status:
J. Bruce Fields082d4bd2013-08-29 15:42:52 -04003918 /* Note that op->status is already in network byte order: */
3919 write_bytes_to_xdr_buf(xdr->buf, post_err_offset - 4, &op->status, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920}
3921
3922/*
3923 * Encode the reply stored in the stateowner reply cache
3924 *
3925 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3926 * previously sent already encoded operation.
3927 *
3928 * called with nfs4_lock_state() held
3929 */
3930void
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003931nfsd4_encode_replay(struct xdr_stream *xdr, struct nfsd4_op *op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003933 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 struct nfs4_replay *rp = op->replay;
3935
3936 BUG_ON(!rp);
3937
J. Bruce Fieldsd0a381d2014-01-30 17:18:38 -05003938 p = xdr_reserve_space(xdr, 8 + rp->rp_buflen);
3939 if (!p) {
3940 WARN_ON_ONCE(1);
3941 return;
3942 }
J. Bruce Fieldsc373b0a2014-03-22 17:09:18 -04003943 *p++ = cpu_to_be32(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 *p++ = rp->rp_status; /* already xdr'ed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
J. Bruce Fields0c0c2672014-03-22 18:43:16 -04003946 p = xdr_encode_opaque_fixed(p, rp->rp_buf, rp->rp_buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947}
3948
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949int
Al Viro2ebbc012006-10-19 23:28:58 -07003950nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951{
3952 return xdr_ressize_check(rqstp, p);
3953}
3954
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003955int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003957 struct svc_rqst *rqstp = rq;
3958 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3959
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 if (args->ops != args->iops) {
3961 kfree(args->ops);
3962 args->ops = args->iops;
3963 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003964 kfree(args->tmpp);
3965 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 while (args->to_free) {
3967 struct tmpbuf *tb = args->to_free;
3968 args->to_free = tb->next;
3969 tb->release(tb->buf);
3970 kfree(tb);
3971 }
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003972 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973}
3974
3975int
Al Viro2ebbc012006-10-19 23:28:58 -07003976nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977{
Jeff Laytone874f9f2014-03-10 11:34:55 -04003978 if (rqstp->rq_arg.head[0].iov_len % 4) {
3979 /* client is nuts */
3980 dprintk("%s: compound not properly padded! (peeraddr=%pISc xid=0x%x)",
3981 __func__, svc_addr(rqstp), be32_to_cpu(rqstp->rq_xid));
3982 return 0;
3983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 args->p = p;
3985 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3986 args->pagelist = rqstp->rq_arg.pages;
3987 args->pagelen = rqstp->rq_arg.page_len;
3988 args->tmpp = NULL;
3989 args->to_free = NULL;
3990 args->ops = args->iops;
3991 args->rqstp = rqstp;
3992
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003993 return !nfsd4_decode_compound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994}
3995
3996int
Al Viro2ebbc012006-10-19 23:28:58 -07003997nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998{
3999 /*
4000 * All that remains is to write the tag and operation count...
4001 */
Andy Adamson557ce262009-08-28 08:45:04 -04004002 struct nfsd4_compound_state *cs = &resp->cstate;
J. Bruce Fields6ac90392014-02-26 17:39:35 -05004003 struct xdr_buf *buf = resp->xdr.buf;
4004
4005 WARN_ON_ONCE(buf->len != buf->head[0].iov_len + buf->page_len +
4006 buf->tail[0].iov_len);
J. Bruce Fieldsdd97fdd2014-02-26 17:16:27 -05004007
J. Bruce Fields2825a7f2013-08-26 16:04:46 -04004008 rqstp->rq_next_page = resp->xdr.page_ptr + 1;
4009
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 p = resp->tagp;
4011 *p++ = htonl(resp->taglen);
4012 memcpy(p, resp->tag, resp->taglen);
4013 p += XDR_QUADLEN(resp->taglen);
4014 *p++ = htonl(resp->opcnt);
4015
J. Bruce Fields26c0c752010-04-24 15:35:43 -04004016 if (nfsd4_has_session(cs)) {
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04004017 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
4018 struct nfs4_client *clp = cs->session->se_client;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04004019 if (cs->status != nfserr_replay_cache) {
4020 nfsd4_store_cache_entry(resp);
J. Bruce Fields73e79482012-02-13 16:39:00 -05004021 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04004022 }
Benny Halevyd7682982010-05-12 00:13:54 +03004023 /* Renew the clientid on success and on replay */
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04004024 spin_lock(&nn->client_lock);
J. Bruce Fields221a6872013-04-01 22:23:49 -04004025 nfsd4_put_session(cs->session);
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04004026 spin_unlock(&nn->client_lock);
4027 put_client_renew(clp);
Andy Adamsonda3846a2009-04-03 08:28:22 +03004028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 return 1;
4030}
4031
4032/*
4033 * Local variables:
4034 * c-basic-offset: 8
4035 * End:
4036 */