blob: 911372590ae140abd05cc8de3bf0aabbb4fd408b [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));
1036 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
1037 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
J. Bruce Fields6ff40de2013-11-05 15:07:16 -05001608/*
1609 * Return a rough estimate of the maximum possible reply size. Note the
1610 * estimate includes rpc headers so is meant to be passed to
1611 * svc_reserve, not svc_reserve_auth.
1612 *
1613 * Also note the current compound encoding permits only one operation to
1614 * use pages beyond the first one, so the maximum possible length is the
1615 * maximum over these values, not the sum.
1616 */
1617static int nfsd4_max_reply(u32 opnum)
1618{
1619 switch (opnum) {
1620 case OP_READLINK:
1621 case OP_READDIR:
1622 /*
1623 * Both of these ops take a single page for data and put
1624 * the head and tail in another page:
1625 */
1626 return 2 * PAGE_SIZE;
1627 case OP_READ:
1628 return INT_MAX;
1629 default:
1630 return PAGE_SIZE;
1631 }
1632}
1633
Benny Halevy347e0ad2008-07-02 11:13:41 +03001634static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1636{
1637 DECODE_HEAD;
1638 struct nfsd4_op *op;
J. Bruce Fields10910062011-01-24 12:11:02 -05001639 bool cachethis = false;
J. Bruce Fields6ff40de2013-11-05 15:07:16 -05001640 int max_reply = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 int i;
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 READ_BUF(4);
1644 READ32(argp->taglen);
1645 READ_BUF(argp->taglen + 8);
1646 SAVEMEM(argp->tag, argp->taglen);
1647 READ32(argp->minorversion);
1648 READ32(argp->opcnt);
1649
1650 if (argp->taglen > NFSD4_MAX_TAGLEN)
1651 goto xdr_error;
1652 if (argp->opcnt > 100)
1653 goto xdr_error;
1654
Tobias Klausere8c96f82006-03-24 03:15:34 -08001655 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1657 if (!argp->ops) {
1658 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001659 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 goto xdr_error;
1661 }
1662 }
1663
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001664 if (argp->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
Benny Halevy30cff1f2008-07-02 11:13:18 +03001665 argp->opcnt = 0;
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 for (i = 0; i < argp->opcnt; i++) {
1668 op = &argp->ops[i];
1669 op->replay = NULL;
1670
J. Bruce Fields8a61b182012-11-16 22:28:38 -05001671 READ_BUF(4);
1672 READ32(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Anna Schumakere1a90eb2013-10-30 10:00:20 -04001674 if (nfsd4_opnum_in_range(argp, op))
1675 op->status = nfsd4_dec_ops[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001676 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 op->opnum = OP_ILLEGAL;
1678 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001680 /*
1681 * We'll try to cache the result in the DRC if any one
1682 * op in the compound wants to be cached:
1683 */
1684 cachethis |= nfsd4_cache_this_op(op);
J. Bruce Fields6ff40de2013-11-05 15:07:16 -05001685
1686 max_reply = max(max_reply, nfsd4_max_reply(op->opnum));
J. Bruce Fieldse372ba62014-05-19 12:27:11 -04001687
1688 if (op->status) {
1689 argp->opcnt = i+1;
1690 break;
1691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001693 /* Sessions make the DRC unnecessary: */
1694 if (argp->minorversion)
1695 cachethis = false;
J. Bruce Fields6ff40de2013-11-05 15:07:16 -05001696 if (max_reply != INT_MAX)
1697 svc_reserve(argp->rqstp, max_reply);
J. Bruce Fields10910062011-01-24 12:11:02 -05001698 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 DECODE_TAIL;
1701}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703#define WRITE32(n) *p++ = htonl(n)
1704#define WRITE64(n) do { \
1705 *p++ = htonl((u32)((n) >> 32)); \
1706 *p++ = htonl((u32)(n)); \
1707} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001708#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1710 memcpy(p, ptr, nbytes); \
1711 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001712}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001713
1714static void write32(__be32 **p, u32 n)
1715{
J. Bruce Fields45eaa1c2012-04-25 18:11:04 -04001716 *(*p)++ = htonl(n);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001717}
1718
1719static void write64(__be32 **p, u64 n)
1720{
J. Bruce Fields45eaa1c2012-04-25 18:11:04 -04001721 write32(p, (n >> 32));
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001722 write32(p, (u32)n);
1723}
1724
1725static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1726{
1727 if (IS_I_VERSION(inode)) {
1728 write64(p, inode->i_version);
1729 } else {
1730 write32(p, stat->ctime.tv_sec);
1731 write32(p, stat->ctime.tv_nsec);
1732 }
1733}
1734
1735static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1736{
1737 write32(p, c->atomic);
1738 if (c->change_supported) {
1739 write64(p, c->before_change);
1740 write64(p, c->after_change);
1741 } else {
1742 write32(p, c->before_ctime_sec);
1743 write32(p, c->before_ctime_nsec);
1744 write32(p, c->after_ctime_sec);
1745 write32(p, c->after_ctime_nsec);
1746 }
1747}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749#define RESERVE_SPACE(nbytes) do { \
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05001750 p = resp->xdr.p; \
1751 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->xdr.end); \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752} while (0)
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05001753#define ADJUST_ARGS() resp->xdr.p = p
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001755/* Encode as an array of strings the string given with components
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001756 * separated @sep, escaped with esc_enter and esc_exit.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001757 */
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001758static __be32 nfsd4_encode_components_esc(char sep, char *components,
1759 __be32 **pp, int *buflen,
1760 char esc_enter, char esc_exit)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001761{
Al Viro2ebbc012006-10-19 23:28:58 -07001762 __be32 *p = *pp;
1763 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001764 int strlen, count=0;
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001765 char *str, *end, *next;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001766
1767 dprintk("nfsd4_encode_components(%s)\n", components);
1768 if ((*buflen -= 4) < 0)
1769 return nfserr_resource;
1770 WRITE32(0); /* We will fill this in with @count later */
1771 end = str = components;
1772 while (*end) {
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001773 bool found_esc = false;
1774
1775 /* try to parse as esc_start, ..., esc_end, sep */
1776 if (*str == esc_enter) {
1777 for (; *end && (*end != esc_exit); end++)
1778 /* find esc_exit or end of string */;
1779 next = end + 1;
1780 if (*end && (!*next || *next == sep)) {
1781 str++;
1782 found_esc = true;
1783 }
1784 }
1785
1786 if (!found_esc)
1787 for (; *end && (*end != sep); end++)
1788 /* find sep or end of string */;
1789
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001790 strlen = end - str;
1791 if (strlen) {
1792 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1793 return nfserr_resource;
1794 WRITE32(strlen);
1795 WRITEMEM(str, strlen);
1796 count++;
1797 }
1798 else
1799 end++;
1800 str = end;
1801 }
1802 *pp = p;
1803 p = countp;
1804 WRITE32(count);
1805 return 0;
1806}
1807
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001808/* Encode as an array of strings the string given with components
1809 * separated @sep.
1810 */
1811static __be32 nfsd4_encode_components(char sep, char *components,
1812 __be32 **pp, int *buflen)
1813{
1814 return nfsd4_encode_components_esc(sep, components, pp, buflen, 0, 0);
1815}
1816
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001817/*
1818 * encode a location element of a fs_locations structure
1819 */
Al Virob37ad282006-10-19 23:28:59 -07001820static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001821 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001822{
Al Virob37ad282006-10-19 23:28:59 -07001823 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001824 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001825
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001826 status = nfsd4_encode_components_esc(':', location->hosts, &p, buflen,
1827 '[', ']');
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001828 if (status)
1829 return status;
1830 status = nfsd4_encode_components('/', location->path, &p, buflen);
1831 if (status)
1832 return status;
1833 *pp = p;
1834 return 0;
1835}
1836
1837/*
Trond Myklebusted748aa2011-09-12 19:37:06 -04001838 * Encode a path in RFC3530 'pathname4' format
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001839 */
Trond Myklebusted748aa2011-09-12 19:37:06 -04001840static __be32 nfsd4_encode_path(const struct path *root,
1841 const struct path *path, __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001842{
Al Viro301f0262013-09-01 16:06:39 -04001843 struct path cur = *path;
Trond Myklebusted748aa2011-09-12 19:37:06 -04001844 __be32 *p = *pp;
1845 struct dentry **components = NULL;
1846 unsigned int ncomponents = 0;
1847 __be32 err = nfserr_jukebox;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001848
Trond Myklebusted748aa2011-09-12 19:37:06 -04001849 dprintk("nfsd4_encode_components(");
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001850
Trond Myklebusted748aa2011-09-12 19:37:06 -04001851 path_get(&cur);
1852 /* First walk the path up to the nfsd root, and store the
1853 * dentries/path components in an array.
1854 */
1855 for (;;) {
1856 if (cur.dentry == root->dentry && cur.mnt == root->mnt)
1857 break;
1858 if (cur.dentry == cur.mnt->mnt_root) {
1859 if (follow_up(&cur))
1860 continue;
1861 goto out_free;
1862 }
1863 if ((ncomponents & 15) == 0) {
1864 struct dentry **new;
1865 new = krealloc(components,
1866 sizeof(*new) * (ncomponents + 16),
1867 GFP_KERNEL);
1868 if (!new)
1869 goto out_free;
1870 components = new;
1871 }
1872 components[ncomponents++] = cur.dentry;
1873 cur.dentry = dget_parent(cur.dentry);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001874 }
Trond Myklebusted748aa2011-09-12 19:37:06 -04001875
1876 *buflen -= 4;
1877 if (*buflen < 0)
1878 goto out_free;
1879 WRITE32(ncomponents);
1880
1881 while (ncomponents) {
1882 struct dentry *dentry = components[ncomponents - 1];
Al Viro301f0262013-09-01 16:06:39 -04001883 unsigned int len;
Trond Myklebusted748aa2011-09-12 19:37:06 -04001884
Al Viro301f0262013-09-01 16:06:39 -04001885 spin_lock(&dentry->d_lock);
1886 len = dentry->d_name.len;
Trond Myklebusted748aa2011-09-12 19:37:06 -04001887 *buflen -= 4 + (XDR_QUADLEN(len) << 2);
Al Viro301f0262013-09-01 16:06:39 -04001888 if (*buflen < 0) {
1889 spin_unlock(&dentry->d_lock);
Trond Myklebusted748aa2011-09-12 19:37:06 -04001890 goto out_free;
Al Viro301f0262013-09-01 16:06:39 -04001891 }
Trond Myklebusted748aa2011-09-12 19:37:06 -04001892 WRITE32(len);
1893 WRITEMEM(dentry->d_name.name, len);
1894 dprintk("/%s", dentry->d_name.name);
Al Viro301f0262013-09-01 16:06:39 -04001895 spin_unlock(&dentry->d_lock);
Trond Myklebusted748aa2011-09-12 19:37:06 -04001896 dput(dentry);
1897 ncomponents--;
1898 }
1899
1900 *pp = p;
1901 err = 0;
1902out_free:
1903 dprintk(")\n");
1904 while (ncomponents)
1905 dput(components[--ncomponents]);
1906 kfree(components);
1907 path_put(&cur);
1908 return err;
1909}
1910
1911static __be32 nfsd4_encode_fsloc_fsroot(struct svc_rqst *rqstp,
1912 const struct path *path, __be32 **pp, int *buflen)
1913{
1914 struct svc_export *exp_ps;
1915 __be32 res;
1916
1917 exp_ps = rqst_find_fsidzero_export(rqstp);
1918 if (IS_ERR(exp_ps))
1919 return nfserrno(PTR_ERR(exp_ps));
1920 res = nfsd4_encode_path(&exp_ps->ex_path, path, pp, buflen);
1921 exp_put(exp_ps);
1922 return res;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001923}
1924
1925/*
1926 * encode a fs_locations structure
1927 */
Al Virob37ad282006-10-19 23:28:59 -07001928static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001929 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001930 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001931{
Al Virob37ad282006-10-19 23:28:59 -07001932 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001933 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001934 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001935 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001936
Trond Myklebusted748aa2011-09-12 19:37:06 -04001937 status = nfsd4_encode_fsloc_fsroot(rqstp, &exp->ex_path, &p, buflen);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001938 if (status)
1939 return status;
1940 if ((*buflen -= 4) < 0)
1941 return nfserr_resource;
1942 WRITE32(fslocs->locations_count);
1943 for (i=0; i<fslocs->locations_count; i++) {
1944 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1945 &p, buflen);
1946 if (status)
1947 return status;
1948 }
1949 *pp = p;
1950 return 0;
1951}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04001953static u32 nfs4_file_type(umode_t mode)
1954{
1955 switch (mode & S_IFMT) {
1956 case S_IFIFO: return NF4FIFO;
1957 case S_IFCHR: return NF4CHR;
1958 case S_IFDIR: return NF4DIR;
1959 case S_IFBLK: return NF4BLK;
1960 case S_IFLNK: return NF4LNK;
1961 case S_IFREG: return NF4REG;
1962 case S_IFSOCK: return NF4SOCK;
1963 default: return NF4BAD;
1964 };
1965}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Al Virob37ad282006-10-19 23:28:59 -07001967static inline __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001968nfsd4_encode_aclname(struct svc_rqst *rqstp, struct nfs4_ace *ace,
Al Viro2ebbc012006-10-19 23:28:58 -07001969 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
J. Bruce Fields35541162014-01-08 09:49:01 -05001971 if (ace->whotype != NFS4_ACL_WHO_NAMED)
1972 return nfs4_acl_write_who(ace->whotype, p, buflen);
1973 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
1974 return nfsd4_encode_group(rqstp, ace->who_gid, p, buflen);
1975 else
1976 return nfsd4_encode_user(rqstp, ace->who_uid, p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001979#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1980 FATTR4_WORD0_RDATTR_ERROR)
1981#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1982
David Quigley18032ca2013-05-02 13:19:10 -04001983#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
1984static inline __be32
1985nfsd4_encode_security_label(struct svc_rqst *rqstp, void *context, int len, __be32 **pp, int *buflen)
1986{
1987 __be32 *p = *pp;
1988
1989 if (*buflen < ((XDR_QUADLEN(len) << 2) + 4 + 4 + 4))
1990 return nfserr_resource;
1991
1992 /*
1993 * For now we use a 0 here to indicate the null translation; in
1994 * the future we may place a call to translation code here.
1995 */
1996 if ((*buflen -= 8) < 0)
1997 return nfserr_resource;
1998
1999 WRITE32(0); /* lfs */
2000 WRITE32(0); /* pi */
2001 p = xdr_encode_opaque(p, context, len);
2002 *buflen -= (XDR_QUADLEN(len) << 2) + 4;
2003
2004 *pp = p;
2005 return 0;
2006}
2007#else
2008static inline __be32
J. Bruce Fieldsba4e55b2013-05-15 10:27:52 -04002009nfsd4_encode_security_label(struct svc_rqst *rqstp, void *context, int len, __be32 **pp, int *buflen)
David Quigley18032ca2013-05-02 13:19:10 -04002010{ return 0; }
2011#endif
2012
Al Virob37ad282006-10-19 23:28:59 -07002013static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002014{
2015 /* As per referral draft: */
2016 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
2017 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
2018 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
2019 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
2020 *rdattr_err = NFSERR_MOVED;
2021 else
2022 return nfserr_moved;
2023 }
2024 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
2025 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
2026 return 0;
2027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002029
2030static int get_parent_attributes(struct svc_export *exp, struct kstat *stat)
2031{
2032 struct path path = exp->ex_path;
2033 int err;
2034
2035 path_get(&path);
2036 while (follow_up(&path)) {
2037 if (path.dentry != path.mnt->mnt_root)
2038 break;
2039 }
Al Viro3dadecc2013-01-24 02:18:08 -05002040 err = vfs_getattr(&path, stat);
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002041 path_put(&path);
2042 return err;
2043}
2044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045/*
2046 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2047 * ourselves.
2048 *
J. Bruce Fields84822d02012-12-14 17:57:50 -05002049 * countp is the buffer size in _words_
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 */
Al Virob37ad282006-10-19 23:28:59 -07002051__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
J. Bruce Fields84822d02012-12-14 17:57:50 -05002053 struct dentry *dentry, __be32 **buffer, int count, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002054 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
2056 u32 bmval0 = bmval[0];
2057 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03002058 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 struct kstat stat;
J. Bruce Fieldsd50e6132014-01-15 12:21:12 -05002060 struct svc_fh *tempfh = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 struct kstatfs statfs;
J. Bruce Fields84822d02012-12-14 17:57:50 -05002062 int buflen = count << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07002063 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 u32 dummy;
2065 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002066 u32 rdattr_err = 0;
J. Bruce Fields84822d02012-12-14 17:57:50 -05002067 __be32 *p = *buffer;
Al Virob37ad282006-10-19 23:28:59 -07002068 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002069 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 int aclsupport = 0;
2071 struct nfs4_acl *acl = NULL;
David Quigley18032ca2013-05-02 13:19:10 -04002072 void *context = NULL;
2073 int contextlen;
2074 bool contextsupport = false;
Andy Adamson7e705702009-04-03 08:29:11 +03002075 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2076 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002077 struct path path = {
2078 .mnt = exp->ex_path.mnt,
2079 .dentry = dentry,
2080 };
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03002081 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03002084 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
2085 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
2086 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002088 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03002089 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002090 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
2091 if (status)
2092 goto out;
2093 }
2094
Al Viro3dadecc2013-01-24 02:18:08 -05002095 err = vfs_getattr(&path, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07002096 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002098 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
2099 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
2101 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002102 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07002103 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 goto out_nfserr;
2105 }
2106 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
J. Bruce Fieldsd50e6132014-01-15 12:21:12 -05002107 tempfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
2108 status = nfserr_jukebox;
2109 if (!tempfh)
2110 goto out;
2111 fh_init(tempfh, NFS4_FHSIZE);
2112 status = fh_compose(tempfh, exp, dentry, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 if (status)
2114 goto out;
J. Bruce Fieldsd50e6132014-01-15 12:21:12 -05002115 fhp = tempfh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
2118 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07002119 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
2120 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07002122 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07002124 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 status = nfserr_attrnotsupp;
2126 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07002127 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 goto out_nfserr;
2129 }
2130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
David Quigley18032ca2013-05-02 13:19:10 -04002132#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2133 if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) ||
2134 bmval[0] & FATTR4_WORD0_SUPPORTED_ATTRS) {
2135 err = security_inode_getsecctx(dentry->d_inode,
2136 &context, &contextlen);
2137 contextsupport = (err == 0);
2138 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
2139 if (err == -EOPNOTSUPP)
2140 bmval2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2141 else if (err)
2142 goto out_nfserr;
2143 }
2144 }
2145#endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2146
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002147 if (bmval2) {
2148 if ((buflen -= 16) < 0)
2149 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002150 WRITE32(3);
2151 WRITE32(bmval0);
2152 WRITE32(bmval1);
2153 WRITE32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002154 } else if (bmval1) {
2155 if ((buflen -= 12) < 0)
2156 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002157 WRITE32(2);
2158 WRITE32(bmval0);
2159 WRITE32(bmval1);
2160 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002161 if ((buflen -= 8) < 0)
2162 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002163 WRITE32(1);
2164 WRITE32(bmval0);
2165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 attrlenp = p++; /* to be backfilled later */
2167
2168 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03002169 u32 word0 = nfsd_suppattrs0(minorversion);
2170 u32 word1 = nfsd_suppattrs1(minorversion);
2171 u32 word2 = nfsd_suppattrs2(minorversion);
2172
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002173 if (!aclsupport)
2174 word0 &= ~FATTR4_WORD0_ACL;
David Quigley18032ca2013-05-02 13:19:10 -04002175 if (!contextsupport)
2176 word2 &= ~FATTR4_WORD2_SECURITY_LABEL;
Andy Adamson7e705702009-04-03 08:29:11 +03002177 if (!word2) {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002178 if ((buflen -= 12) < 0)
2179 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002180 WRITE32(2);
2181 WRITE32(word0);
2182 WRITE32(word1);
2183 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002184 if ((buflen -= 16) < 0)
2185 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002186 WRITE32(3);
2187 WRITE32(word0);
2188 WRITE32(word1);
2189 WRITE32(word2);
2190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 }
2192 if (bmval0 & FATTR4_WORD0_TYPE) {
2193 if ((buflen -= 4) < 0)
2194 goto out_resource;
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002195 dummy = nfs4_file_type(stat.mode);
J. Bruce Fields6b6d81372013-01-16 17:11:11 -05002196 if (dummy == NF4BAD) {
2197 status = nfserr_serverfault;
2198 goto out;
2199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 WRITE32(dummy);
2201 }
2202 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
2203 if ((buflen -= 4) < 0)
2204 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07002205 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07002206 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07002207 else
NeilBrowne34ac862005-07-07 17:59:30 -07002208 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 }
2210 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if ((buflen -= 8) < 0)
2212 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002213 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
2215 if (bmval0 & FATTR4_WORD0_SIZE) {
2216 if ((buflen -= 8) < 0)
2217 goto out_resource;
2218 WRITE64(stat.size);
2219 }
2220 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
2221 if ((buflen -= 4) < 0)
2222 goto out_resource;
2223 WRITE32(1);
2224 }
2225 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
2226 if ((buflen -= 4) < 0)
2227 goto out_resource;
2228 WRITE32(1);
2229 }
2230 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
2231 if ((buflen -= 4) < 0)
2232 goto out_resource;
2233 WRITE32(0);
2234 }
2235 if (bmval0 & FATTR4_WORD0_FSID) {
2236 if ((buflen -= 16) < 0)
2237 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002238 if (exp->ex_fslocs.migrated) {
2239 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
2240 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002241 } else switch(fsid_source(fhp)) {
2242 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 WRITE64((u64)exp->ex_fsid);
2244 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002245 break;
2246 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 WRITE32(0);
2248 WRITE32(MAJOR(stat.dev));
2249 WRITE32(0);
2250 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08002251 break;
2252 case FSIDSOURCE_UUID:
2253 WRITEMEM(exp->ex_uuid, 16);
2254 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
2256 }
2257 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
2258 if ((buflen -= 4) < 0)
2259 goto out_resource;
2260 WRITE32(0);
2261 }
2262 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
2263 if ((buflen -= 4) < 0)
2264 goto out_resource;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03002265 WRITE32(nn->nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 }
2267 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
2268 if ((buflen -= 4) < 0)
2269 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002270 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
2272 if (bmval0 & FATTR4_WORD0_ACL) {
2273 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 if (acl == NULL) {
2276 if ((buflen -= 4) < 0)
2277 goto out_resource;
2278
2279 WRITE32(0);
2280 goto out_acl;
2281 }
2282 if ((buflen -= 4) < 0)
2283 goto out_resource;
2284 WRITE32(acl->naces);
2285
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002286 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if ((buflen -= 4*3) < 0)
2288 goto out_resource;
2289 WRITE32(ace->type);
2290 WRITE32(ace->flag);
2291 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08002292 status = nfsd4_encode_aclname(rqstp, ace, &p, &buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 if (status)
2294 goto out;
2295 }
2296 }
2297out_acl:
2298 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
2299 if ((buflen -= 4) < 0)
2300 goto out_resource;
2301 WRITE32(aclsupport ?
2302 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
2303 }
2304 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
2305 if ((buflen -= 4) < 0)
2306 goto out_resource;
2307 WRITE32(1);
2308 }
2309 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
2310 if ((buflen -= 4) < 0)
2311 goto out_resource;
J. Bruce Fields2930d382012-06-05 16:52:06 -04002312 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
2314 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
2315 if ((buflen -= 4) < 0)
2316 goto out_resource;
2317 WRITE32(1);
2318 }
2319 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2320 if ((buflen -= 4) < 0)
2321 goto out_resource;
2322 WRITE32(1);
2323 }
2324 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2325 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2326 if (buflen < 0)
2327 goto out_resource;
2328 WRITE32(fhp->fh_handle.fh_size);
2329 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2330 }
2331 if (bmval0 & FATTR4_WORD0_FILEID) {
2332 if ((buflen -= 8) < 0)
2333 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002334 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 }
2336 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2337 if ((buflen -= 8) < 0)
2338 goto out_resource;
2339 WRITE64((u64) statfs.f_ffree);
2340 }
2341 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2342 if ((buflen -= 8) < 0)
2343 goto out_resource;
2344 WRITE64((u64) statfs.f_ffree);
2345 }
2346 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2347 if ((buflen -= 8) < 0)
2348 goto out_resource;
2349 WRITE64((u64) statfs.f_files);
2350 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002351 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2352 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002353 if (status)
2354 goto out;
2355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2357 if ((buflen -= 4) < 0)
2358 goto out_resource;
2359 WRITE32(1);
2360 }
2361 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2362 if ((buflen -= 8) < 0)
2363 goto out_resource;
Christoph Hellwigaea240f2013-11-14 05:50:10 -08002364 WRITE64(exp->ex_path.mnt->mnt_sb->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
2366 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2367 if ((buflen -= 4) < 0)
2368 goto out_resource;
2369 WRITE32(255);
2370 }
2371 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2372 if ((buflen -= 4) < 0)
2373 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002374 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
2376 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2377 if ((buflen -= 8) < 0)
2378 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002379 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
2381 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2382 if ((buflen -= 8) < 0)
2383 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002384 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 }
2386 if (bmval1 & FATTR4_WORD1_MODE) {
2387 if ((buflen -= 4) < 0)
2388 goto out_resource;
2389 WRITE32(stat.mode & S_IALLUGO);
2390 }
2391 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2392 if ((buflen -= 4) < 0)
2393 goto out_resource;
2394 WRITE32(1);
2395 }
2396 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2397 if ((buflen -= 4) < 0)
2398 goto out_resource;
2399 WRITE32(stat.nlink);
2400 }
2401 if (bmval1 & FATTR4_WORD1_OWNER) {
2402 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 if (status)
2404 goto out;
2405 }
2406 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2407 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 if (status)
2409 goto out;
2410 }
2411 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2412 if ((buflen -= 8) < 0)
2413 goto out_resource;
2414 WRITE32((u32) MAJOR(stat.rdev));
2415 WRITE32((u32) MINOR(stat.rdev));
2416 }
2417 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2418 if ((buflen -= 8) < 0)
2419 goto out_resource;
2420 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2421 WRITE64(dummy64);
2422 }
2423 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2424 if ((buflen -= 8) < 0)
2425 goto out_resource;
2426 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2427 WRITE64(dummy64);
2428 }
2429 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2430 if ((buflen -= 8) < 0)
2431 goto out_resource;
2432 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2433 WRITE64(dummy64);
2434 }
2435 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2436 if ((buflen -= 8) < 0)
2437 goto out_resource;
2438 dummy64 = (u64)stat.blocks << 9;
2439 WRITE64(dummy64);
2440 }
2441 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2442 if ((buflen -= 12) < 0)
2443 goto out_resource;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -04002444 WRITE64((s64)stat.atime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 WRITE32(stat.atime.tv_nsec);
2446 }
2447 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2448 if ((buflen -= 12) < 0)
2449 goto out_resource;
2450 WRITE32(0);
2451 WRITE32(1);
2452 WRITE32(0);
2453 }
2454 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2455 if ((buflen -= 12) < 0)
2456 goto out_resource;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -04002457 WRITE64((s64)stat.ctime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 WRITE32(stat.ctime.tv_nsec);
2459 }
2460 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2461 if ((buflen -= 12) < 0)
2462 goto out_resource;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -04002463 WRITE64((s64)stat.mtime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 WRITE32(stat.mtime.tv_nsec);
2465 }
2466 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 if ((buflen -= 8) < 0)
2468 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002469 /*
2470 * Get parent's attributes if not ignoring crossmount
2471 * and this is the root of a cross-mounted filesystem.
2472 */
2473 if (ignore_crossmnt == 0 &&
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002474 dentry == exp->ex_path.mnt->mnt_root)
2475 get_parent_attributes(exp, &stat);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002476 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 }
David Quigley18032ca2013-05-02 13:19:10 -04002478 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
2479 status = nfsd4_encode_security_label(rqstp, context,
2480 contextlen, &p, &buflen);
2481 if (status)
2482 goto out;
2483 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002484 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
J. Bruce Fieldsde3997a2014-01-28 16:05:15 -05002485 if ((buflen -= 16) < 0)
2486 goto out_resource;
Benny Halevy8c18f202009-04-03 08:29:14 +03002487 WRITE32(3);
2488 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2489 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2490 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2491 }
Andy Adamson7e705702009-04-03 08:29:11 +03002492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
J. Bruce Fields84822d02012-12-14 17:57:50 -05002494 *buffer = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 status = nfs_ok;
2496
2497out:
J. Bruce Fieldsba4e55b2013-05-15 10:27:52 -04002498#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
David Quigley18032ca2013-05-02 13:19:10 -04002499 if (context)
2500 security_release_secctx(context, contextlen);
J. Bruce Fieldsba4e55b2013-05-15 10:27:52 -04002501#endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002502 kfree(acl);
Yan, Zheng18df11d02014-03-10 12:52:07 +08002503 if (tempfh) {
J. Bruce Fieldsd50e6132014-01-15 12:21:12 -05002504 fh_put(tempfh);
Yan, Zheng18df11d02014-03-10 12:52:07 +08002505 kfree(tempfh);
2506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return status;
2508out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002509 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 goto out;
2511out_resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 status = nfserr_resource;
2513 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
2515
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002516static inline int attributes_need_mount(u32 *bmval)
2517{
2518 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2519 return 1;
2520 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2521 return 1;
2522 return 0;
2523}
2524
Al Virob37ad282006-10-19 23:28:59 -07002525static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
J. Bruce Fields84822d02012-12-14 17:57:50 -05002527 const char *name, int namlen, __be32 **p, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528{
2529 struct svc_export *exp = cd->rd_fhp->fh_export;
2530 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002531 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002532 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2535 if (IS_ERR(dentry))
2536 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002537 if (!dentry->d_inode) {
2538 /*
2539 * nfsd_buffered_readdir drops the i_mutex between
2540 * readdir and calling this callback, leaving a window
2541 * where this directory entry could have gone away.
2542 */
2543 dput(dentry);
2544 return nfserr_noent;
2545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002548 /*
2549 * In the case of a mountpoint, the client may be asking for
2550 * attributes that are only properties of the underlying filesystem
2551 * as opposed to the cross-mounted file system. In such a case,
2552 * we will not follow the cross mount and will fill the attribtutes
2553 * directly from the mountpoint dentry.
2554 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002555 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002556 int err;
2557
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002558 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2559 && !attributes_need_mount(cd->rd_bmval)) {
2560 ignore_crossmnt = 1;
2561 goto out_encode;
2562 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002563 /*
2564 * Why the heck aren't we just using nfsd_lookup??
2565 * Different "."/".." handling? Something else?
2566 * At least, add a comment here to explain....
2567 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002568 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2569 if (err) {
2570 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 goto out_put;
2572 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002573 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2574 if (nfserr)
2575 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
2577 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002578out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002580 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581out_put:
2582 dput(dentry);
2583 exp_put(exp);
2584 return nfserr;
2585}
2586
Al Viro2ebbc012006-10-19 23:28:58 -07002587static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002588nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 if (buflen < 6)
2591 return NULL;
2592 *p++ = htonl(2);
2593 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2594 *p++ = htonl(0); /* bmval1 */
2595
J. Bruce Fields87915c62013-01-16 17:33:28 -05002596 *p++ = htonl(4); /* attribute length */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 *p++ = nfserr; /* no htonl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 return p;
2599}
2600
2601static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002602nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2603 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002605 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2607 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002608 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002609 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002610 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612 /* In nfsv4, "." and ".." never make it onto the wire.. */
2613 if (name && isdotent(name, namlen)) {
2614 cd->common.err = nfs_ok;
2615 return 0;
2616 }
2617
2618 if (cd->offset)
2619 xdr_encode_hyper(cd->offset, (u64) offset);
2620
2621 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2622 if (buflen < 0)
2623 goto fail;
2624
2625 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002626 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2628 p = xdr_encode_array(p, name, namlen); /* name length & name */
2629
J. Bruce Fields84822d02012-12-14 17:57:50 -05002630 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, &p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 switch (nfserr) {
2632 case nfs_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 break;
2634 case nfserr_resource:
2635 nfserr = nfserr_toosmall;
2636 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002637 case nfserr_noent:
2638 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 default:
2640 /*
2641 * If the client requested the RDATTR_ERROR attribute,
2642 * we stuff the error code into this attribute
2643 * and continue. If this attribute was not requested,
2644 * then in accordance with the spec, we fail the
2645 * entire READDIR operation(!)
2646 */
2647 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2648 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002650 if (p == NULL) {
2651 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 }
2655 cd->buflen -= (p - cd->buffer);
2656 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002657 cd->offset = cookiep;
2658skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 cd->common.err = nfs_ok;
2660 return 0;
2661fail:
2662 cd->common.err = nfserr;
2663 return -EINVAL;
2664}
2665
Benny Halevye2f282b2008-08-12 20:45:07 +03002666static void
2667nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2668{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002669 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002670
2671 RESERVE_SPACE(sizeof(stateid_t));
2672 WRITE32(sid->si_generation);
2673 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2674 ADJUST_ARGS();
2675}
2676
Benny Halevy695e12f2008-07-04 14:38:33 +03002677static __be32
Al Virob37ad282006-10-19 23:28:59 -07002678nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002680 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
2682 if (!nfserr) {
2683 RESERVE_SPACE(8);
2684 WRITE32(access->ac_supported);
2685 WRITE32(access->ac_resp_access);
2686 ADJUST_ARGS();
2687 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002688 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689}
2690
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002691static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
2692{
2693 __be32 *p;
2694
2695 if (!nfserr) {
2696 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 8);
2697 WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
2698 WRITE32(bcts->dir);
J. Bruce Fields6e67b5d2012-09-13 09:49:43 -04002699 /* Sorry, we do not yet support RDMA over 4.1: */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002700 WRITE32(0);
2701 ADJUST_ARGS();
2702 }
2703 return nfserr;
2704}
2705
Benny Halevy695e12f2008-07-04 14:38:33 +03002706static __be32
Al Virob37ad282006-10-19 23:28:59 -07002707nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708{
Benny Halevye2f282b2008-08-12 20:45:07 +03002709 if (!nfserr)
2710 nfsd4_encode_stateid(resp, &close->cl_stateid);
2711
Benny Halevy695e12f2008-07-04 14:38:33 +03002712 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713}
2714
2715
Benny Halevy695e12f2008-07-04 14:38:33 +03002716static __be32
Al Virob37ad282006-10-19 23:28:59 -07002717nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002719 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
2721 if (!nfserr) {
Chuck Leverab4684d2012-03-02 17:13:50 -05002722 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
2723 WRITEMEM(commit->co_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 ADJUST_ARGS();
2725 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002726 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727}
2728
Benny Halevy695e12f2008-07-04 14:38:33 +03002729static __be32
Al Virob37ad282006-10-19 23:28:59 -07002730nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002732 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
2734 if (!nfserr) {
2735 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002736 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 WRITE32(2);
2738 WRITE32(create->cr_bmval[0]);
2739 WRITE32(create->cr_bmval[1]);
2740 ADJUST_ARGS();
2741 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002742 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743}
2744
Al Virob37ad282006-10-19 23:28:59 -07002745static __be32
2746nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747{
2748 struct svc_fh *fhp = getattr->ga_fhp;
2749 int buflen;
2750
2751 if (nfserr)
2752 return nfserr;
2753
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05002754 buflen = resp->xdr.end - resp->xdr.p - (COMPOUND_ERR_SLACK_SPACE >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05002756 &resp->xdr.p, buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002757 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 return nfserr;
2759}
2760
Benny Halevy695e12f2008-07-04 14:38:33 +03002761static __be32
2762nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763{
Benny Halevy695e12f2008-07-04 14:38:33 +03002764 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002766 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 if (!nfserr) {
2769 len = fhp->fh_handle.fh_size;
2770 RESERVE_SPACE(len + 4);
2771 WRITE32(len);
2772 WRITEMEM(&fhp->fh_handle.fh_base, len);
2773 ADJUST_ARGS();
2774 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002775 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776}
2777
2778/*
2779* Including all fields other than the name, a LOCK4denied structure requires
2780* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2781*/
2782static void
2783nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2784{
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002785 struct xdr_netobj *conf = &ld->ld_owner;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002786 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002788 RESERVE_SPACE(32 + XDR_LEN(conf->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 WRITE64(ld->ld_start);
2790 WRITE64(ld->ld_length);
2791 WRITE32(ld->ld_type);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002792 if (conf->len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 WRITEMEM(&ld->ld_clientid, 8);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002794 WRITE32(conf->len);
2795 WRITEMEM(conf->data, conf->len);
2796 kfree(conf->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2798 WRITE64((u64)0); /* clientid */
2799 WRITE32(0); /* length of owner name */
2800 }
2801 ADJUST_ARGS();
2802}
2803
Benny Halevy695e12f2008-07-04 14:38:33 +03002804static __be32
Al Virob37ad282006-10-19 23:28:59 -07002805nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
Benny Halevye2f282b2008-08-12 20:45:07 +03002807 if (!nfserr)
2808 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2809 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2811
Benny Halevy695e12f2008-07-04 14:38:33 +03002812 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813}
2814
Benny Halevy695e12f2008-07-04 14:38:33 +03002815static __be32
Al Virob37ad282006-10-19 23:28:59 -07002816nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
2818 if (nfserr == nfserr_denied)
2819 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002820 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821}
2822
Benny Halevy695e12f2008-07-04 14:38:33 +03002823static __be32
Al Virob37ad282006-10-19 23:28:59 -07002824nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825{
Benny Halevye2f282b2008-08-12 20:45:07 +03002826 if (!nfserr)
2827 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2828
Benny Halevy695e12f2008-07-04 14:38:33 +03002829 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830}
2831
2832
Benny Halevy695e12f2008-07-04 14:38:33 +03002833static __be32
Al Virob37ad282006-10-19 23:28:59 -07002834nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002836 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838 if (!nfserr) {
2839 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002840 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 ADJUST_ARGS();
2842 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002843 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844}
2845
2846
Benny Halevy695e12f2008-07-04 14:38:33 +03002847static __be32
Al Virob37ad282006-10-19 23:28:59 -07002848nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002850 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 if (nfserr)
2853 goto out;
2854
Benny Halevye2f282b2008-08-12 20:45:07 +03002855 nfsd4_encode_stateid(resp, &open->op_stateid);
2856 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002857 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 WRITE32(open->op_rflags);
2859 WRITE32(2);
2860 WRITE32(open->op_bmval[0]);
2861 WRITE32(open->op_bmval[1]);
2862 WRITE32(open->op_delegate_type);
2863 ADJUST_ARGS();
2864
2865 switch (open->op_delegate_type) {
2866 case NFS4_OPEN_DELEGATE_NONE:
2867 break;
2868 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002869 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2870 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002871 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873 /*
2874 * TODO: ACE's in delegations
2875 */
2876 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2877 WRITE32(0);
2878 WRITE32(0);
2879 WRITE32(0); /* XXX: is NULL principal ok? */
2880 ADJUST_ARGS();
2881 break;
2882 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002883 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2884 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 WRITE32(0);
2886
2887 /*
2888 * TODO: space_limit's in delegations
2889 */
2890 WRITE32(NFS4_LIMIT_SIZE);
2891 WRITE32(~(u32)0);
2892 WRITE32(~(u32)0);
2893
2894 /*
2895 * TODO: ACE's in delegations
2896 */
2897 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2898 WRITE32(0);
2899 WRITE32(0);
2900 WRITE32(0); /* XXX: is NULL principal ok? */
2901 ADJUST_ARGS();
2902 break;
Benny Halevyd24433c2012-02-16 20:57:17 +02002903 case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */
2904 switch (open->op_why_no_deleg) {
2905 case WND4_CONTENTION:
2906 case WND4_RESOURCE:
2907 RESERVE_SPACE(8);
2908 WRITE32(open->op_why_no_deleg);
2909 WRITE32(0); /* deleg signaling not supported yet */
2910 break;
2911 default:
2912 RESERVE_SPACE(4);
2913 WRITE32(open->op_why_no_deleg);
2914 }
2915 ADJUST_ARGS();
2916 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 default:
2918 BUG();
2919 }
2920 /* XXX save filehandle here */
2921out:
Benny Halevy695e12f2008-07-04 14:38:33 +03002922 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923}
2924
Benny Halevy695e12f2008-07-04 14:38:33 +03002925static __be32
Al Virob37ad282006-10-19 23:28:59 -07002926nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
Benny Halevye2f282b2008-08-12 20:45:07 +03002928 if (!nfserr)
2929 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Benny Halevy695e12f2008-07-04 14:38:33 +03002931 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932}
2933
Benny Halevy695e12f2008-07-04 14:38:33 +03002934static __be32
Al Virob37ad282006-10-19 23:28:59 -07002935nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Benny Halevye2f282b2008-08-12 20:45:07 +03002937 if (!nfserr)
2938 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Benny Halevy695e12f2008-07-04 14:38:33 +03002940 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941}
2942
Al Virob37ad282006-10-19 23:28:59 -07002943static __be32
2944nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002945 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946{
2947 u32 eof;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002948 int v;
2949 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 unsigned long maxcount;
2951 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002952 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954 if (nfserr)
2955 return nfserr;
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05002956 if (resp->xdr.buf->page_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 return nfserr_resource;
2958
2959 RESERVE_SPACE(8); /* eof flag and byte count */
2960
Greg Banks7adae482006-10-04 02:15:47 -07002961 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 if (maxcount > read->rd_length)
2963 maxcount = read->rd_length;
2964
2965 len = maxcount;
2966 v = 0;
2967 while (len > 0) {
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002968 page = *(resp->rqstp->rq_next_page);
2969 if (!page) { /* ran out of pages */
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05002970 maxcount -= len;
2971 break;
2972 }
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002973 resp->rqstp->rq_vec[v].iov_base = page_address(page);
NeilBrown3cc03b12006-10-04 02:15:47 -07002974 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002975 len < PAGE_SIZE ? len : PAGE_SIZE;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002976 resp->rqstp->rq_next_page++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 v++;
2978 len -= PAGE_SIZE;
2979 }
2980 read->rd_vlen = v;
2981
J. Bruce Fields039a87c2010-07-30 11:33:32 -04002982 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002983 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 &maxcount);
2985
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 if (nfserr)
2987 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002988 eof = (read->rd_offset + maxcount >=
2989 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991 WRITE32(eof);
2992 WRITE32(maxcount);
2993 ADJUST_ARGS();
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05002994 resp->xdr.buf->head[0].iov_len = (char *)p
2995 - (char *)resp->xdr.buf->head[0].iov_base;
2996 resp->xdr.buf->page_len = maxcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
NeilBrown6ed6dec2006-04-10 22:55:32 -07002998 /* Use rest of head for padding and remaining ops: */
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05002999 resp->xdr.buf->tail[0].iov_base = p;
3000 resp->xdr.buf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07003002 RESERVE_SPACE(4);
3003 WRITE32(0);
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003004 resp->xdr.buf->tail[0].iov_base += maxcount&3;
3005 resp->xdr.buf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07003006 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 }
3008 return 0;
3009}
3010
Al Virob37ad282006-10-19 23:28:59 -07003011static __be32
3012nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013{
3014 int maxcount;
3015 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003016 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
3018 if (nfserr)
3019 return nfserr;
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003020 if (resp->xdr.buf->page_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 return nfserr_resource;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003022 if (!*resp->rqstp->rq_next_page)
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05003023 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003025 page = page_address(*(resp->rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
3027 maxcount = PAGE_SIZE;
3028 RESERVE_SPACE(4);
3029
3030 /*
3031 * XXX: By default, the ->readlink() VFS op will truncate symlinks
3032 * if they would overflow the buffer. Is this kosher in NFSv4? If
3033 * not, one easy fix is: if ->readlink() precisely fills the buffer,
3034 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
3035 */
3036 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
3037 if (nfserr == nfserr_isdir)
3038 return nfserr_inval;
3039 if (nfserr)
3040 return nfserr;
3041
3042 WRITE32(maxcount);
3043 ADJUST_ARGS();
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003044 resp->xdr.buf->head[0].iov_len = (char *)p
3045 - (char *)resp->xdr.buf->head[0].iov_base;
3046 resp->xdr.buf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07003047
3048 /* Use rest of head for padding and remaining ops: */
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003049 resp->xdr.buf->tail[0].iov_base = p;
3050 resp->xdr.buf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07003052 RESERVE_SPACE(4);
3053 WRITE32(0);
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003054 resp->xdr.buf->tail[0].iov_base += maxcount&3;
3055 resp->xdr.buf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07003056 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 }
3058 return 0;
3059}
3060
Al Virob37ad282006-10-19 23:28:59 -07003061static __be32
3062nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
3064 int maxcount;
3065 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07003066 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003067 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
3069 if (nfserr)
3070 return nfserr;
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003071 if (resp->xdr.buf->page_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 return nfserr_resource;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003073 if (!*resp->rqstp->rq_next_page)
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05003074 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
Chuck Leverab4684d2012-03-02 17:13:50 -05003076 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 savep = p;
3078
3079 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
3080 WRITE32(0);
3081 WRITE32(0);
3082 ADJUST_ARGS();
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003083 resp->xdr.buf->head[0].iov_len = ((char *)resp->xdr.p)
3084 - (char *)resp->xdr.buf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07003085 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086
3087 maxcount = PAGE_SIZE;
3088 if (maxcount > readdir->rd_maxcount)
3089 maxcount = readdir->rd_maxcount;
3090
3091 /*
3092 * Convert from bytes to words, account for the two words already
3093 * written, make sure to leave two words at the end for the next
3094 * pointer and eof field.
3095 */
3096 maxcount = (maxcount >> 2) - 4;
3097 if (maxcount < 0) {
3098 nfserr = nfserr_toosmall;
3099 goto err_no_verf;
3100 }
3101
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003102 page = page_address(*(resp->rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 readdir->common.err = 0;
3104 readdir->buflen = maxcount;
3105 readdir->buffer = page;
3106 readdir->offset = NULL;
3107
3108 offset = readdir->rd_cookie;
3109 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
3110 &offset,
3111 &readdir->common, nfsd4_encode_dirent);
3112 if (nfserr == nfs_ok &&
3113 readdir->common.err == nfserr_toosmall &&
3114 readdir->buffer == page)
3115 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 if (nfserr)
3117 goto err_no_verf;
3118
3119 if (readdir->offset)
3120 xdr_encode_hyper(readdir->offset, offset);
3121
3122 p = readdir->buffer;
3123 *p++ = 0; /* no more entries */
3124 *p++ = htonl(readdir->common.err == nfserr_eof);
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003125 resp->xdr.buf->page_len = ((char *)p) -
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003126 (char*)page_address(*(resp->rqstp->rq_next_page-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127
NeilBrownbb6e8a92006-04-10 22:55:33 -07003128 /* Use rest of head for padding and remaining ops: */
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003129 resp->xdr.buf->tail[0].iov_base = tailbase;
3130 resp->xdr.buf->tail[0].iov_len = 0;
3131 resp->xdr.p = resp->xdr.buf->tail[0].iov_base;
3132 resp->xdr.end = resp->xdr.p +
3133 (PAGE_SIZE - resp->xdr.buf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135 return 0;
3136err_no_verf:
3137 p = savep;
3138 ADJUST_ARGS();
3139 return nfserr;
3140}
3141
Benny Halevy695e12f2008-07-04 14:38:33 +03003142static __be32
Al Virob37ad282006-10-19 23:28:59 -07003143nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003145 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
3147 if (!nfserr) {
3148 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04003149 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 ADJUST_ARGS();
3151 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003152 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153}
3154
Benny Halevy695e12f2008-07-04 14:38:33 +03003155static __be32
Al Virob37ad282006-10-19 23:28:59 -07003156nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003158 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159
3160 if (!nfserr) {
3161 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04003162 write_cinfo(&p, &rename->rn_sinfo);
3163 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 ADJUST_ARGS();
3165 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003166 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167}
3168
Benny Halevy695e12f2008-07-04 14:38:33 +03003169static __be32
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003170nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
Chuck Levera77c8062013-03-16 15:55:10 -04003171 __be32 nfserr, struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07003172{
Chuck Lever676e4eb2013-04-30 18:48:54 -04003173 u32 i, nflavs, supported;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003174 struct exp_flavor_info *flavs;
3175 struct exp_flavor_info def_flavs[2];
Chuck Lever676e4eb2013-04-30 18:48:54 -04003176 __be32 *p, *flavorsp;
3177 static bool report = true;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003178
3179 if (nfserr)
3180 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003181 if (exp->ex_nflavors) {
3182 flavs = exp->ex_flavors;
3183 nflavs = exp->ex_nflavors;
3184 } else { /* Handling of some defaults in absence of real secinfo: */
3185 flavs = def_flavs;
3186 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
3187 nflavs = 2;
3188 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
3189 flavs[1].pseudoflavor = RPC_AUTH_NULL;
3190 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
3191 nflavs = 1;
3192 flavs[0].pseudoflavor
3193 = svcauth_gss_flavor(exp->ex_client);
3194 } else {
3195 nflavs = 1;
3196 flavs[0].pseudoflavor
3197 = exp->ex_client->flavour->flavour;
3198 }
3199 }
3200
Chuck Lever676e4eb2013-04-30 18:48:54 -04003201 supported = 0;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003202 RESERVE_SPACE(4);
Chuck Lever676e4eb2013-04-30 18:48:54 -04003203 flavorsp = p++; /* to be backfilled later */
Andy Adamsondcb488a32007-07-17 04:04:51 -07003204 ADJUST_ARGS();
Chuck Lever676e4eb2013-04-30 18:48:54 -04003205
J. Bruce Fields4796f452007-07-17 04:04:51 -07003206 for (i = 0; i < nflavs; i++) {
Chuck Lever676e4eb2013-04-30 18:48:54 -04003207 rpc_authflavor_t pf = flavs[i].pseudoflavor;
Chuck Levera77c8062013-03-16 15:55:10 -04003208 struct rpcsec_gss_info info;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003209
Chuck Lever676e4eb2013-04-30 18:48:54 -04003210 if (rpcauth_get_gssinfo(pf, &info) == 0) {
3211 supported++;
Kinglong Meea9f7b4a2013-12-09 19:31:21 +08003212 RESERVE_SPACE(4 + 4 + XDR_LEN(info.oid.len) + 4 + 4);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003213 WRITE32(RPC_AUTH_GSS);
Chuck Levera77c8062013-03-16 15:55:10 -04003214 WRITE32(info.oid.len);
3215 WRITEMEM(info.oid.data, info.oid.len);
Chuck Levera77c8062013-03-16 15:55:10 -04003216 WRITE32(info.qop);
Chuck Levera77c8062013-03-16 15:55:10 -04003217 WRITE32(info.service);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003218 ADJUST_ARGS();
Chuck Lever676e4eb2013-04-30 18:48:54 -04003219 } else if (pf < RPC_AUTH_MAXFLAVOR) {
3220 supported++;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003221 RESERVE_SPACE(4);
Chuck Lever676e4eb2013-04-30 18:48:54 -04003222 WRITE32(pf);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003223 ADJUST_ARGS();
Chuck Lever676e4eb2013-04-30 18:48:54 -04003224 } else {
3225 if (report)
3226 pr_warn("NFS: SECINFO: security flavor %u "
3227 "is not supported\n", pf);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003228 }
3229 }
Chuck Levera77c8062013-03-16 15:55:10 -04003230
Chuck Lever676e4eb2013-04-30 18:48:54 -04003231 if (nflavs != supported)
3232 report = false;
3233 *flavorsp = htonl(supported);
3234
Andy Adamsondcb488a32007-07-17 04:04:51 -07003235out:
3236 if (exp)
3237 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03003238 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003239}
3240
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003241static __be32
3242nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
3243 struct nfsd4_secinfo *secinfo)
3244{
3245 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
3246}
3247
3248static __be32
3249nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
3250 struct nfsd4_secinfo_no_name *secinfo)
3251{
3252 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
3253}
3254
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255/*
3256 * The SETATTR encode routine is special -- it always encodes a bitmap,
3257 * regardless of the error status.
3258 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003259static __be32
Al Virob37ad282006-10-19 23:28:59 -07003260nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003262 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
David Quigley18032ca2013-05-02 13:19:10 -04003264 RESERVE_SPACE(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 if (nfserr) {
David Quigley18032ca2013-05-02 13:19:10 -04003266 WRITE32(3);
3267 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 WRITE32(0);
3269 WRITE32(0);
3270 }
3271 else {
David Quigley18032ca2013-05-02 13:19:10 -04003272 WRITE32(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 WRITE32(setattr->sa_bmval[0]);
3274 WRITE32(setattr->sa_bmval[1]);
David Quigley18032ca2013-05-02 13:19:10 -04003275 WRITE32(setattr->sa_bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 }
3277 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03003278 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279}
3280
Benny Halevy695e12f2008-07-04 14:38:33 +03003281static __be32
Al Virob37ad282006-10-19 23:28:59 -07003282nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003284 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
3286 if (!nfserr) {
Chuck Leverab4684d2012-03-02 17:13:50 -05003287 RESERVE_SPACE(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 WRITEMEM(&scd->se_clientid, 8);
Chuck Leverab4684d2012-03-02 17:13:50 -05003289 WRITEMEM(&scd->se_confirm, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 ADJUST_ARGS();
3291 }
3292 else if (nfserr == nfserr_clid_inuse) {
3293 RESERVE_SPACE(8);
3294 WRITE32(0);
3295 WRITE32(0);
3296 ADJUST_ARGS();
3297 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003298 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299}
3300
Benny Halevy695e12f2008-07-04 14:38:33 +03003301static __be32
Al Virob37ad282006-10-19 23:28:59 -07003302nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003304 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
3306 if (!nfserr) {
3307 RESERVE_SPACE(16);
3308 WRITE32(write->wr_bytes_written);
3309 WRITE32(write->wr_how_written);
Chuck Leverab4684d2012-03-02 17:13:50 -05003310 WRITEMEM(write->wr_verifier.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 ADJUST_ARGS();
3312 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003313 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314}
3315
J. Bruce Fields57266a62013-04-13 14:27:29 -04003316static const u32 nfs4_minimal_spo_must_enforce[2] = {
3317 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
3318 1 << (OP_EXCHANGE_ID - 32) |
3319 1 << (OP_CREATE_SESSION - 32) |
3320 1 << (OP_DESTROY_SESSION - 32) |
3321 1 << (OP_DESTROY_CLIENTID - 32)
3322};
3323
Benny Halevy695e12f2008-07-04 14:38:33 +03003324static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003325nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003326 struct nfsd4_exchange_id *exid)
3327{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003328 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03003329 char *major_id;
3330 char *server_scope;
3331 int major_id_sz;
3332 int server_scope_sz;
3333 uint64_t minor_id = 0;
3334
3335 if (nfserr)
3336 return nfserr;
3337
3338 major_id = utsname()->nodename;
3339 major_id_sz = strlen(major_id);
3340 server_scope = utsname()->nodename;
3341 server_scope_sz = strlen(server_scope);
3342
3343 RESERVE_SPACE(
3344 8 /* eir_clientid */ +
3345 4 /* eir_sequenceid */ +
3346 4 /* eir_flags */ +
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003347 4 /* spr_how */);
Andy Adamson0733d212009-04-03 08:28:01 +03003348
3349 WRITEMEM(&exid->clientid, 8);
3350 WRITE32(exid->seqid);
3351 WRITE32(exid->flags);
3352
Andy Adamson0733d212009-04-03 08:28:01 +03003353 WRITE32(exid->spa_how);
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003354 ADJUST_ARGS();
3355
J. Bruce Fields57266a62013-04-13 14:27:29 -04003356 switch (exid->spa_how) {
3357 case SP4_NONE:
3358 break;
3359 case SP4_MACH_CRED:
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003360 /* spo_must_enforce, spo_must_allow */
3361 RESERVE_SPACE(16);
3362
J. Bruce Fields57266a62013-04-13 14:27:29 -04003363 /* spo_must_enforce bitmap: */
3364 WRITE32(2);
3365 WRITE32(nfs4_minimal_spo_must_enforce[0]);
3366 WRITE32(nfs4_minimal_spo_must_enforce[1]);
3367 /* empty spo_must_allow bitmap: */
3368 WRITE32(0);
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003369
3370 ADJUST_ARGS();
J. Bruce Fields57266a62013-04-13 14:27:29 -04003371 break;
3372 default:
3373 WARN_ON_ONCE(1);
3374 }
Andy Adamson0733d212009-04-03 08:28:01 +03003375
Kinglong Meea8bb84b2013-12-10 15:24:36 +08003376 RESERVE_SPACE(
3377 8 /* so_minor_id */ +
3378 4 /* so_major_id.len */ +
3379 (XDR_QUADLEN(major_id_sz) * 4) +
3380 4 /* eir_server_scope.len */ +
3381 (XDR_QUADLEN(server_scope_sz) * 4) +
3382 4 /* eir_server_impl_id.count (0) */);
3383
Andy Adamson0733d212009-04-03 08:28:01 +03003384 /* The server_owner struct */
3385 WRITE64(minor_id); /* Minor id */
3386 /* major id */
3387 WRITE32(major_id_sz);
3388 WRITEMEM(major_id, major_id_sz);
3389
3390 /* Server scope */
3391 WRITE32(server_scope_sz);
3392 WRITEMEM(server_scope, server_scope_sz);
3393
3394 /* Implementation id */
3395 WRITE32(0); /* zero length nfs_impl_id4 array */
3396 ADJUST_ARGS();
3397 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003398}
3399
3400static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003401nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003402 struct nfsd4_create_session *sess)
3403{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003404 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003405
3406 if (nfserr)
3407 return nfserr;
3408
3409 RESERVE_SPACE(24);
3410 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3411 WRITE32(sess->seqid);
3412 WRITE32(sess->flags);
3413 ADJUST_ARGS();
3414
3415 RESERVE_SPACE(28);
3416 WRITE32(0); /* headerpadsz */
3417 WRITE32(sess->fore_channel.maxreq_sz);
3418 WRITE32(sess->fore_channel.maxresp_sz);
3419 WRITE32(sess->fore_channel.maxresp_cached);
3420 WRITE32(sess->fore_channel.maxops);
3421 WRITE32(sess->fore_channel.maxreqs);
3422 WRITE32(sess->fore_channel.nr_rdma_attrs);
3423 ADJUST_ARGS();
3424
3425 if (sess->fore_channel.nr_rdma_attrs) {
3426 RESERVE_SPACE(4);
3427 WRITE32(sess->fore_channel.rdma_attrs);
3428 ADJUST_ARGS();
3429 }
3430
3431 RESERVE_SPACE(28);
3432 WRITE32(0); /* headerpadsz */
3433 WRITE32(sess->back_channel.maxreq_sz);
3434 WRITE32(sess->back_channel.maxresp_sz);
3435 WRITE32(sess->back_channel.maxresp_cached);
3436 WRITE32(sess->back_channel.maxops);
3437 WRITE32(sess->back_channel.maxreqs);
3438 WRITE32(sess->back_channel.nr_rdma_attrs);
3439 ADJUST_ARGS();
3440
3441 if (sess->back_channel.nr_rdma_attrs) {
3442 RESERVE_SPACE(4);
3443 WRITE32(sess->back_channel.rdma_attrs);
3444 ADJUST_ARGS();
3445 }
3446 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003447}
3448
3449static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003450nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003451 struct nfsd4_sequence *seq)
3452{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003453 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003454
3455 if (nfserr)
3456 return nfserr;
3457
3458 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3459 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3460 WRITE32(seq->seqid);
3461 WRITE32(seq->slotid);
J. Bruce Fieldsb7d7ca32011-08-31 15:39:30 -04003462 /* Note slotid's are numbered from zero: */
3463 WRITE32(seq->maxslots - 1); /* sr_highest_slotid */
3464 WRITE32(seq->maxslots - 1); /* sr_target_highest_slotid */
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05003465 WRITE32(seq->status_flags);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003466
3467 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003468 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003469 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003470}
3471
J. Bruce Fields2355c592012-04-25 16:56:22 -04003472static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003473nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumaker17456802011-07-13 10:50:48 -04003474 struct nfsd4_test_stateid *test_stateid)
3475{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003476 struct nfsd4_test_stateid_id *stateid, *next;
Bryan Schumaker17456802011-07-13 10:50:48 -04003477 __be32 *p;
Bryan Schumaker17456802011-07-13 10:50:48 -04003478
J. Bruce Fieldsa11fcce2014-02-03 16:31:42 -05003479 if (nfserr)
3480 return nfserr;
3481
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003482 RESERVE_SPACE(4 + (4 * test_stateid->ts_num_ids));
Bryan Schumaker17456802011-07-13 10:50:48 -04003483 *p++ = htonl(test_stateid->ts_num_ids);
Bryan Schumaker17456802011-07-13 10:50:48 -04003484
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003485 list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) {
Al Viro02f5fde2012-04-13 00:10:34 -04003486 *p++ = stateid->ts_id_status;
Bryan Schumaker17456802011-07-13 10:50:48 -04003487 }
Bryan Schumaker17456802011-07-13 10:50:48 -04003488
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003489 ADJUST_ARGS();
Bryan Schumaker17456802011-07-13 10:50:48 -04003490 return nfserr;
3491}
3492
Andy Adamson2db134e2009-04-03 08:27:55 +03003493static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003494nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3495{
3496 return nfserr;
3497}
3498
3499typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3500
Andy Adamson2db134e2009-04-03 08:27:55 +03003501/*
3502 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3503 * since we don't need to filter out obsolete ops as this is
3504 * done in the decoding phase.
3505 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003506static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003507 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3508 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3509 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3510 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3511 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3512 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3513 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3514 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3515 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3516 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3517 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3518 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3519 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3520 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3521 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3522 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003523 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003524 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3525 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3526 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3527 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3528 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3529 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3530 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3531 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3532 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3533 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3534 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3535 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3536 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3537 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3538 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3539 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3540 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3541 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3542 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3543 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003544
3545 /* NFSv4.1 operations */
3546 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003547 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
Andy Adamson2db134e2009-04-03 08:27:55 +03003548 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3549 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
Kinglong Mee43212cc2013-12-09 19:04:23 +08003550 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
3551 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003552 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3553 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3554 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3555 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3556 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3557 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003558 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003559 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3560 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
Bryan Schumaker17456802011-07-13 10:50:48 -04003561 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003562 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3563 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3564 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003565};
3566
Andy Adamson496c2622009-04-03 08:28:48 +03003567/*
3568 * Calculate the total amount of memory that the compound response has taken
Mi Jinlong58e7b332011-08-28 18:18:56 +08003569 * after encoding the current operation with pad.
Andy Adamson496c2622009-04-03 08:28:48 +03003570 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003571 * pad: if operation is non-idempotent, pad was calculate by op_rsize_bop()
3572 * which was specified at nfsd4_operation, else pad is zero.
Andy Adamson496c2622009-04-03 08:28:48 +03003573 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003574 * Compare this length to the session se_fmaxresp_sz and se_fmaxresp_cached.
Andy Adamson496c2622009-04-03 08:28:48 +03003575 *
3576 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3577 * will be at least a page and will therefore hold the xdr_buf head.
3578 */
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003579__be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 pad)
Andy Adamson496c2622009-04-03 08:28:48 +03003580{
Andy Adamson496c2622009-04-03 08:28:48 +03003581 struct xdr_buf *xb = &resp->rqstp->rq_res;
Andy Adamson496c2622009-04-03 08:28:48 +03003582 struct nfsd4_session *session = NULL;
3583 struct nfsd4_slot *slot = resp->cstate.slot;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003584 u32 length, tlen = 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003585
3586 if (!nfsd4_has_session(&resp->cstate))
Mi Jinlong58e7b332011-08-28 18:18:56 +08003587 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003588
3589 session = resp->cstate.session;
Andy Adamson496c2622009-04-03 08:28:48 +03003590
3591 if (xb->page_len == 0) {
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003592 length = (char *)resp->xdr.p - (char *)xb->head[0].iov_base + pad;
Andy Adamson496c2622009-04-03 08:28:48 +03003593 } else {
3594 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003595 tlen = (char *)resp->xdr.p - (char *)xb->tail[0].iov_base;
Andy Adamson496c2622009-04-03 08:28:48 +03003596
3597 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3598 }
3599 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3600 length, xb->page_len, tlen, pad);
3601
Mi Jinlong58e7b332011-08-28 18:18:56 +08003602 if (length > session->se_fchannel.maxresp_sz)
3603 return nfserr_rep_too_big;
3604
J. Bruce Fields73e79482012-02-13 16:39:00 -05003605 if ((slot->sl_flags & NFSD4_SLOT_CACHETHIS) &&
Mi Jinlong58e7b332011-08-28 18:18:56 +08003606 length > session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003607 return nfserr_rep_too_big_to_cache;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003608
3609 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003610}
3611
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612void
3613nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3614{
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003615 struct nfs4_stateowner *so = resp->cstate.replay_owner;
Al Viro2ebbc012006-10-19 23:28:58 -07003616 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003617 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618
3619 RESERVE_SPACE(8);
3620 WRITE32(op->opnum);
3621 statp = p++; /* to be backfilled at the end */
3622 ADJUST_ARGS();
3623
Benny Halevy695e12f2008-07-04 14:38:33 +03003624 if (op->opnum == OP_ILLEGAL)
3625 goto status;
3626 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3627 !nfsd4_enc_ops[op->opnum]);
3628 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
J. Bruce Fields067e1ac2014-03-21 17:26:44 -04003629 /* nfsd4_check_resp_size guarantees enough room for error status */
Mi Jinlong58e7b332011-08-28 18:18:56 +08003630 if (!op->status)
3631 op->status = nfsd4_check_resp_size(resp, 0);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003632 if (so) {
3633 so->so_replay.rp_status = op->status;
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003634 so->so_replay.rp_buflen = (char *)resp->xdr.p
3635 - (char *)(statp+1);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003636 memcpy(so->so_replay.rp_buf, statp+1, so->so_replay.rp_buflen);
3637 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003638status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 /*
3640 * Note: We write the status directly, instead of using WRITE32(),
3641 * since it is already in network byte order.
3642 */
3643 *statp = op->status;
3644}
3645
3646/*
3647 * Encode the reply stored in the stateowner reply cache
3648 *
3649 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3650 * previously sent already encoded operation.
3651 *
3652 * called with nfs4_lock_state() held
3653 */
3654void
3655nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3656{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003657 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 struct nfs4_replay *rp = op->replay;
3659
3660 BUG_ON(!rp);
3661
3662 RESERVE_SPACE(8);
3663 WRITE32(op->opnum);
3664 *p++ = rp->rp_status; /* already xdr'ed */
3665 ADJUST_ARGS();
3666
3667 RESERVE_SPACE(rp->rp_buflen);
3668 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3669 ADJUST_ARGS();
3670}
3671
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672int
Al Viro2ebbc012006-10-19 23:28:58 -07003673nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674{
3675 return xdr_ressize_check(rqstp, p);
3676}
3677
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003678int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679{
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003680 struct svc_rqst *rqstp = rq;
3681 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3682
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 if (args->ops != args->iops) {
3684 kfree(args->ops);
3685 args->ops = args->iops;
3686 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003687 kfree(args->tmpp);
3688 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 while (args->to_free) {
3690 struct tmpbuf *tb = args->to_free;
3691 args->to_free = tb->next;
3692 tb->release(tb->buf);
3693 kfree(tb);
3694 }
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003695 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696}
3697
3698int
Al Viro2ebbc012006-10-19 23:28:58 -07003699nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700{
Jeff Laytone874f9f2014-03-10 11:34:55 -04003701 if (rqstp->rq_arg.head[0].iov_len % 4) {
3702 /* client is nuts */
3703 dprintk("%s: compound not properly padded! (peeraddr=%pISc xid=0x%x)",
3704 __func__, svc_addr(rqstp), be32_to_cpu(rqstp->rq_xid));
3705 return 0;
3706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 args->p = p;
3708 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3709 args->pagelist = rqstp->rq_arg.pages;
3710 args->pagelen = rqstp->rq_arg.page_len;
3711 args->tmpp = NULL;
3712 args->to_free = NULL;
3713 args->ops = args->iops;
3714 args->rqstp = rqstp;
3715
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003716 return !nfsd4_decode_compound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717}
3718
3719int
Al Viro2ebbc012006-10-19 23:28:58 -07003720nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721{
3722 /*
3723 * All that remains is to write the tag and operation count...
3724 */
Andy Adamson557ce262009-08-28 08:45:04 -04003725 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 struct kvec *iov;
3727 p = resp->tagp;
3728 *p++ = htonl(resp->taglen);
3729 memcpy(p, resp->tag, resp->taglen);
3730 p += XDR_QUADLEN(resp->taglen);
3731 *p++ = htonl(resp->opcnt);
3732
3733 if (rqstp->rq_res.page_len)
3734 iov = &rqstp->rq_res.tail[0];
3735 else
3736 iov = &rqstp->rq_res.head[0];
J. Bruce Fields4aea24b2014-01-15 15:17:58 -05003737 iov->iov_len = ((char *)resp->xdr.p) - (char *)iov->iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003739 if (nfsd4_has_session(cs)) {
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003740 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3741 struct nfs4_client *clp = cs->session->se_client;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003742 if (cs->status != nfserr_replay_cache) {
3743 nfsd4_store_cache_entry(resp);
J. Bruce Fields73e79482012-02-13 16:39:00 -05003744 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003745 }
Benny Halevyd7682982010-05-12 00:13:54 +03003746 /* Renew the clientid on success and on replay */
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003747 spin_lock(&nn->client_lock);
J. Bruce Fields221a6872013-04-01 22:23:49 -04003748 nfsd4_put_session(cs->session);
J. Bruce Fieldsf0f51f52013-06-18 14:26:02 -04003749 spin_unlock(&nn->client_lock);
3750 put_client_renew(clp);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 return 1;
3753}
3754
3755/*
3756 * Local variables:
3757 * c-basic-offset: 8
3758 * End:
3759 */