nfsd4: session needs room for following op to error out
[deliverable/linux.git] / fs / nfsd / nfs4xdr.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * 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
5a0e3ad6 43#include <linux/slab.h>
1da177e4 44#include <linux/namei.h>
341eb184 45#include <linux/statfs.h>
0733d213 46#include <linux/utsname.h>
17456804 47#include <linux/pagemap.h>
4796f457 48#include <linux/sunrpc/svcauth_gss.h>
9a74af21 49
2ca72e17
BF
50#include "idmap.h"
51#include "acl.h"
9a74af21 52#include "xdr4.h"
0a3adade 53#include "vfs.h"
17456804 54#include "state.h"
1091006c 55#include "cache.h"
3d733711 56#include "netns.h"
2ca72e17 57
18032ca0
DQ
58#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
59#include <linux/security.h>
60#endif
61
62
1da177e4
LT
63#define NFSDDBG_FACILITY NFSDDBG_XDR
64
42ca0993
BF
65/*
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
b37ad28b 73static __be32
a36b1725 74check_filename(char *str, int len)
1da177e4
LT
75{
76 int i;
77
78 if (len == 0)
79 return nfserr_inval;
80 if (isdotent(str, len))
a36b1725 81 return nfserr_badname;
1da177e4
LT
82 for (i = 0; i < len; i++)
83 if (str[i] == '/')
a36b1725 84 return nfserr_badname;
1da177e4
LT
85 return 0;
86}
87
1da177e4 88#define DECODE_HEAD \
2ebbc012 89 __be32 *p; \
b37ad28b 90 __be32 status
1da177e4
LT
91#define DECODE_TAIL \
92 status = 0; \
93out: \
94 return status; \
95xdr_error: \
817cb9d4
CL
96 dprintk("NFSD: xdr error (%s:%d)\n", \
97 __FILE__, __LINE__); \
1da177e4
LT
98 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)
1da177e4
LT
106#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)) { \
817cb9d4
CL
114 dprintk("NFSD: xdr error (%s:%d)\n", \
115 __FILE__, __LINE__); \
1da177e4
LT
116 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))) { \
817cb9d4
CL
131 dprintk("NFSD: xdr error (%s:%d)\n", \
132 __FILE__, __LINE__); \
1da177e4
LT
133 goto xdr_error; \
134 } \
135} while (0)
136
590b7431
BF
137static void next_decode_page(struct nfsd4_compoundargs *argp)
138{
590b7431 139 argp->p = page_address(argp->pagelist[0]);
365da4ad 140 argp->pagelist++;
590b7431
BF
141 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
ca2a05aa 150static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes)
1da177e4
LT
151{
152 /* We want more bytes than seem to be available.
153 * Maybe we need a new page, maybe we have just run out
154 */
ca2a05aa 155 unsigned int avail = (char *)argp->end - (char *)argp->p;
2ebbc012 156 __be32 *p;
1da177e4
LT
157 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 {
f99d49ad 165 kfree(argp->tmpp);
1da177e4
LT
166 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
167 if (!p)
168 return NULL;
169
170 }
ca2a05aa
BF
171 /*
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 */
1da177e4 176 memcpy(p, argp->p, avail);
590b7431 177 next_decode_page(argp);
1da177e4
LT
178 memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
179 argp->p += XDR_QUADLEN(nbytes - avail);
180 return p;
181}
182
60adfc50
AA
183static int zero_clientid(clientid_t *clid)
184{
185 return (clid->cl_boot == 0) && (clid->cl_id == 0);
186}
187
2d8498db
CH
188/**
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 */
1da177e4
LT
197static 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
2d8498db
CH
213/**
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 */
2ebbc012 223static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes)
1da177e4 224{
1da177e4 225 if (p == argp->tmp) {
67114fe6 226 p = kmemdup(argp->tmp, nbytes, GFP_KERNEL);
a4db5fe5
BF
227 if (!p)
228 return NULL;
1da177e4 229 } else {
73dff8be 230 BUG_ON(p != argp->tmpp);
1da177e4
LT
231 argp->tmpp = NULL;
232 }
233 if (defer_free(argp, kfree, p)) {
a4db5fe5 234 kfree(p);
1da177e4
LT
235 return NULL;
236 } else
237 return (char *)p;
238}
239
b37ad28b 240static __be32
1da177e4
LT
241nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
242{
243 u32 bmlen;
244 DECODE_HEAD;
245
246 bmval[0] = 0;
247 bmval[1] = 0;
7e705706 248 bmval[2] = 0;
1da177e4
LT
249
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]);
7e705706
AA
260 if (bmlen > 2)
261 READ32(bmval[2]);
1da177e4
LT
262
263 DECODE_TAIL;
264}
265
b37ad28b 266static __be32
3c8e0316 267nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
18032ca0
DQ
268 struct iattr *iattr, struct nfs4_acl **acl,
269 struct xdr_netobj *label)
1da177e4
LT
270{
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
1da177e4
LT
280 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) {
64a817cf 290 u32 nace;
28e05dd8 291 struct nfs4_ace *ace;
1da177e4
LT
292
293 READ_BUF(4); len += 4;
294 READ32(nace);
295
28e05dd8
BF
296 if (nace > NFS4_ACL_MAX)
297 return nfserr_resource;
298
299 *acl = nfs4_acl_new(nace);
eba1c99c
KM
300 if (*acl == NULL)
301 return nfserr_jukebox;
302
28e05dd8 303 defer_free(argp, kfree, *acl);
1da177e4 304
28e05dd8
BF
305 (*acl)->naces = nace;
306 for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) {
1da177e4 307 READ_BUF(16); len += 16;
28e05dd8
BF
308 READ32(ace->type);
309 READ32(ace->flag);
310 READ32(ace->access_mask);
1da177e4
LT
311 READ32(dummy32);
312 READ_BUF(dummy32);
313 len += XDR_QUADLEN(dummy32) << 2;
314 READMEM(buf, dummy32);
28e05dd8 315 ace->whotype = nfs4_acl_get_whotype(buf, dummy32);
3c726023 316 status = nfs_ok;
28e05dd8 317 if (ace->whotype != NFS4_ACL_WHO_NAMED)
ab8e4aee 318 ;
28e05dd8 319 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
3c726023 320 status = nfsd_map_name_to_gid(argp->rqstp,
ab8e4aee 321 buf, dummy32, &ace->who_gid);
1da177e4 322 else
3c726023 323 status = nfsd_map_name_to_uid(argp->rqstp,
ab8e4aee 324 buf, dummy32, &ace->who_uid);
3c726023
BF
325 if (status)
326 return status;
1da177e4
LT
327 }
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);
47c85291
N
344 if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
345 return status;
1da177e4
LT
346 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);
47c85291
N
355 if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
356 return status;
1da177e4
LT
357 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;
bf8d9097 369 READ64(iattr->ia_atime.tv_sec);
1da177e4
LT
370 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 }
1da177e4
LT
382 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;
bf8d9097 392 READ64(iattr->ia_mtime.tv_sec);
1da177e4
LT
393 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 }
18032ca0
DQ
405
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;
3378b7f4 426 label->len = dummy32;
18032ca0
DQ
427 defer_free(argp, kfree, label->data);
428 memcpy(label->data, buf, dummy32);
429 }
430#endif
431
3c8e0316
YZ
432 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)
1da177e4
LT
437 goto xdr_error;
438
439 DECODE_TAIL;
1da177e4
LT
440}
441
e31a1b66
BH
442static __be32
443nfsd4_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
b37ad28b 454static __be32
1da177e4
LT
455nfsd4_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
acb2887e
BF
465static __be32 nfsd4_decode_cb_sec(struct nfsd4_compoundargs *argp, struct nfsd4_cb_sec *cbs)
466{
467 DECODE_HEAD;
12fc3e92 468 u32 dummy, uid, gid;
acb2887e
BF
469 char *machine_name;
470 int i;
471 int nr_secflavs;
472
473 /* callback_sec_params4 */
474 READ_BUF(4);
475 READ32(nr_secflavs);
57569a70
BF
476 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;
acb2887e
BF
481 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 */
12fc3e92
BF
487 if (cbs->flavor == (u32)(-1))
488 cbs->flavor = RPC_AUTH_NULL;
acb2887e
BF
489 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);
12fc3e92
BF
502 READ32(uid);
503 READ32(gid);
acb2887e
BF
504
505 /* more gids */
506 READ_BUF(4);
507 READ32(dummy);
508 READ_BUF(dummy * 4);
12fc3e92 509 if (cbs->flavor == (u32)(-1)) {
03bc6d1c
EB
510 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 }
12fc3e92 520 }
acb2887e
BF
521 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
cb73a9f4
BF
545static __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
1d1bc8f2
BF
556static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
557{
558 DECODE_HEAD;
1d1bc8f2
BF
559
560 READ_BUF(NFS4_MAX_SESSIONID_LEN + 8);
561 COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
562 READ32(bcts->dir);
6ce2357f
BS
563 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
564 * could help us figure out we should be using it. */
1d1bc8f2
BF
565 DECODE_TAIL;
566}
567
b37ad28b 568static __be32
1da177e4
LT
569nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
570{
571 DECODE_HEAD;
572
e31a1b66 573 READ_BUF(4);
1da177e4 574 READ32(close->cl_seqid);
e31a1b66 575 return nfsd4_decode_stateid(argp, &close->cl_stateid);
1da177e4
LT
576
577 DECODE_TAIL;
578}
579
580
b37ad28b 581static __be32
1da177e4
LT
582nfsd4_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
b37ad28b 593static __be32
1da177e4
LT
594nfsd4_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);
a36b1725 624 if ((status = check_filename(create->cr_name, create->cr_namelen)))
1da177e4
LT
625 return status;
626
3c8e0316 627 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
18032ca0 628 &create->cr_acl, &create->cr_label);
c0d6fc8a 629 if (status)
1da177e4
LT
630 goto out;
631
632 DECODE_TAIL;
633}
634
b37ad28b 635static inline __be32
1da177e4
LT
636nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
637{
e31a1b66 638 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
1da177e4
LT
639}
640
b37ad28b 641static inline __be32
1da177e4
LT
642nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
643{
644 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
645}
646
b37ad28b 647static __be32
1da177e4
LT
648nfsd4_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);
a36b1725 656 if ((status = check_filename(link->li_name, link->li_namelen)))
1da177e4
LT
657 return status;
658
659 DECODE_TAIL;
660}
661
b37ad28b 662static __be32
1da177e4
LT
663nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
664{
665 DECODE_HEAD;
666
1da177e4
LT
667 /*
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) {
e31a1b66 680 READ_BUF(4);
1da177e4 681 READ32(lock->lk_new_open_seqid);
e31a1b66
BH
682 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
683 if (status)
684 return status;
685 READ_BUF(8 + sizeof(clientid_t));
1da177e4
LT
686 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 {
e31a1b66
BH
692 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
693 if (status)
694 return status;
695 READ_BUF(4);
1da177e4
LT
696 READ32(lock->lk_old_lock_seqid);
697 }
698
699 DECODE_TAIL;
700}
701
b37ad28b 702static __be32
1da177e4
LT
703nfsd4_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
b37ad28b 721static __be32
1da177e4
LT
722nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
723{
724 DECODE_HEAD;
725
e31a1b66 726 READ_BUF(8);
1da177e4
LT
727 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);
e31a1b66
BH
731 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
732 if (status)
733 return status;
734 READ_BUF(16);
1da177e4
LT
735 READ64(locku->lu_offset);
736 READ64(locku->lu_length);
737
738 DECODE_TAIL;
739}
740
b37ad28b 741static __be32
1da177e4
LT
742nfsd4_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);
a36b1725 750 if ((status = check_filename(lookup->lo_name, lookup->lo_len)))
1da177e4
LT
751 return status;
752
753 DECODE_TAIL;
754}
755
2c8bd7e0 756static __be32 nfsd4_decode_share_access(struct nfsd4_compoundargs *argp, u32 *share_access, u32 *deleg_want, u32 *deleg_when)
04f9e664
BF
757{
758 __be32 *p;
759 u32 w;
760
761 READ_BUF(4);
762 READ32(w);
2c8bd7e0
BH
763 *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
04f9e664
BF
768 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 }
fc0d14fe 776 w &= ~NFS4_SHARE_ACCESS_MASK;
04f9e664
BF
777 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 }
92bac8c5 792 w &= ~NFS4_SHARE_WANT_MASK;
04f9e664
BF
793 if (!w)
794 return nfs_ok;
2c8bd7e0
BH
795
796 if (!deleg_when) /* open_downgrade */
797 return nfserr_inval;
04f9e664
BF
798 switch (w) {
799 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL:
800 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED:
c668fc6d
BH
801 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL |
802 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED):
04f9e664
BF
803 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. */
01cd4afa 816 if (*x & ~NFS4_SHARE_DENY_BOTH)
04f9e664
BF
817 return nfserr_bad_xdr;
818 return nfs_ok;
819xdr_error:
820 return nfserr_bad_xdr;
821}
822
a084daf5
BF
823static __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
b37ad28b 840static __be32
1da177e4
LT
841nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
842{
843 DECODE_HEAD;
2c8bd7e0 844 u32 dummy;
1da177e4
LT
845
846 memset(open->op_bmval, 0, sizeof(open->op_bmval));
847 open->op_iattr.ia_valid = 0;
fe0750e5 848 open->op_openowner = NULL;
1da177e4 849
9d313b17 850 open->op_xdr_error = 0;
1da177e4 851 /* seqid, share_access, share_deny, clientid, ownerlen */
04f9e664 852 READ_BUF(4);
1da177e4 853 READ32(open->op_seqid);
2c8bd7e0
BH
854 /* decode, yet ignore deleg_when until supported */
855 status = nfsd4_decode_share_access(argp, &open->op_share_access,
856 &open->op_deleg_want, &dummy);
04f9e664
BF
857 if (status)
858 goto xdr_error;
859 status = nfsd4_decode_share_deny(argp, &open->op_share_deny);
860 if (status)
861 goto xdr_error;
a084daf5 862 READ_BUF(sizeof(clientid_t));
1da177e4 863 COPYMEM(&open->op_clientid, sizeof(clientid_t));
a084daf5
BF
864 status = nfsd4_decode_opaque(argp, &open->op_owner);
865 if (status)
866 goto xdr_error;
867 READ_BUF(4);
1da177e4
LT
868 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:
c0d6fc8a 878 status = nfsd4_decode_fattr(argp, open->op_bmval,
18032ca0 879 &open->op_iattr, &open->op_acl, &open->op_label);
c0d6fc8a 880 if (status)
1da177e4
LT
881 goto out;
882 break;
883 case NFS4_CREATE_EXCLUSIVE:
ab4684d1
CL
884 READ_BUF(NFS4_VERIFIER_SIZE);
885 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
1da177e4 886 break;
79fb54ab
BH
887 case NFS4_CREATE_EXCLUSIVE4_1:
888 if (argp->minorversion < 1)
889 goto xdr_error;
ab4684d1
CL
890 READ_BUF(NFS4_VERIFIER_SIZE);
891 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
79fb54ab 892 status = nfsd4_decode_fattr(argp, open->op_bmval,
18032ca0 893 &open->op_iattr, &open->op_acl, &open->op_label);
79fb54ab
BH
894 if (status)
895 goto out;
896 break;
1da177e4
LT
897 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);
a36b1725 915 if ((status = check_filename(open->op_fname.data, open->op_fname.len)))
1da177e4
LT
916 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:
e31a1b66
BH
923 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
924 if (status)
925 return status;
926 READ_BUF(4);
1da177e4
LT
927 READ32(open->op_fname.len);
928 READ_BUF(open->op_fname.len);
929 SAVEMEM(open->op_fname.data, open->op_fname.len);
a36b1725 930 if ((status = check_filename(open->op_fname.data, open->op_fname.len)))
1da177e4
LT
931 return status;
932 break;
8b289b2c
BF
933 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;
1da177e4
LT
946 default:
947 goto xdr_error;
948 }
949
950 DECODE_TAIL;
951}
952
b37ad28b 953static __be32
1da177e4
LT
954nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
955{
956 DECODE_HEAD;
e1a90ebd
AS
957
958 if (argp->minorversion >= 1)
959 return nfserr_notsupp;
960
e31a1b66
BH
961 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
962 if (status)
963 return status;
964 READ_BUF(4);
1da177e4 965 READ32(open_conf->oc_seqid);
e1a90ebd 966
1da177e4
LT
967 DECODE_TAIL;
968}
969
b37ad28b 970static __be32
1da177e4
LT
971nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
972{
973 DECODE_HEAD;
974
e31a1b66
BH
975 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
976 if (status)
977 return status;
04f9e664 978 READ_BUF(4);
1da177e4 979 READ32(open_down->od_seqid);
2c8bd7e0
BH
980 status = nfsd4_decode_share_access(argp, &open_down->od_share_access,
981 &open_down->od_deleg_want, NULL);
04f9e664
BF
982 if (status)
983 return status;
984 status = nfsd4_decode_share_deny(argp, &open_down->od_share_deny);
985 if (status)
986 return status;
1da177e4
LT
987 DECODE_TAIL;
988}
989
b37ad28b 990static __be32
1da177e4
LT
991nfsd4_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
e1a90ebd
AS
1005static __be32
1006nfsd4_decode_putpubfh(struct nfsd4_compoundargs *argp, void *p)
1007{
1008 if (argp->minorversion == 0)
1009 return nfs_ok;
1010 return nfserr_notsupp;
1011}
1012
b37ad28b 1013static __be32
1da177e4
LT
1014nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
1015{
1016 DECODE_HEAD;
1017
e31a1b66
BH
1018 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
1019 if (status)
1020 return status;
1021 READ_BUF(12);
1da177e4
LT
1022 READ64(read->rd_offset);
1023 READ32(read->rd_length);
1024
1025 DECODE_TAIL;
1026}
1027
b37ad28b 1028static __be32
1da177e4
LT
1029nfsd4_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
b37ad28b 1044static __be32
1da177e4
LT
1045nfsd4_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);
a36b1725 1053 if ((status = check_filename(remove->rm_name, remove->rm_namelen)))
1da177e4
LT
1054 return status;
1055
1056 DECODE_TAIL;
1057}
1058
b37ad28b 1059static __be32
1da177e4
LT
1060nfsd4_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);
a36b1725 1071 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen)))
1da177e4 1072 return status;
a36b1725 1073 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen)))
1da177e4
LT
1074 return status;
1075
1076 DECODE_TAIL;
1077}
1078
b37ad28b 1079static __be32
1da177e4
LT
1080nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
1081{
1082 DECODE_HEAD;
1083
e1a90ebd
AS
1084 if (argp->minorversion >= 1)
1085 return nfserr_notsupp;
1086
1da177e4
LT
1087 READ_BUF(sizeof(clientid_t));
1088 COPYMEM(clientid, sizeof(clientid_t));
1089
1090 DECODE_TAIL;
1091}
1092
dcb488a3
AA
1093static __be32
1094nfsd4_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);
a36b1725 1103 status = check_filename(secinfo->si_name, secinfo->si_namelen);
dcb488a3
AA
1104 if (status)
1105 return status;
1106 DECODE_TAIL;
1107}
1108
04f4ad16
BF
1109static __be32
1110nfsd4_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
b37ad28b 1120static __be32
1da177e4
LT
1121nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
1122{
e31a1b66 1123 __be32 status;
1da177e4 1124
e31a1b66
BH
1125 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
1126 if (status)
1127 return status;
3c8e0316 1128 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
18032ca0 1129 &setattr->sa_acl, &setattr->sa_label);
1da177e4
LT
1130}
1131
b37ad28b 1132static __be32
1da177e4
LT
1133nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
1134{
1135 DECODE_HEAD;
1136
e1a90ebd
AS
1137 if (argp->minorversion >= 1)
1138 return nfserr_notsupp;
1139
ab4684d1
CL
1140 READ_BUF(NFS4_VERIFIER_SIZE);
1141 COPYMEM(setclientid->se_verf.data, NFS4_VERIFIER_SIZE);
1da177e4 1142
a084daf5
BF
1143 status = nfsd4_decode_opaque(argp, &setclientid->se_name);
1144 if (status)
1145 return nfserr_bad_xdr;
1146 READ_BUF(8);
1da177e4
LT
1147 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
b37ad28b 1161static __be32
1da177e4
LT
1162nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
1163{
1164 DECODE_HEAD;
1165
e1a90ebd
AS
1166 if (argp->minorversion >= 1)
1167 return nfserr_notsupp;
1168
ab4684d1 1169 READ_BUF(8 + NFS4_VERIFIER_SIZE);
1da177e4 1170 COPYMEM(&scd_c->sc_clientid, 8);
ab4684d1 1171 COPYMEM(&scd_c->sc_confirm, NFS4_VERIFIER_SIZE);
1da177e4
LT
1172
1173 DECODE_TAIL;
1174}
1175
1176/* Also used for NVERIFY */
b37ad28b 1177static __be32
1da177e4
LT
1178nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
1179{
1da177e4
LT
1180 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
e5f95703
BF
1186 * nfsd4_proc_verify */
1187
1da177e4
LT
1188 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
b37ad28b 1196static __be32
1da177e4
LT
1197nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
1198{
1199 int avail;
1da177e4
LT
1200 int len;
1201 DECODE_HEAD;
1202
e31a1b66
BH
1203 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
1204 if (status)
1205 return status;
1206 READ_BUF(16);
1da177e4
LT
1207 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) {
817cb9d4
CL
1219 dprintk("NFSD: xdr error (%s:%d)\n",
1220 __FILE__, __LINE__);
1da177e4
LT
1221 goto xdr_error;
1222 }
70cc7f75
BF
1223 write->wr_head.iov_base = p;
1224 write->wr_head.iov_len = avail;
5a80a54d 1225 WARN_ON(avail != (XDR_QUADLEN(avail) << 2));
70cc7f75 1226 write->wr_pagelist = argp->pagelist;
5a80a54d
BF
1227
1228 len = XDR_QUADLEN(write->wr_buflen) << 2;
1229 if (len >= avail) {
1230 int pages;
1231
1232 len -= avail;
1233
1234 pages = len >> PAGE_SHIFT;
1235 argp->pagelist += pages;
1236 argp->pagelen -= pages * PAGE_SIZE;
1237 len -= pages * PAGE_SIZE;
1238
1239 argp->p = (__be32 *)page_address(argp->pagelist[0]);
365da4ad 1240 argp->pagelist++;
5a80a54d 1241 argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE);
1da177e4 1242 }
5a80a54d 1243 argp->p += XDR_QUADLEN(len);
1da177e4
LT
1244
1245 DECODE_TAIL;
1246}
1247
b37ad28b 1248static __be32
1da177e4
LT
1249nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1250{
1251 DECODE_HEAD;
1252
e1a90ebd
AS
1253 if (argp->minorversion >= 1)
1254 return nfserr_notsupp;
1255
1da177e4
LT
1256 READ_BUF(12);
1257 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1258 READ32(rlockowner->rl_owner.len);
1259 READ_BUF(rlockowner->rl_owner.len);
1260 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1261
60adfc50
AA
1262 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1263 return nfserr_inval;
1da177e4
LT
1264 DECODE_TAIL;
1265}
1266
2db134eb
AA
1267static __be32
1268nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
0733d213 1269 struct nfsd4_exchange_id *exid)
2db134eb 1270{
5afa040b 1271 int dummy, tmp;
0733d213
AA
1272 DECODE_HEAD;
1273
1274 READ_BUF(NFS4_VERIFIER_SIZE);
1275 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1276
a084daf5
BF
1277 status = nfsd4_decode_opaque(argp, &exid->clname);
1278 if (status)
1279 return nfserr_bad_xdr;
0733d213
AA
1280
1281 READ_BUF(4);
1282 READ32(exid->flags);
1283
1284 /* Ignore state_protect4_a */
1285 READ_BUF(4);
1286 READ32(exid->spa_how);
1287 switch (exid->spa_how) {
1288 case SP4_NONE:
1289 break;
1290 case SP4_MACH_CRED:
1291 /* spo_must_enforce */
1292 READ_BUF(4);
1293 READ32(dummy);
1294 READ_BUF(dummy * 4);
1295 p += dummy;
1296
1297 /* spo_must_allow */
1298 READ_BUF(4);
1299 READ32(dummy);
1300 READ_BUF(dummy * 4);
1301 p += dummy;
1302 break;
1303 case SP4_SSV:
1304 /* ssp_ops */
1305 READ_BUF(4);
1306 READ32(dummy);
1307 READ_BUF(dummy * 4);
1308 p += dummy;
1309
1310 READ_BUF(4);
1311 READ32(dummy);
1312 READ_BUF(dummy * 4);
1313 p += dummy;
1314
1315 /* ssp_hash_algs<> */
1316 READ_BUF(4);
5afa040b
MJ
1317 READ32(tmp);
1318 while (tmp--) {
1319 READ_BUF(4);
1320 READ32(dummy);
1321 READ_BUF(dummy);
1322 p += XDR_QUADLEN(dummy);
1323 }
0733d213
AA
1324
1325 /* ssp_encr_algs<> */
1326 READ_BUF(4);
5afa040b
MJ
1327 READ32(tmp);
1328 while (tmp--) {
1329 READ_BUF(4);
1330 READ32(dummy);
1331 READ_BUF(dummy);
1332 p += XDR_QUADLEN(dummy);
1333 }
0733d213
AA
1334
1335 /* ssp_window and ssp_num_gss_handles */
1336 READ_BUF(8);
1337 READ32(dummy);
1338 READ32(dummy);
1339 break;
1340 default:
1341 goto xdr_error;
1342 }
1343
1344 /* Ignore Implementation ID */
1345 READ_BUF(4); /* nfs_impl_id4 array length */
1346 READ32(dummy);
1347
1348 if (dummy > 1)
1349 goto xdr_error;
1350
1351 if (dummy == 1) {
1352 /* nii_domain */
1353 READ_BUF(4);
1354 READ32(dummy);
1355 READ_BUF(dummy);
1356 p += XDR_QUADLEN(dummy);
1357
1358 /* nii_name */
1359 READ_BUF(4);
1360 READ32(dummy);
1361 READ_BUF(dummy);
1362 p += XDR_QUADLEN(dummy);
1363
1364 /* nii_date */
1365 READ_BUF(12);
1366 p += 3;
1367 }
1368 DECODE_TAIL;
2db134eb
AA
1369}
1370
1371static __be32
1372nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1373 struct nfsd4_create_session *sess)
1374{
ec6b5d7b 1375 DECODE_HEAD;
ec6b5d7b 1376 u32 dummy;
ec6b5d7b
AA
1377
1378 READ_BUF(16);
1379 COPYMEM(&sess->clientid, 8);
1380 READ32(sess->seqid);
1381 READ32(sess->flags);
1382
1383 /* Fore channel attrs */
1384 READ_BUF(28);
1385 READ32(dummy); /* headerpadsz is always 0 */
1386 READ32(sess->fore_channel.maxreq_sz);
1387 READ32(sess->fore_channel.maxresp_sz);
1388 READ32(sess->fore_channel.maxresp_cached);
1389 READ32(sess->fore_channel.maxops);
1390 READ32(sess->fore_channel.maxreqs);
1391 READ32(sess->fore_channel.nr_rdma_attrs);
1392 if (sess->fore_channel.nr_rdma_attrs == 1) {
1393 READ_BUF(4);
1394 READ32(sess->fore_channel.rdma_attrs);
1395 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1396 dprintk("Too many fore channel attr bitmaps!\n");
1397 goto xdr_error;
1398 }
1399
1400 /* Back channel attrs */
1401 READ_BUF(28);
1402 READ32(dummy); /* headerpadsz is always 0 */
1403 READ32(sess->back_channel.maxreq_sz);
1404 READ32(sess->back_channel.maxresp_sz);
1405 READ32(sess->back_channel.maxresp_cached);
1406 READ32(sess->back_channel.maxops);
1407 READ32(sess->back_channel.maxreqs);
1408 READ32(sess->back_channel.nr_rdma_attrs);
1409 if (sess->back_channel.nr_rdma_attrs == 1) {
1410 READ_BUF(4);
1411 READ32(sess->back_channel.rdma_attrs);
1412 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1413 dprintk("Too many back channel attr bitmaps!\n");
1414 goto xdr_error;
1415 }
1416
acb2887e 1417 READ_BUF(4);
ec6b5d7b 1418 READ32(sess->callback_prog);
acb2887e 1419 nfsd4_decode_cb_sec(argp, &sess->cb_sec);
ec6b5d7b 1420 DECODE_TAIL;
2db134eb
AA
1421}
1422
1423static __be32
1424nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1425 struct nfsd4_destroy_session *destroy_session)
1426{
e10e0cfc
BH
1427 DECODE_HEAD;
1428 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1429 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1430
1431 DECODE_TAIL;
2db134eb
AA
1432}
1433
e1ca12df
BS
1434static __be32
1435nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp,
1436 struct nfsd4_free_stateid *free_stateid)
1437{
1438 DECODE_HEAD;
1439
1440 READ_BUF(sizeof(stateid_t));
1441 READ32(free_stateid->fr_stateid.si_generation);
1442 COPYMEM(&free_stateid->fr_stateid.si_opaque, sizeof(stateid_opaque_t));
1443
1444 DECODE_TAIL;
1445}
1446
2db134eb
AA
1447static __be32
1448nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1449 struct nfsd4_sequence *seq)
1450{
b85d4c01
BH
1451 DECODE_HEAD;
1452
1453 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1454 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1455 READ32(seq->seqid);
1456 READ32(seq->slotid);
1457 READ32(seq->maxslots);
1458 READ32(seq->cachethis);
1459
1460 DECODE_TAIL;
2db134eb
AA
1461}
1462
17456804
BS
1463static __be32
1464nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid)
1465{
17456804 1466 int i;
03cfb420
BS
1467 __be32 *p, status;
1468 struct nfsd4_test_stateid_id *stateid;
17456804
BS
1469
1470 READ_BUF(4);
1471 test_stateid->ts_num_ids = ntohl(*p++);
1472
03cfb420 1473 INIT_LIST_HEAD(&test_stateid->ts_stateid_list);
17456804
BS
1474
1475 for (i = 0; i < test_stateid->ts_num_ids; i++) {
03cfb420
BS
1476 stateid = kmalloc(sizeof(struct nfsd4_test_stateid_id), GFP_KERNEL);
1477 if (!stateid) {
afcf6792 1478 status = nfserrno(-ENOMEM);
03cfb420
BS
1479 goto out;
1480 }
1481
1482 defer_free(argp, kfree, stateid);
1483 INIT_LIST_HEAD(&stateid->ts_id_list);
1484 list_add_tail(&stateid->ts_id_list, &test_stateid->ts_stateid_list);
1485
1486 status = nfsd4_decode_stateid(argp, &stateid->ts_id_stateid);
17456804 1487 if (status)
03cfb420 1488 goto out;
17456804
BS
1489 }
1490
1491 status = 0;
1492out:
1493 return status;
1494xdr_error:
1495 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__, __LINE__);
1496 status = nfserr_bad_xdr;
1497 goto out;
1498}
1499
345c2842
MJ
1500static __be32 nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs *argp, struct nfsd4_destroy_clientid *dc)
1501{
1502 DECODE_HEAD;
1503
1504 READ_BUF(8);
1505 COPYMEM(&dc->clientid, 8);
1506
1507 DECODE_TAIL;
1508}
1509
4dc6ec00
BF
1510static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1511{
1512 DECODE_HEAD;
1513
1514 READ_BUF(4);
1515 READ32(rc->rca_one_fs);
1516
1517 DECODE_TAIL;
1518}
1519
347e0ad9
BH
1520static __be32
1521nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1522{
1523 return nfs_ok;
1524}
1525
3c375c6f
BH
1526static __be32
1527nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1528{
1e685ec2 1529 return nfserr_notsupp;
3c375c6f
BH
1530}
1531
347e0ad9
BH
1532typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1533
1534static nfsd4_dec nfsd4_dec_ops[] = {
ad1060c8
BF
1535 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1536 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1537 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1538 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1539 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1540 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1541 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1542 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1543 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1544 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1545 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1546 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1547 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1548 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1549 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1550 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1551 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1552 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1553 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1554 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
e1a90ebd 1555 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_putpubfh,
ad1060c8
BF
1556 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1557 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1558 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1559 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1560 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1561 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1562 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1563 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1564 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1565 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1566 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1567 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1568 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1569 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1570 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1571 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
2db134eb
AA
1572
1573 /* new operations for NFSv4.1 */
cb73a9f4 1574 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_backchannel_ctl,
1d1bc8f2 1575 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
9064caae
RD
1576 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1577 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1578 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
e1ca12df 1579 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid,
9064caae
RD
1580 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1581 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1582 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1583 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1584 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1585 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
04f4ad16 1586 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
9064caae
RD
1587 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1588 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
17456804 1589 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid,
9064caae 1590 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
345c2842 1591 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_destroy_clientid,
4dc6ec00 1592 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
2db134eb
AA
1593};
1594
e1a90ebd
AS
1595static inline bool
1596nfsd4_opnum_in_range(struct nfsd4_compoundargs *argp, struct nfsd4_op *op)
1597{
8217d146 1598 if (op->opnum < FIRST_NFS4_OP)
e1a90ebd 1599 return false;
8217d146 1600 else if (argp->minorversion == 0 && op->opnum > LAST_NFS40_OP)
e1a90ebd 1601 return false;
8217d146
AS
1602 else if (argp->minorversion == 1 && op->opnum > LAST_NFS41_OP)
1603 return false;
1604 else if (argp->minorversion == 2 && op->opnum > LAST_NFS42_OP)
e1a90ebd
AS
1605 return false;
1606 return true;
1607}
f2feb96b 1608
6ff40dec
BF
1609/*
1610 * Return a rough estimate of the maximum possible reply size. Note the
1611 * estimate includes rpc headers so is meant to be passed to
1612 * svc_reserve, not svc_reserve_auth.
1613 *
1614 * Also note the current compound encoding permits only one operation to
1615 * use pages beyond the first one, so the maximum possible length is the
1616 * maximum over these values, not the sum.
1617 */
1618static int nfsd4_max_reply(u32 opnum)
1619{
1620 switch (opnum) {
1621 case OP_READLINK:
1622 case OP_READDIR:
1623 /*
1624 * Both of these ops take a single page for data and put
1625 * the head and tail in another page:
1626 */
1627 return 2 * PAGE_SIZE;
1628 case OP_READ:
1629 return INT_MAX;
1630 default:
1631 return PAGE_SIZE;
1632 }
1633}
1634
b37ad28b 1635static __be32
1da177e4
LT
1636nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1637{
1638 DECODE_HEAD;
1639 struct nfsd4_op *op;
1091006c 1640 bool cachethis = false;
6ff40dec 1641 int max_reply = PAGE_SIZE;
1da177e4
LT
1642 int i;
1643
1da177e4
LT
1644 READ_BUF(4);
1645 READ32(argp->taglen);
1646 READ_BUF(argp->taglen + 8);
1647 SAVEMEM(argp->tag, argp->taglen);
1648 READ32(argp->minorversion);
1649 READ32(argp->opcnt);
1650
1651 if (argp->taglen > NFSD4_MAX_TAGLEN)
1652 goto xdr_error;
1653 if (argp->opcnt > 100)
1654 goto xdr_error;
1655
e8c96f8c 1656 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
1da177e4
LT
1657 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1658 if (!argp->ops) {
1659 argp->ops = argp->iops;
817cb9d4 1660 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
1da177e4
LT
1661 goto xdr_error;
1662 }
1663 }
1664
e1a90ebd 1665 if (argp->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
30cff1ff
BH
1666 argp->opcnt = 0;
1667
1da177e4
LT
1668 for (i = 0; i < argp->opcnt; i++) {
1669 op = &argp->ops[i];
1670 op->replay = NULL;
1671
8a61b18c
BF
1672 READ_BUF(4);
1673 READ32(op->opnum);
1da177e4 1674
e1a90ebd
AS
1675 if (nfsd4_opnum_in_range(argp, op))
1676 op->status = nfsd4_dec_ops[op->opnum](argp, &op->u);
347e0ad9 1677 else {
1da177e4
LT
1678 op->opnum = OP_ILLEGAL;
1679 op->status = nfserr_op_illegal;
1da177e4
LT
1680 }
1681
1682 if (op->status) {
1683 argp->opcnt = i+1;
1684 break;
1685 }
1091006c
BF
1686 /*
1687 * We'll try to cache the result in the DRC if any one
1688 * op in the compound wants to be cached:
1689 */
1690 cachethis |= nfsd4_cache_this_op(op);
6ff40dec
BF
1691
1692 max_reply = max(max_reply, nfsd4_max_reply(op->opnum));
1da177e4 1693 }
1091006c
BF
1694 /* Sessions make the DRC unnecessary: */
1695 if (argp->minorversion)
1696 cachethis = false;
6ff40dec
BF
1697 if (max_reply != INT_MAX)
1698 svc_reserve(argp->rqstp, max_reply);
1091006c 1699 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
1da177e4
LT
1700
1701 DECODE_TAIL;
1702}
1da177e4 1703
1da177e4
LT
1704#define WRITE32(n) *p++ = htonl(n)
1705#define WRITE64(n) do { \
1706 *p++ = htonl((u32)((n) >> 32)); \
1707 *p++ = htonl((u32)(n)); \
1708} while (0)
5108b276 1709#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
1da177e4
LT
1710 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1711 memcpy(p, ptr, nbytes); \
1712 p += XDR_QUADLEN(nbytes); \
5108b276 1713}} while (0)
c654b8a9
BF
1714
1715static void write32(__be32 **p, u32 n)
1716{
45eaa1c1 1717 *(*p)++ = htonl(n);
c654b8a9
BF
1718}
1719
1720static void write64(__be32 **p, u64 n)
1721{
45eaa1c1 1722 write32(p, (n >> 32));
c654b8a9
BF
1723 write32(p, (u32)n);
1724}
1725
1726static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1727{
1728 if (IS_I_VERSION(inode)) {
1729 write64(p, inode->i_version);
1730 } else {
1731 write32(p, stat->ctime.tv_sec);
1732 write32(p, stat->ctime.tv_nsec);
1733 }
1734}
1735
1736static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1737{
1738 write32(p, c->atomic);
1739 if (c->change_supported) {
1740 write64(p, c->before_change);
1741 write64(p, c->after_change);
1742 } else {
1743 write32(p, c->before_ctime_sec);
1744 write32(p, c->before_ctime_nsec);
1745 write32(p, c->after_ctime_sec);
1746 write32(p, c->after_ctime_nsec);
1747 }
1748}
1da177e4
LT
1749
1750#define RESERVE_SPACE(nbytes) do { \
1751 p = resp->p; \
1752 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1753} while (0)
1754#define ADJUST_ARGS() resp->p = p
1755
81c3f413 1756/* Encode as an array of strings the string given with components
e7a0444a 1757 * separated @sep, escaped with esc_enter and esc_exit.
81c3f413 1758 */
e7a0444a
WAA
1759static __be32 nfsd4_encode_components_esc(char sep, char *components,
1760 __be32 **pp, int *buflen,
1761 char esc_enter, char esc_exit)
81c3f413 1762{
2ebbc012
AV
1763 __be32 *p = *pp;
1764 __be32 *countp = p;
81c3f413 1765 int strlen, count=0;
e7a0444a 1766 char *str, *end, *next;
81c3f413
BF
1767
1768 dprintk("nfsd4_encode_components(%s)\n", components);
1769 if ((*buflen -= 4) < 0)
1770 return nfserr_resource;
1771 WRITE32(0); /* We will fill this in with @count later */
1772 end = str = components;
1773 while (*end) {
e7a0444a
WAA
1774 bool found_esc = false;
1775
1776 /* try to parse as esc_start, ..., esc_end, sep */
1777 if (*str == esc_enter) {
1778 for (; *end && (*end != esc_exit); end++)
1779 /* find esc_exit or end of string */;
1780 next = end + 1;
1781 if (*end && (!*next || *next == sep)) {
1782 str++;
1783 found_esc = true;
1784 }
1785 }
1786
1787 if (!found_esc)
1788 for (; *end && (*end != sep); end++)
1789 /* find sep or end of string */;
1790
81c3f413
BF
1791 strlen = end - str;
1792 if (strlen) {
1793 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1794 return nfserr_resource;
1795 WRITE32(strlen);
1796 WRITEMEM(str, strlen);
1797 count++;
1798 }
1799 else
1800 end++;
1801 str = end;
1802 }
1803 *pp = p;
1804 p = countp;
1805 WRITE32(count);
1806 return 0;
1807}
1808
e7a0444a
WAA
1809/* Encode as an array of strings the string given with components
1810 * separated @sep.
1811 */
1812static __be32 nfsd4_encode_components(char sep, char *components,
1813 __be32 **pp, int *buflen)
1814{
1815 return nfsd4_encode_components_esc(sep, components, pp, buflen, 0, 0);
1816}
1817
81c3f413
BF
1818/*
1819 * encode a location element of a fs_locations structure
1820 */
b37ad28b 1821static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
2ebbc012 1822 __be32 **pp, int *buflen)
81c3f413 1823{
b37ad28b 1824 __be32 status;
2ebbc012 1825 __be32 *p = *pp;
81c3f413 1826
e7a0444a
WAA
1827 status = nfsd4_encode_components_esc(':', location->hosts, &p, buflen,
1828 '[', ']');
81c3f413
BF
1829 if (status)
1830 return status;
1831 status = nfsd4_encode_components('/', location->path, &p, buflen);
1832 if (status)
1833 return status;
1834 *pp = p;
1835 return 0;
1836}
1837
1838/*
ed748aac 1839 * Encode a path in RFC3530 'pathname4' format
81c3f413 1840 */
ed748aac
TM
1841static __be32 nfsd4_encode_path(const struct path *root,
1842 const struct path *path, __be32 **pp, int *buflen)
81c3f413 1843{
301f0268 1844 struct path cur = *path;
ed748aac
TM
1845 __be32 *p = *pp;
1846 struct dentry **components = NULL;
1847 unsigned int ncomponents = 0;
1848 __be32 err = nfserr_jukebox;
81c3f413 1849
ed748aac 1850 dprintk("nfsd4_encode_components(");
81c3f413 1851
ed748aac
TM
1852 path_get(&cur);
1853 /* First walk the path up to the nfsd root, and store the
1854 * dentries/path components in an array.
1855 */
1856 for (;;) {
1857 if (cur.dentry == root->dentry && cur.mnt == root->mnt)
1858 break;
1859 if (cur.dentry == cur.mnt->mnt_root) {
1860 if (follow_up(&cur))
1861 continue;
1862 goto out_free;
1863 }
1864 if ((ncomponents & 15) == 0) {
1865 struct dentry **new;
1866 new = krealloc(components,
1867 sizeof(*new) * (ncomponents + 16),
1868 GFP_KERNEL);
1869 if (!new)
1870 goto out_free;
1871 components = new;
1872 }
1873 components[ncomponents++] = cur.dentry;
1874 cur.dentry = dget_parent(cur.dentry);
1875 }
81c3f413 1876
ed748aac
TM
1877 *buflen -= 4;
1878 if (*buflen < 0)
1879 goto out_free;
1880 WRITE32(ncomponents);
1881
1882 while (ncomponents) {
1883 struct dentry *dentry = components[ncomponents - 1];
301f0268 1884 unsigned int len;
ed748aac 1885
301f0268
AV
1886 spin_lock(&dentry->d_lock);
1887 len = dentry->d_name.len;
ed748aac 1888 *buflen -= 4 + (XDR_QUADLEN(len) << 2);
301f0268
AV
1889 if (*buflen < 0) {
1890 spin_unlock(&dentry->d_lock);
ed748aac 1891 goto out_free;
301f0268 1892 }
ed748aac
TM
1893 WRITE32(len);
1894 WRITEMEM(dentry->d_name.name, len);
1895 dprintk("/%s", dentry->d_name.name);
301f0268 1896 spin_unlock(&dentry->d_lock);
ed748aac
TM
1897 dput(dentry);
1898 ncomponents--;
81c3f413 1899 }
ed748aac
TM
1900
1901 *pp = p;
1902 err = 0;
1903out_free:
1904 dprintk(")\n");
1905 while (ncomponents)
1906 dput(components[--ncomponents]);
1907 kfree(components);
1908 path_put(&cur);
1909 return err;
1910}
1911
1912static __be32 nfsd4_encode_fsloc_fsroot(struct svc_rqst *rqstp,
1913 const struct path *path, __be32 **pp, int *buflen)
1914{
1915 struct svc_export *exp_ps;
1916 __be32 res;
1917
1918 exp_ps = rqst_find_fsidzero_export(rqstp);
1919 if (IS_ERR(exp_ps))
1920 return nfserrno(PTR_ERR(exp_ps));
1921 res = nfsd4_encode_path(&exp_ps->ex_path, path, pp, buflen);
1922 exp_put(exp_ps);
1923 return res;
81c3f413
BF
1924}
1925
1926/*
1927 * encode a fs_locations structure
1928 */
b37ad28b 1929static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
81c3f413 1930 struct svc_export *exp,
2ebbc012 1931 __be32 **pp, int *buflen)
81c3f413 1932{
b37ad28b 1933 __be32 status;
cc45f017 1934 int i;
2ebbc012 1935 __be32 *p = *pp;
81c3f413 1936 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
81c3f413 1937
ed748aac 1938 status = nfsd4_encode_fsloc_fsroot(rqstp, &exp->ex_path, &p, buflen);
81c3f413
BF
1939 if (status)
1940 return status;
1941 if ((*buflen -= 4) < 0)
1942 return nfserr_resource;
1943 WRITE32(fslocs->locations_count);
1944 for (i=0; i<fslocs->locations_count; i++) {
1945 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1946 &p, buflen);
1947 if (status)
1948 return status;
1949 }
1950 *pp = p;
1951 return 0;
1952}
1da177e4 1953
3d2544b1
BF
1954static u32 nfs4_file_type(umode_t mode)
1955{
1956 switch (mode & S_IFMT) {
1957 case S_IFIFO: return NF4FIFO;
1958 case S_IFCHR: return NF4CHR;
1959 case S_IFDIR: return NF4DIR;
1960 case S_IFBLK: return NF4BLK;
1961 case S_IFLNK: return NF4LNK;
1962 case S_IFREG: return NF4REG;
1963 case S_IFSOCK: return NF4SOCK;
1964 default: return NF4BAD;
1965 };
1966}
1da177e4 1967
b37ad28b 1968static inline __be32
ab8e4aee 1969nfsd4_encode_aclname(struct svc_rqst *rqstp, struct nfs4_ace *ace,
2ebbc012 1970 __be32 **p, int *buflen)
1da177e4 1971{
3554116d
BF
1972 if (ace->whotype != NFS4_ACL_WHO_NAMED)
1973 return nfs4_acl_write_who(ace->whotype, p, buflen);
1974 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
1975 return nfsd4_encode_group(rqstp, ace->who_gid, p, buflen);
1976 else
1977 return nfsd4_encode_user(rqstp, ace->who_uid, p, buflen);
1da177e4
LT
1978}
1979
42ca0993
BF
1980#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1981 FATTR4_WORD0_RDATTR_ERROR)
1982#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1983
18032ca0
DQ
1984#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
1985static inline __be32
1986nfsd4_encode_security_label(struct svc_rqst *rqstp, void *context, int len, __be32 **pp, int *buflen)
1987{
1988 __be32 *p = *pp;
1989
1990 if (*buflen < ((XDR_QUADLEN(len) << 2) + 4 + 4 + 4))
1991 return nfserr_resource;
1992
1993 /*
1994 * For now we use a 0 here to indicate the null translation; in
1995 * the future we may place a call to translation code here.
1996 */
1997 if ((*buflen -= 8) < 0)
1998 return nfserr_resource;
1999
2000 WRITE32(0); /* lfs */
2001 WRITE32(0); /* pi */
2002 p = xdr_encode_opaque(p, context, len);
2003 *buflen -= (XDR_QUADLEN(len) << 2) + 4;
2004
2005 *pp = p;
2006 return 0;
2007}
2008#else
2009static inline __be32
ba4e55bb 2010nfsd4_encode_security_label(struct svc_rqst *rqstp, void *context, int len, __be32 **pp, int *buflen)
18032ca0
DQ
2011{ return 0; }
2012#endif
2013
b37ad28b 2014static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
42ca0993
BF
2015{
2016 /* As per referral draft: */
2017 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
2018 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
2019 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
2020 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
2021 *rdattr_err = NFSERR_MOVED;
2022 else
2023 return nfserr_moved;
2024 }
2025 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
2026 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
2027 return 0;
2028}
1da177e4 2029
ae7095a7
BF
2030
2031static int get_parent_attributes(struct svc_export *exp, struct kstat *stat)
2032{
2033 struct path path = exp->ex_path;
2034 int err;
2035
2036 path_get(&path);
2037 while (follow_up(&path)) {
2038 if (path.dentry != path.mnt->mnt_root)
2039 break;
2040 }
3dadecce 2041 err = vfs_getattr(&path, stat);
ae7095a7
BF
2042 path_put(&path);
2043 return err;
2044}
2045
1da177e4
LT
2046/*
2047 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2048 * ourselves.
2049 *
84822d0b 2050 * countp is the buffer size in _words_
1da177e4 2051 */
b37ad28b 2052__be32
1da177e4 2053nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
84822d0b 2054 struct dentry *dentry, __be32 **buffer, int count, u32 *bmval,
406a7ea9 2055 struct svc_rqst *rqstp, int ignore_crossmnt)
1da177e4
LT
2056{
2057 u32 bmval0 = bmval[0];
2058 u32 bmval1 = bmval[1];
7e705706 2059 u32 bmval2 = bmval[2];
1da177e4 2060 struct kstat stat;
d50e6136 2061 struct svc_fh *tempfh = NULL;
1da177e4 2062 struct kstatfs statfs;
84822d0b 2063 int buflen = count << 2;
2ebbc012 2064 __be32 *attrlenp;
1da177e4
LT
2065 u32 dummy;
2066 u64 dummy64;
42ca0993 2067 u32 rdattr_err = 0;
84822d0b 2068 __be32 *p = *buffer;
b37ad28b 2069 __be32 status;
b8dd7b9a 2070 int err;
1da177e4
LT
2071 int aclsupport = 0;
2072 struct nfs4_acl *acl = NULL;
18032ca0
DQ
2073 void *context = NULL;
2074 int contextlen;
2075 bool contextsupport = false;
7e705706
AA
2076 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2077 u32 minorversion = resp->cstate.minorversion;
ebabe9a9
CH
2078 struct path path = {
2079 .mnt = exp->ex_path.mnt,
2080 .dentry = dentry,
2081 };
3d733711 2082 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1da177e4
LT
2083
2084 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
7e705706
AA
2085 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
2086 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
2087 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
1da177e4 2088
42ca0993 2089 if (exp->ex_fslocs.migrated) {
7e705706 2090 BUG_ON(bmval[2]);
42ca0993
BF
2091 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
2092 if (status)
2093 goto out;
2094 }
2095
3dadecce 2096 err = vfs_getattr(&path, &stat);
b8dd7b9a 2097 if (err)
1da177e4 2098 goto out_nfserr;
a16e92ed
BF
2099 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
2100 FATTR4_WORD0_MAXNAME)) ||
1da177e4
LT
2101 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
2102 FATTR4_WORD1_SPACE_TOTAL))) {
ebabe9a9 2103 err = vfs_statfs(&path, &statfs);
b8dd7b9a 2104 if (err)
1da177e4
LT
2105 goto out_nfserr;
2106 }
2107 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
d50e6136
BF
2108 tempfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
2109 status = nfserr_jukebox;
2110 if (!tempfh)
2111 goto out;
2112 fh_init(tempfh, NFS4_FHSIZE);
2113 status = fh_compose(tempfh, exp, dentry, NULL);
1da177e4
LT
2114 if (status)
2115 goto out;
d50e6136 2116 fhp = tempfh;
1da177e4
LT
2117 }
2118 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
2119 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
b8dd7b9a
AV
2120 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
2121 aclsupport = (err == 0);
1da177e4 2122 if (bmval0 & FATTR4_WORD0_ACL) {
b8dd7b9a 2123 if (err == -EOPNOTSUPP)
1da177e4 2124 bmval0 &= ~FATTR4_WORD0_ACL;
b8dd7b9a 2125 else if (err == -EINVAL) {
1da177e4
LT
2126 status = nfserr_attrnotsupp;
2127 goto out;
b8dd7b9a 2128 } else if (err != 0)
1da177e4
LT
2129 goto out_nfserr;
2130 }
2131 }
1da177e4 2132
18032ca0
DQ
2133#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
2134 if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) ||
2135 bmval[0] & FATTR4_WORD0_SUPPORTED_ATTRS) {
2136 err = security_inode_getsecctx(dentry->d_inode,
2137 &context, &contextlen);
2138 contextsupport = (err == 0);
2139 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
2140 if (err == -EOPNOTSUPP)
2141 bmval2 &= ~FATTR4_WORD2_SECURITY_LABEL;
2142 else if (err)
2143 goto out_nfserr;
2144 }
2145 }
2146#endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
2147
2b44f1ba
BH
2148 if (bmval2) {
2149 if ((buflen -= 16) < 0)
2150 goto out_resource;
7e705706
AA
2151 WRITE32(3);
2152 WRITE32(bmval0);
2153 WRITE32(bmval1);
2154 WRITE32(bmval2);
2b44f1ba
BH
2155 } else if (bmval1) {
2156 if ((buflen -= 12) < 0)
2157 goto out_resource;
7e705706
AA
2158 WRITE32(2);
2159 WRITE32(bmval0);
2160 WRITE32(bmval1);
2161 } else {
2b44f1ba
BH
2162 if ((buflen -= 8) < 0)
2163 goto out_resource;
7e705706
AA
2164 WRITE32(1);
2165 WRITE32(bmval0);
2166 }
1da177e4
LT
2167 attrlenp = p++; /* to be backfilled later */
2168
2169 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
7e705706
AA
2170 u32 word0 = nfsd_suppattrs0(minorversion);
2171 u32 word1 = nfsd_suppattrs1(minorversion);
2172 u32 word2 = nfsd_suppattrs2(minorversion);
2173
42ca0993
BF
2174 if (!aclsupport)
2175 word0 &= ~FATTR4_WORD0_ACL;
18032ca0
DQ
2176 if (!contextsupport)
2177 word2 &= ~FATTR4_WORD2_SECURITY_LABEL;
7e705706 2178 if (!word2) {
2b44f1ba
BH
2179 if ((buflen -= 12) < 0)
2180 goto out_resource;
7e705706
AA
2181 WRITE32(2);
2182 WRITE32(word0);
2183 WRITE32(word1);
2184 } else {
2b44f1ba
BH
2185 if ((buflen -= 16) < 0)
2186 goto out_resource;
7e705706
AA
2187 WRITE32(3);
2188 WRITE32(word0);
2189 WRITE32(word1);
2190 WRITE32(word2);
2191 }
1da177e4
LT
2192 }
2193 if (bmval0 & FATTR4_WORD0_TYPE) {
2194 if ((buflen -= 4) < 0)
2195 goto out_resource;
3d2544b1 2196 dummy = nfs4_file_type(stat.mode);
6b6d8137
BF
2197 if (dummy == NF4BAD) {
2198 status = nfserr_serverfault;
2199 goto out;
2200 }
1da177e4
LT
2201 WRITE32(dummy);
2202 }
2203 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
2204 if ((buflen -= 4) < 0)
2205 goto out_resource;
49640001 2206 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
e34ac862 2207 WRITE32(NFS4_FH_PERSISTENT);
49640001 2208 else
e34ac862 2209 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
1da177e4
LT
2210 }
2211 if (bmval0 & FATTR4_WORD0_CHANGE) {
1da177e4
LT
2212 if ((buflen -= 8) < 0)
2213 goto out_resource;
c654b8a9 2214 write_change(&p, &stat, dentry->d_inode);
1da177e4
LT
2215 }
2216 if (bmval0 & FATTR4_WORD0_SIZE) {
2217 if ((buflen -= 8) < 0)
2218 goto out_resource;
2219 WRITE64(stat.size);
2220 }
2221 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
2222 if ((buflen -= 4) < 0)
2223 goto out_resource;
2224 WRITE32(1);
2225 }
2226 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
2227 if ((buflen -= 4) < 0)
2228 goto out_resource;
2229 WRITE32(1);
2230 }
2231 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
2232 if ((buflen -= 4) < 0)
2233 goto out_resource;
2234 WRITE32(0);
2235 }
2236 if (bmval0 & FATTR4_WORD0_FSID) {
2237 if ((buflen -= 16) < 0)
2238 goto out_resource;
42ca0993
BF
2239 if (exp->ex_fslocs.migrated) {
2240 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
2241 WRITE64(NFS4_REFERRAL_FSID_MINOR);
af6a4e28
N
2242 } else switch(fsid_source(fhp)) {
2243 case FSIDSOURCE_FSID:
1da177e4
LT
2244 WRITE64((u64)exp->ex_fsid);
2245 WRITE64((u64)0);
af6a4e28
N
2246 break;
2247 case FSIDSOURCE_DEV:
1da177e4
LT
2248 WRITE32(0);
2249 WRITE32(MAJOR(stat.dev));
2250 WRITE32(0);
2251 WRITE32(MINOR(stat.dev));
af6a4e28
N
2252 break;
2253 case FSIDSOURCE_UUID:
2254 WRITEMEM(exp->ex_uuid, 16);
2255 break;
1da177e4
LT
2256 }
2257 }
2258 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
2259 if ((buflen -= 4) < 0)
2260 goto out_resource;
2261 WRITE32(0);
2262 }
2263 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
2264 if ((buflen -= 4) < 0)
2265 goto out_resource;
3d733711 2266 WRITE32(nn->nfsd4_lease);
1da177e4
LT
2267 }
2268 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
2269 if ((buflen -= 4) < 0)
2270 goto out_resource;
42ca0993 2271 WRITE32(rdattr_err);
1da177e4
LT
2272 }
2273 if (bmval0 & FATTR4_WORD0_ACL) {
2274 struct nfs4_ace *ace;
1da177e4
LT
2275
2276 if (acl == NULL) {
2277 if ((buflen -= 4) < 0)
2278 goto out_resource;
2279
2280 WRITE32(0);
2281 goto out_acl;
2282 }
2283 if ((buflen -= 4) < 0)
2284 goto out_resource;
2285 WRITE32(acl->naces);
2286
28e05dd8 2287 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
1da177e4
LT
2288 if ((buflen -= 4*3) < 0)
2289 goto out_resource;
2290 WRITE32(ace->type);
2291 WRITE32(ace->flag);
2292 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
ab8e4aee 2293 status = nfsd4_encode_aclname(rqstp, ace, &p, &buflen);
1da177e4
LT
2294 if (status)
2295 goto out;
2296 }
2297 }
2298out_acl:
2299 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
2300 if ((buflen -= 4) < 0)
2301 goto out_resource;
2302 WRITE32(aclsupport ?
2303 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
2304 }
2305 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
2306 if ((buflen -= 4) < 0)
2307 goto out_resource;
2308 WRITE32(1);
2309 }
2310 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
2311 if ((buflen -= 4) < 0)
2312 goto out_resource;
2930d381 2313 WRITE32(0);
1da177e4
LT
2314 }
2315 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
2316 if ((buflen -= 4) < 0)
2317 goto out_resource;
2318 WRITE32(1);
2319 }
2320 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2321 if ((buflen -= 4) < 0)
2322 goto out_resource;
2323 WRITE32(1);
2324 }
2325 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2326 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2327 if (buflen < 0)
2328 goto out_resource;
2329 WRITE32(fhp->fh_handle.fh_size);
2330 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2331 }
2332 if (bmval0 & FATTR4_WORD0_FILEID) {
2333 if ((buflen -= 8) < 0)
2334 goto out_resource;
40ee5dc6 2335 WRITE64(stat.ino);
1da177e4
LT
2336 }
2337 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2338 if ((buflen -= 8) < 0)
2339 goto out_resource;
2340 WRITE64((u64) statfs.f_ffree);
2341 }
2342 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2343 if ((buflen -= 8) < 0)
2344 goto out_resource;
2345 WRITE64((u64) statfs.f_ffree);
2346 }
2347 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2348 if ((buflen -= 8) < 0)
2349 goto out_resource;
2350 WRITE64((u64) statfs.f_files);
2351 }
81c3f413
BF
2352 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2353 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
81c3f413
BF
2354 if (status)
2355 goto out;
2356 }
1da177e4
LT
2357 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2358 if ((buflen -= 4) < 0)
2359 goto out_resource;
2360 WRITE32(1);
2361 }
2362 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2363 if ((buflen -= 8) < 0)
2364 goto out_resource;
aea240f4 2365 WRITE64(exp->ex_path.mnt->mnt_sb->s_maxbytes);
1da177e4
LT
2366 }
2367 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2368 if ((buflen -= 4) < 0)
2369 goto out_resource;
2370 WRITE32(255);
2371 }
2372 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2373 if ((buflen -= 4) < 0)
2374 goto out_resource;
a16e92ed 2375 WRITE32(statfs.f_namelen);
1da177e4
LT
2376 }
2377 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2378 if ((buflen -= 8) < 0)
2379 goto out_resource;
7adae489 2380 WRITE64((u64) svc_max_payload(rqstp));
1da177e4
LT
2381 }
2382 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2383 if ((buflen -= 8) < 0)
2384 goto out_resource;
7adae489 2385 WRITE64((u64) svc_max_payload(rqstp));
1da177e4
LT
2386 }
2387 if (bmval1 & FATTR4_WORD1_MODE) {
2388 if ((buflen -= 4) < 0)
2389 goto out_resource;
2390 WRITE32(stat.mode & S_IALLUGO);
2391 }
2392 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2393 if ((buflen -= 4) < 0)
2394 goto out_resource;
2395 WRITE32(1);
2396 }
2397 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2398 if ((buflen -= 4) < 0)
2399 goto out_resource;
2400 WRITE32(stat.nlink);
2401 }
2402 if (bmval1 & FATTR4_WORD1_OWNER) {
2403 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
1da177e4
LT
2404 if (status)
2405 goto out;
2406 }
2407 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2408 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
1da177e4
LT
2409 if (status)
2410 goto out;
2411 }
2412 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2413 if ((buflen -= 8) < 0)
2414 goto out_resource;
2415 WRITE32((u32) MAJOR(stat.rdev));
2416 WRITE32((u32) MINOR(stat.rdev));
2417 }
2418 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2419 if ((buflen -= 8) < 0)
2420 goto out_resource;
2421 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2422 WRITE64(dummy64);
2423 }
2424 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2425 if ((buflen -= 8) < 0)
2426 goto out_resource;
2427 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2428 WRITE64(dummy64);
2429 }
2430 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2431 if ((buflen -= 8) < 0)
2432 goto out_resource;
2433 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2434 WRITE64(dummy64);
2435 }
2436 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2437 if ((buflen -= 8) < 0)
2438 goto out_resource;
2439 dummy64 = (u64)stat.blocks << 9;
2440 WRITE64(dummy64);
2441 }
2442 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2443 if ((buflen -= 12) < 0)
2444 goto out_resource;
bf8d9097 2445 WRITE64((s64)stat.atime.tv_sec);
1da177e4
LT
2446 WRITE32(stat.atime.tv_nsec);
2447 }
2448 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2449 if ((buflen -= 12) < 0)
2450 goto out_resource;
2451 WRITE32(0);
2452 WRITE32(1);
2453 WRITE32(0);
2454 }
2455 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2456 if ((buflen -= 12) < 0)
2457 goto out_resource;
bf8d9097 2458 WRITE64((s64)stat.ctime.tv_sec);
1da177e4
LT
2459 WRITE32(stat.ctime.tv_nsec);
2460 }
2461 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2462 if ((buflen -= 12) < 0)
2463 goto out_resource;
bf8d9097 2464 WRITE64((s64)stat.mtime.tv_sec);
1da177e4
LT
2465 WRITE32(stat.mtime.tv_nsec);
2466 }
2467 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
1da177e4
LT
2468 if ((buflen -= 8) < 0)
2469 goto out_resource;
406a7ea9
FF
2470 /*
2471 * Get parent's attributes if not ignoring crossmount
2472 * and this is the root of a cross-mounted filesystem.
2473 */
2474 if (ignore_crossmnt == 0 &&
ae7095a7
BF
2475 dentry == exp->ex_path.mnt->mnt_root)
2476 get_parent_attributes(exp, &stat);
40ee5dc6 2477 WRITE64(stat.ino);
1da177e4 2478 }
18032ca0
DQ
2479 if (bmval2 & FATTR4_WORD2_SECURITY_LABEL) {
2480 status = nfsd4_encode_security_label(rqstp, context,
2481 contextlen, &p, &buflen);
2482 if (status)
2483 goto out;
2484 }
8c18f205 2485 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
de3997a7
BF
2486 if ((buflen -= 16) < 0)
2487 goto out_resource;
8c18f205
BH
2488 WRITE32(3);
2489 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2490 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2491 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2492 }
7e705706 2493
1da177e4 2494 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
84822d0b 2495 *buffer = p;
1da177e4
LT
2496 status = nfs_ok;
2497
2498out:
ba4e55bb 2499#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
18032ca0
DQ
2500 if (context)
2501 security_release_secctx(context, contextlen);
ba4e55bb 2502#endif /* CONFIG_NFSD_V4_SECURITY_LABEL */
28e05dd8 2503 kfree(acl);
d50e6136
BF
2504 if (tempfh)
2505 fh_put(tempfh);
1da177e4
LT
2506 return status;
2507out_nfserr:
b8dd7b9a 2508 status = nfserrno(err);
1da177e4
LT
2509 goto out;
2510out_resource:
1da177e4
LT
2511 status = nfserr_resource;
2512 goto out;
1da177e4
LT
2513}
2514
c0ce6ec8
BF
2515static inline int attributes_need_mount(u32 *bmval)
2516{
2517 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2518 return 1;
2519 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2520 return 1;
2521 return 0;
2522}
2523
b37ad28b 2524static __be32
1da177e4 2525nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
84822d0b 2526 const char *name, int namlen, __be32 **p, int buflen)
1da177e4
LT
2527{
2528 struct svc_export *exp = cd->rd_fhp->fh_export;
2529 struct dentry *dentry;
b37ad28b 2530 __be32 nfserr;
406a7ea9 2531 int ignore_crossmnt = 0;
1da177e4
LT
2532
2533 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2534 if (IS_ERR(dentry))
2535 return nfserrno(PTR_ERR(dentry));
b2c0cea6
BF
2536 if (!dentry->d_inode) {
2537 /*
2538 * nfsd_buffered_readdir drops the i_mutex between
2539 * readdir and calling this callback, leaving a window
2540 * where this directory entry could have gone away.
2541 */
2542 dput(dentry);
2543 return nfserr_noent;
2544 }
1da177e4
LT
2545
2546 exp_get(exp);
406a7ea9
FF
2547 /*
2548 * In the case of a mountpoint, the client may be asking for
2549 * attributes that are only properties of the underlying filesystem
2550 * as opposed to the cross-mounted file system. In such a case,
2551 * we will not follow the cross mount and will fill the attribtutes
2552 * directly from the mountpoint dentry.
2553 */
3227fa41 2554 if (nfsd_mountpoint(dentry, exp)) {
021d3a72
BF
2555 int err;
2556
3227fa41
BF
2557 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2558 && !attributes_need_mount(cd->rd_bmval)) {
2559 ignore_crossmnt = 1;
2560 goto out_encode;
2561 }
dcb488a3
AA
2562 /*
2563 * Why the heck aren't we just using nfsd_lookup??
2564 * Different "."/".." handling? Something else?
2565 * At least, add a comment here to explain....
2566 */
021d3a72
BF
2567 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2568 if (err) {
2569 nfserr = nfserrno(err);
1da177e4
LT
2570 goto out_put;
2571 }
dcb488a3
AA
2572 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2573 if (nfserr)
2574 goto out_put;
1da177e4
LT
2575
2576 }
3227fa41 2577out_encode:
1da177e4 2578 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
406a7ea9 2579 cd->rd_rqstp, ignore_crossmnt);
1da177e4
LT
2580out_put:
2581 dput(dentry);
2582 exp_put(exp);
2583 return nfserr;
2584}
2585
2ebbc012 2586static __be32 *
b37ad28b 2587nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
1da177e4 2588{
1da177e4
LT
2589 if (buflen < 6)
2590 return NULL;
2591 *p++ = htonl(2);
2592 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2593 *p++ = htonl(0); /* bmval1 */
2594
87915c64 2595 *p++ = htonl(4); /* attribute length */
1da177e4 2596 *p++ = nfserr; /* no htonl */
1da177e4
LT
2597 return p;
2598}
2599
2600static int
a0ad13ef
N
2601nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2602 loff_t offset, u64 ino, unsigned int d_type)
1da177e4 2603{
a0ad13ef 2604 struct readdir_cd *ccd = ccdv;
1da177e4
LT
2605 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2606 int buflen;
2ebbc012 2607 __be32 *p = cd->buffer;
b2c0cea6 2608 __be32 *cookiep;
b37ad28b 2609 __be32 nfserr = nfserr_toosmall;
1da177e4
LT
2610
2611 /* In nfsv4, "." and ".." never make it onto the wire.. */
2612 if (name && isdotent(name, namlen)) {
2613 cd->common.err = nfs_ok;
2614 return 0;
2615 }
2616
2617 if (cd->offset)
2618 xdr_encode_hyper(cd->offset, (u64) offset);
2619
2620 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2621 if (buflen < 0)
2622 goto fail;
2623
2624 *p++ = xdr_one; /* mark entry present */
b2c0cea6 2625 cookiep = p;
1da177e4
LT
2626 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2627 p = xdr_encode_array(p, name, namlen); /* name length & name */
2628
84822d0b 2629 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, &p, buflen);
1da177e4
LT
2630 switch (nfserr) {
2631 case nfs_ok:
1da177e4
LT
2632 break;
2633 case nfserr_resource:
2634 nfserr = nfserr_toosmall;
2635 goto fail;
b2c0cea6
BF
2636 case nfserr_noent:
2637 goto skip_entry;
1da177e4
LT
2638 default:
2639 /*
2640 * If the client requested the RDATTR_ERROR attribute,
2641 * we stuff the error code into this attribute
2642 * and continue. If this attribute was not requested,
2643 * then in accordance with the spec, we fail the
2644 * entire READDIR operation(!)
2645 */
2646 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2647 goto fail;
1da177e4 2648 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
34081efc
FI
2649 if (p == NULL) {
2650 nfserr = nfserr_toosmall;
1da177e4 2651 goto fail;
34081efc 2652 }
1da177e4
LT
2653 }
2654 cd->buflen -= (p - cd->buffer);
2655 cd->buffer = p;
b2c0cea6
BF
2656 cd->offset = cookiep;
2657skip_entry:
1da177e4
LT
2658 cd->common.err = nfs_ok;
2659 return 0;
2660fail:
2661 cd->common.err = nfserr;
2662 return -EINVAL;
2663}
2664
e2f282b9
BH
2665static void
2666nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2667{
bc749ca4 2668 __be32 *p;
e2f282b9
BH
2669
2670 RESERVE_SPACE(sizeof(stateid_t));
2671 WRITE32(sid->si_generation);
2672 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2673 ADJUST_ARGS();
2674}
2675
695e12f8 2676static __be32
b37ad28b 2677nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
1da177e4 2678{
bc749ca4 2679 __be32 *p;
1da177e4
LT
2680
2681 if (!nfserr) {
2682 RESERVE_SPACE(8);
2683 WRITE32(access->ac_supported);
2684 WRITE32(access->ac_resp_access);
2685 ADJUST_ARGS();
2686 }
695e12f8 2687 return nfserr;
1da177e4
LT
2688}
2689
1d1bc8f2
BF
2690static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
2691{
2692 __be32 *p;
2693
2694 if (!nfserr) {
2695 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 8);
2696 WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
2697 WRITE32(bcts->dir);
6e67b5d1 2698 /* Sorry, we do not yet support RDMA over 4.1: */
1d1bc8f2
BF
2699 WRITE32(0);
2700 ADJUST_ARGS();
2701 }
2702 return nfserr;
2703}
2704
695e12f8 2705static __be32
b37ad28b 2706nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
1da177e4 2707{
e2f282b9
BH
2708 if (!nfserr)
2709 nfsd4_encode_stateid(resp, &close->cl_stateid);
2710
695e12f8 2711 return nfserr;
1da177e4
LT
2712}
2713
2714
695e12f8 2715static __be32
b37ad28b 2716nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
1da177e4 2717{
bc749ca4 2718 __be32 *p;
1da177e4
LT
2719
2720 if (!nfserr) {
ab4684d1
CL
2721 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
2722 WRITEMEM(commit->co_verf.data, NFS4_VERIFIER_SIZE);
1da177e4
LT
2723 ADJUST_ARGS();
2724 }
695e12f8 2725 return nfserr;
1da177e4
LT
2726}
2727
695e12f8 2728static __be32
b37ad28b 2729nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
1da177e4 2730{
bc749ca4 2731 __be32 *p;
1da177e4
LT
2732
2733 if (!nfserr) {
2734 RESERVE_SPACE(32);
c654b8a9 2735 write_cinfo(&p, &create->cr_cinfo);
1da177e4
LT
2736 WRITE32(2);
2737 WRITE32(create->cr_bmval[0]);
2738 WRITE32(create->cr_bmval[1]);
2739 ADJUST_ARGS();
2740 }
695e12f8 2741 return nfserr;
1da177e4
LT
2742}
2743
b37ad28b
AV
2744static __be32
2745nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
1da177e4
LT
2746{
2747 struct svc_fh *fhp = getattr->ga_fhp;
2748 int buflen;
2749
2750 if (nfserr)
2751 return nfserr;
2752
2753 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2754 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
84822d0b 2755 &resp->p, buflen, getattr->ga_bmval,
406a7ea9 2756 resp->rqstp, 0);
1da177e4
LT
2757 return nfserr;
2758}
2759
695e12f8
BH
2760static __be32
2761nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
1da177e4 2762{
695e12f8 2763 struct svc_fh *fhp = *fhpp;
1da177e4 2764 unsigned int len;
bc749ca4 2765 __be32 *p;
1da177e4
LT
2766
2767 if (!nfserr) {
2768 len = fhp->fh_handle.fh_size;
2769 RESERVE_SPACE(len + 4);
2770 WRITE32(len);
2771 WRITEMEM(&fhp->fh_handle.fh_base, len);
2772 ADJUST_ARGS();
2773 }
695e12f8 2774 return nfserr;
1da177e4
LT
2775}
2776
2777/*
2778* Including all fields other than the name, a LOCK4denied structure requires
2779* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2780*/
2781static void
2782nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2783{
7c13f344 2784 struct xdr_netobj *conf = &ld->ld_owner;
bc749ca4 2785 __be32 *p;
1da177e4 2786
7c13f344 2787 RESERVE_SPACE(32 + XDR_LEN(conf->len));
1da177e4
LT
2788 WRITE64(ld->ld_start);
2789 WRITE64(ld->ld_length);
2790 WRITE32(ld->ld_type);
7c13f344 2791 if (conf->len) {
1da177e4 2792 WRITEMEM(&ld->ld_clientid, 8);
7c13f344
BF
2793 WRITE32(conf->len);
2794 WRITEMEM(conf->data, conf->len);
2795 kfree(conf->data);
1da177e4
LT
2796 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2797 WRITE64((u64)0); /* clientid */
2798 WRITE32(0); /* length of owner name */
2799 }
2800 ADJUST_ARGS();
2801}
2802
695e12f8 2803static __be32
b37ad28b 2804nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
1da177e4 2805{
e2f282b9
BH
2806 if (!nfserr)
2807 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2808 else if (nfserr == nfserr_denied)
1da177e4
LT
2809 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2810
695e12f8 2811 return nfserr;
1da177e4
LT
2812}
2813
695e12f8 2814static __be32
b37ad28b 2815nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
1da177e4
LT
2816{
2817 if (nfserr == nfserr_denied)
2818 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
695e12f8 2819 return nfserr;
1da177e4
LT
2820}
2821
695e12f8 2822static __be32
b37ad28b 2823nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
1da177e4 2824{
e2f282b9
BH
2825 if (!nfserr)
2826 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2827
695e12f8 2828 return nfserr;
1da177e4
LT
2829}
2830
2831
695e12f8 2832static __be32
b37ad28b 2833nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
1da177e4 2834{
bc749ca4 2835 __be32 *p;
1da177e4
LT
2836
2837 if (!nfserr) {
2838 RESERVE_SPACE(20);
c654b8a9 2839 write_cinfo(&p, &link->li_cinfo);
1da177e4
LT
2840 ADJUST_ARGS();
2841 }
695e12f8 2842 return nfserr;
1da177e4
LT
2843}
2844
2845
695e12f8 2846static __be32
b37ad28b 2847nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
1da177e4 2848{
bc749ca4 2849 __be32 *p;
1da177e4
LT
2850
2851 if (nfserr)
2852 goto out;
2853
e2f282b9
BH
2854 nfsd4_encode_stateid(resp, &open->op_stateid);
2855 RESERVE_SPACE(40);
c654b8a9 2856 write_cinfo(&p, &open->op_cinfo);
1da177e4
LT
2857 WRITE32(open->op_rflags);
2858 WRITE32(2);
2859 WRITE32(open->op_bmval[0]);
2860 WRITE32(open->op_bmval[1]);
2861 WRITE32(open->op_delegate_type);
2862 ADJUST_ARGS();
2863
2864 switch (open->op_delegate_type) {
2865 case NFS4_OPEN_DELEGATE_NONE:
2866 break;
2867 case NFS4_OPEN_DELEGATE_READ:
e2f282b9
BH
2868 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2869 RESERVE_SPACE(20);
7b190fec 2870 WRITE32(open->op_recall);
1da177e4
LT
2871
2872 /*
2873 * TODO: ACE's in delegations
2874 */
2875 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2876 WRITE32(0);
2877 WRITE32(0);
2878 WRITE32(0); /* XXX: is NULL principal ok? */
2879 ADJUST_ARGS();
2880 break;
2881 case NFS4_OPEN_DELEGATE_WRITE:
e2f282b9
BH
2882 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2883 RESERVE_SPACE(32);
1da177e4
LT
2884 WRITE32(0);
2885
2886 /*
2887 * TODO: space_limit's in delegations
2888 */
2889 WRITE32(NFS4_LIMIT_SIZE);
2890 WRITE32(~(u32)0);
2891 WRITE32(~(u32)0);
2892
2893 /*
2894 * TODO: ACE's in delegations
2895 */
2896 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2897 WRITE32(0);
2898 WRITE32(0);
2899 WRITE32(0); /* XXX: is NULL principal ok? */
2900 ADJUST_ARGS();
2901 break;
d24433cd
BH
2902 case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */
2903 switch (open->op_why_no_deleg) {
2904 case WND4_CONTENTION:
2905 case WND4_RESOURCE:
2906 RESERVE_SPACE(8);
2907 WRITE32(open->op_why_no_deleg);
2908 WRITE32(0); /* deleg signaling not supported yet */
2909 break;
2910 default:
2911 RESERVE_SPACE(4);
2912 WRITE32(open->op_why_no_deleg);
2913 }
2914 ADJUST_ARGS();
2915 break;
1da177e4
LT
2916 default:
2917 BUG();
2918 }
2919 /* XXX save filehandle here */
2920out:
695e12f8 2921 return nfserr;
1da177e4
LT
2922}
2923
695e12f8 2924static __be32
b37ad28b 2925nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
1da177e4 2926{
e2f282b9
BH
2927 if (!nfserr)
2928 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
1da177e4 2929
695e12f8 2930 return nfserr;
1da177e4
LT
2931}
2932
695e12f8 2933static __be32
b37ad28b 2934nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
1da177e4 2935{
e2f282b9
BH
2936 if (!nfserr)
2937 nfsd4_encode_stateid(resp, &od->od_stateid);
1da177e4 2938
695e12f8 2939 return nfserr;
1da177e4
LT
2940}
2941
b37ad28b
AV
2942static __be32
2943nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
44524359 2944 struct nfsd4_read *read)
1da177e4
LT
2945{
2946 u32 eof;
afc59400
BF
2947 int v;
2948 struct page *page;
1da177e4
LT
2949 unsigned long maxcount;
2950 long len;
bc749ca4 2951 __be32 *p;
1da177e4
LT
2952
2953 if (nfserr)
2954 return nfserr;
2955 if (resp->xbuf->page_len)
2956 return nfserr_resource;
2957
2958 RESERVE_SPACE(8); /* eof flag and byte count */
2959
7adae489 2960 maxcount = svc_max_payload(resp->rqstp);
1da177e4
LT
2961 if (maxcount > read->rd_length)
2962 maxcount = read->rd_length;
2963
2964 len = maxcount;
2965 v = 0;
2966 while (len > 0) {
afc59400
BF
2967 page = *(resp->rqstp->rq_next_page);
2968 if (!page) { /* ran out of pages */
d5f50b0c
BF
2969 maxcount -= len;
2970 break;
2971 }
afc59400 2972 resp->rqstp->rq_vec[v].iov_base = page_address(page);
3cc03b16 2973 resp->rqstp->rq_vec[v].iov_len =
44524359 2974 len < PAGE_SIZE ? len : PAGE_SIZE;
afc59400 2975 resp->rqstp->rq_next_page++;
1da177e4
LT
2976 v++;
2977 len -= PAGE_SIZE;
2978 }
2979 read->rd_vlen = v;
2980
039a87ca 2981 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
3cc03b16 2982 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
1da177e4
LT
2983 &maxcount);
2984
1da177e4
LT
2985 if (nfserr)
2986 return nfserr;
44524359
N
2987 eof = (read->rd_offset + maxcount >=
2988 read->rd_fhp->fh_dentry->d_inode->i_size);
1da177e4
LT
2989
2990 WRITE32(eof);
2991 WRITE32(maxcount);
2992 ADJUST_ARGS();
6ed6decc
N
2993 resp->xbuf->head[0].iov_len = (char*)p
2994 - (char*)resp->xbuf->head[0].iov_base;
1da177e4
LT
2995 resp->xbuf->page_len = maxcount;
2996
6ed6decc 2997 /* Use rest of head for padding and remaining ops: */
6ed6decc 2998 resp->xbuf->tail[0].iov_base = p;
1da177e4 2999 resp->xbuf->tail[0].iov_len = 0;
1da177e4 3000 if (maxcount&3) {
6ed6decc
N
3001 RESERVE_SPACE(4);
3002 WRITE32(0);
1da177e4
LT
3003 resp->xbuf->tail[0].iov_base += maxcount&3;
3004 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
6ed6decc 3005 ADJUST_ARGS();
1da177e4
LT
3006 }
3007 return 0;
3008}
3009
b37ad28b
AV
3010static __be32
3011nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
1da177e4
LT
3012{
3013 int maxcount;
3014 char *page;
bc749ca4 3015 __be32 *p;
1da177e4
LT
3016
3017 if (nfserr)
3018 return nfserr;
3019 if (resp->xbuf->page_len)
3020 return nfserr_resource;
afc59400 3021 if (!*resp->rqstp->rq_next_page)
d5f50b0c 3022 return nfserr_resource;
1da177e4 3023
afc59400 3024 page = page_address(*(resp->rqstp->rq_next_page++));
1da177e4
LT
3025
3026 maxcount = PAGE_SIZE;
3027 RESERVE_SPACE(4);
3028
3029 /*
3030 * XXX: By default, the ->readlink() VFS op will truncate symlinks
3031 * if they would overflow the buffer. Is this kosher in NFSv4? If
3032 * not, one easy fix is: if ->readlink() precisely fills the buffer,
3033 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
3034 */
3035 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
3036 if (nfserr == nfserr_isdir)
3037 return nfserr_inval;
3038 if (nfserr)
3039 return nfserr;
3040
3041 WRITE32(maxcount);
3042 ADJUST_ARGS();
6ed6decc
N
3043 resp->xbuf->head[0].iov_len = (char*)p
3044 - (char*)resp->xbuf->head[0].iov_base;
3045 resp->xbuf->page_len = maxcount;
1da177e4 3046
6ed6decc 3047 /* Use rest of head for padding and remaining ops: */
6ed6decc 3048 resp->xbuf->tail[0].iov_base = p;
1da177e4 3049 resp->xbuf->tail[0].iov_len = 0;
1da177e4 3050 if (maxcount&3) {
6ed6decc
N
3051 RESERVE_SPACE(4);
3052 WRITE32(0);
1da177e4
LT
3053 resp->xbuf->tail[0].iov_base += maxcount&3;
3054 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
6ed6decc 3055 ADJUST_ARGS();
1da177e4
LT
3056 }
3057 return 0;
3058}
3059
b37ad28b
AV
3060static __be32
3061nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
1da177e4
LT
3062{
3063 int maxcount;
3064 loff_t offset;
2ebbc012 3065 __be32 *page, *savep, *tailbase;
bc749ca4 3066 __be32 *p;
1da177e4
LT
3067
3068 if (nfserr)
3069 return nfserr;
3070 if (resp->xbuf->page_len)
3071 return nfserr_resource;
afc59400 3072 if (!*resp->rqstp->rq_next_page)
d5f50b0c 3073 return nfserr_resource;
1da177e4 3074
ab4684d1 3075 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
1da177e4
LT
3076 savep = p;
3077
3078 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
3079 WRITE32(0);
3080 WRITE32(0);
3081 ADJUST_ARGS();
3082 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
bb6e8a9f 3083 tailbase = p;
1da177e4
LT
3084
3085 maxcount = PAGE_SIZE;
3086 if (maxcount > readdir->rd_maxcount)
3087 maxcount = readdir->rd_maxcount;
3088
3089 /*
3090 * Convert from bytes to words, account for the two words already
3091 * written, make sure to leave two words at the end for the next
3092 * pointer and eof field.
3093 */
3094 maxcount = (maxcount >> 2) - 4;
3095 if (maxcount < 0) {
3096 nfserr = nfserr_toosmall;
3097 goto err_no_verf;
3098 }
3099
afc59400 3100 page = page_address(*(resp->rqstp->rq_next_page++));
1da177e4
LT
3101 readdir->common.err = 0;
3102 readdir->buflen = maxcount;
3103 readdir->buffer = page;
3104 readdir->offset = NULL;
3105
3106 offset = readdir->rd_cookie;
3107 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
3108 &offset,
3109 &readdir->common, nfsd4_encode_dirent);
3110 if (nfserr == nfs_ok &&
3111 readdir->common.err == nfserr_toosmall &&
3112 readdir->buffer == page)
3113 nfserr = nfserr_toosmall;
1da177e4
LT
3114 if (nfserr)
3115 goto err_no_verf;
3116
3117 if (readdir->offset)
3118 xdr_encode_hyper(readdir->offset, offset);
3119
3120 p = readdir->buffer;
3121 *p++ = 0; /* no more entries */
3122 *p++ = htonl(readdir->common.err == nfserr_eof);
afc59400
BF
3123 resp->xbuf->page_len = ((char*)p) -
3124 (char*)page_address(*(resp->rqstp->rq_next_page-1));
1da177e4 3125
bb6e8a9f 3126 /* Use rest of head for padding and remaining ops: */
bb6e8a9f 3127 resp->xbuf->tail[0].iov_base = tailbase;
1da177e4
LT
3128 resp->xbuf->tail[0].iov_len = 0;
3129 resp->p = resp->xbuf->tail[0].iov_base;
bb6e8a9f 3130 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
1da177e4
LT
3131
3132 return 0;
3133err_no_verf:
3134 p = savep;
3135 ADJUST_ARGS();
3136 return nfserr;
3137}
3138
695e12f8 3139static __be32
b37ad28b 3140nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
1da177e4 3141{
bc749ca4 3142 __be32 *p;
1da177e4
LT
3143
3144 if (!nfserr) {
3145 RESERVE_SPACE(20);
c654b8a9 3146 write_cinfo(&p, &remove->rm_cinfo);
1da177e4
LT
3147 ADJUST_ARGS();
3148 }
695e12f8 3149 return nfserr;
1da177e4
LT
3150}
3151
695e12f8 3152static __be32
b37ad28b 3153nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
1da177e4 3154{
bc749ca4 3155 __be32 *p;
1da177e4
LT
3156
3157 if (!nfserr) {
3158 RESERVE_SPACE(40);
c654b8a9
BF
3159 write_cinfo(&p, &rename->rn_sinfo);
3160 write_cinfo(&p, &rename->rn_tinfo);
1da177e4
LT
3161 ADJUST_ARGS();
3162 }
695e12f8 3163 return nfserr;
1da177e4
LT
3164}
3165
695e12f8 3166static __be32
22b6dee8 3167nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
a77c806f 3168 __be32 nfserr, struct svc_export *exp)
dcb488a3 3169{
676e4ebd 3170 u32 i, nflavs, supported;
4796f457
BF
3171 struct exp_flavor_info *flavs;
3172 struct exp_flavor_info def_flavs[2];
676e4ebd
CL
3173 __be32 *p, *flavorsp;
3174 static bool report = true;
dcb488a3
AA
3175
3176 if (nfserr)
3177 goto out;
4796f457
BF
3178 if (exp->ex_nflavors) {
3179 flavs = exp->ex_flavors;
3180 nflavs = exp->ex_nflavors;
3181 } else { /* Handling of some defaults in absence of real secinfo: */
3182 flavs = def_flavs;
3183 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
3184 nflavs = 2;
3185 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
3186 flavs[1].pseudoflavor = RPC_AUTH_NULL;
3187 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
3188 nflavs = 1;
3189 flavs[0].pseudoflavor
3190 = svcauth_gss_flavor(exp->ex_client);
3191 } else {
3192 nflavs = 1;
3193 flavs[0].pseudoflavor
3194 = exp->ex_client->flavour->flavour;
3195 }
3196 }
3197
676e4ebd 3198 supported = 0;
dcb488a3 3199 RESERVE_SPACE(4);
676e4ebd 3200 flavorsp = p++; /* to be backfilled later */
dcb488a3 3201 ADJUST_ARGS();
676e4ebd 3202
4796f457 3203 for (i = 0; i < nflavs; i++) {
676e4ebd 3204 rpc_authflavor_t pf = flavs[i].pseudoflavor;
a77c806f 3205 struct rpcsec_gss_info info;
dcb488a3 3206
676e4ebd
CL
3207 if (rpcauth_get_gssinfo(pf, &info) == 0) {
3208 supported++;
a9f7b4a0 3209 RESERVE_SPACE(4 + 4 + XDR_LEN(info.oid.len) + 4 + 4);
dcb488a3 3210 WRITE32(RPC_AUTH_GSS);
a77c806f
CL
3211 WRITE32(info.oid.len);
3212 WRITEMEM(info.oid.data, info.oid.len);
a77c806f 3213 WRITE32(info.qop);
a77c806f 3214 WRITE32(info.service);
dcb488a3 3215 ADJUST_ARGS();
676e4ebd
CL
3216 } else if (pf < RPC_AUTH_MAXFLAVOR) {
3217 supported++;
dcb488a3 3218 RESERVE_SPACE(4);
676e4ebd 3219 WRITE32(pf);
dcb488a3 3220 ADJUST_ARGS();
676e4ebd
CL
3221 } else {
3222 if (report)
3223 pr_warn("NFS: SECINFO: security flavor %u "
3224 "is not supported\n", pf);
dcb488a3
AA
3225 }
3226 }
a77c806f 3227
676e4ebd
CL
3228 if (nflavs != supported)
3229 report = false;
3230 *flavorsp = htonl(supported);
3231
dcb488a3
AA
3232out:
3233 if (exp)
3234 exp_put(exp);
695e12f8 3235 return nfserr;
dcb488a3
AA
3236}
3237
22b6dee8
MJ
3238static __be32
3239nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
3240 struct nfsd4_secinfo *secinfo)
3241{
3242 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
3243}
3244
3245static __be32
3246nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
3247 struct nfsd4_secinfo_no_name *secinfo)
3248{
3249 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
3250}
3251
1da177e4
LT
3252/*
3253 * The SETATTR encode routine is special -- it always encodes a bitmap,
3254 * regardless of the error status.
3255 */
695e12f8 3256static __be32
b37ad28b 3257nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
1da177e4 3258{
bc749ca4 3259 __be32 *p;
1da177e4 3260
18032ca0 3261 RESERVE_SPACE(16);
1da177e4 3262 if (nfserr) {
18032ca0
DQ
3263 WRITE32(3);
3264 WRITE32(0);
1da177e4
LT
3265 WRITE32(0);
3266 WRITE32(0);
3267 }
3268 else {
18032ca0 3269 WRITE32(3);
1da177e4
LT
3270 WRITE32(setattr->sa_bmval[0]);
3271 WRITE32(setattr->sa_bmval[1]);
18032ca0 3272 WRITE32(setattr->sa_bmval[2]);
1da177e4
LT
3273 }
3274 ADJUST_ARGS();
695e12f8 3275 return nfserr;
1da177e4
LT
3276}
3277
695e12f8 3278static __be32
b37ad28b 3279nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
1da177e4 3280{
bc749ca4 3281 __be32 *p;
1da177e4
LT
3282
3283 if (!nfserr) {
ab4684d1 3284 RESERVE_SPACE(8 + NFS4_VERIFIER_SIZE);
1da177e4 3285 WRITEMEM(&scd->se_clientid, 8);
ab4684d1 3286 WRITEMEM(&scd->se_confirm, NFS4_VERIFIER_SIZE);
1da177e4
LT
3287 ADJUST_ARGS();
3288 }
3289 else if (nfserr == nfserr_clid_inuse) {
3290 RESERVE_SPACE(8);
3291 WRITE32(0);
3292 WRITE32(0);
3293 ADJUST_ARGS();
3294 }
695e12f8 3295 return nfserr;
1da177e4
LT
3296}
3297
695e12f8 3298static __be32
b37ad28b 3299nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
1da177e4 3300{
bc749ca4 3301 __be32 *p;
1da177e4
LT
3302
3303 if (!nfserr) {
3304 RESERVE_SPACE(16);
3305 WRITE32(write->wr_bytes_written);
3306 WRITE32(write->wr_how_written);
ab4684d1 3307 WRITEMEM(write->wr_verifier.data, NFS4_VERIFIER_SIZE);
1da177e4
LT
3308 ADJUST_ARGS();
3309 }
695e12f8 3310 return nfserr;
1da177e4
LT
3311}
3312
57266a6e
BF
3313static const u32 nfs4_minimal_spo_must_enforce[2] = {
3314 [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) |
3315 1 << (OP_EXCHANGE_ID - 32) |
3316 1 << (OP_CREATE_SESSION - 32) |
3317 1 << (OP_DESTROY_SESSION - 32) |
3318 1 << (OP_DESTROY_CLIENTID - 32)
3319};
3320
2db134eb 3321static __be32
57b7b43b 3322nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
2db134eb
AA
3323 struct nfsd4_exchange_id *exid)
3324{
bc749ca4 3325 __be32 *p;
0733d213
AA
3326 char *major_id;
3327 char *server_scope;
3328 int major_id_sz;
3329 int server_scope_sz;
3330 uint64_t minor_id = 0;
3331
3332 if (nfserr)
3333 return nfserr;
3334
3335 major_id = utsname()->nodename;
3336 major_id_sz = strlen(major_id);
3337 server_scope = utsname()->nodename;
3338 server_scope_sz = strlen(server_scope);
3339
3340 RESERVE_SPACE(
3341 8 /* eir_clientid */ +
3342 4 /* eir_sequenceid */ +
3343 4 /* eir_flags */ +
a8bb84bc 3344 4 /* spr_how */);
0733d213
AA
3345
3346 WRITEMEM(&exid->clientid, 8);
3347 WRITE32(exid->seqid);
3348 WRITE32(exid->flags);
3349
0733d213 3350 WRITE32(exid->spa_how);
a8bb84bc
KM
3351 ADJUST_ARGS();
3352
57266a6e
BF
3353 switch (exid->spa_how) {
3354 case SP4_NONE:
3355 break;
3356 case SP4_MACH_CRED:
a8bb84bc
KM
3357 /* spo_must_enforce, spo_must_allow */
3358 RESERVE_SPACE(16);
3359
57266a6e
BF
3360 /* spo_must_enforce bitmap: */
3361 WRITE32(2);
3362 WRITE32(nfs4_minimal_spo_must_enforce[0]);
3363 WRITE32(nfs4_minimal_spo_must_enforce[1]);
3364 /* empty spo_must_allow bitmap: */
3365 WRITE32(0);
a8bb84bc
KM
3366
3367 ADJUST_ARGS();
57266a6e
BF
3368 break;
3369 default:
3370 WARN_ON_ONCE(1);
3371 }
0733d213 3372
a8bb84bc
KM
3373 RESERVE_SPACE(
3374 8 /* so_minor_id */ +
3375 4 /* so_major_id.len */ +
3376 (XDR_QUADLEN(major_id_sz) * 4) +
3377 4 /* eir_server_scope.len */ +
3378 (XDR_QUADLEN(server_scope_sz) * 4) +
3379 4 /* eir_server_impl_id.count (0) */);
3380
0733d213
AA
3381 /* The server_owner struct */
3382 WRITE64(minor_id); /* Minor id */
3383 /* major id */
3384 WRITE32(major_id_sz);
3385 WRITEMEM(major_id, major_id_sz);
3386
3387 /* Server scope */
3388 WRITE32(server_scope_sz);
3389 WRITEMEM(server_scope, server_scope_sz);
3390
3391 /* Implementation id */
3392 WRITE32(0); /* zero length nfs_impl_id4 array */
3393 ADJUST_ARGS();
3394 return 0;
2db134eb
AA
3395}
3396
3397static __be32
57b7b43b 3398nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
2db134eb
AA
3399 struct nfsd4_create_session *sess)
3400{
bc749ca4 3401 __be32 *p;
ec6b5d7b
AA
3402
3403 if (nfserr)
3404 return nfserr;
3405
3406 RESERVE_SPACE(24);
3407 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3408 WRITE32(sess->seqid);
3409 WRITE32(sess->flags);
3410 ADJUST_ARGS();
3411
3412 RESERVE_SPACE(28);
3413 WRITE32(0); /* headerpadsz */
3414 WRITE32(sess->fore_channel.maxreq_sz);
3415 WRITE32(sess->fore_channel.maxresp_sz);
3416 WRITE32(sess->fore_channel.maxresp_cached);
3417 WRITE32(sess->fore_channel.maxops);
3418 WRITE32(sess->fore_channel.maxreqs);
3419 WRITE32(sess->fore_channel.nr_rdma_attrs);
3420 ADJUST_ARGS();
3421
3422 if (sess->fore_channel.nr_rdma_attrs) {
3423 RESERVE_SPACE(4);
3424 WRITE32(sess->fore_channel.rdma_attrs);
3425 ADJUST_ARGS();
3426 }
3427
3428 RESERVE_SPACE(28);
3429 WRITE32(0); /* headerpadsz */
3430 WRITE32(sess->back_channel.maxreq_sz);
3431 WRITE32(sess->back_channel.maxresp_sz);
3432 WRITE32(sess->back_channel.maxresp_cached);
3433 WRITE32(sess->back_channel.maxops);
3434 WRITE32(sess->back_channel.maxreqs);
3435 WRITE32(sess->back_channel.nr_rdma_attrs);
3436 ADJUST_ARGS();
3437
3438 if (sess->back_channel.nr_rdma_attrs) {
3439 RESERVE_SPACE(4);
3440 WRITE32(sess->back_channel.rdma_attrs);
3441 ADJUST_ARGS();
3442 }
3443 return 0;
2db134eb
AA
3444}
3445
c47d832b 3446static __be32
57b7b43b 3447nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
2db134eb
AA
3448 struct nfsd4_sequence *seq)
3449{
bc749ca4 3450 __be32 *p;
b85d4c01
BH
3451
3452 if (nfserr)
3453 return nfserr;
3454
3455 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3456 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3457 WRITE32(seq->seqid);
3458 WRITE32(seq->slotid);
b7d7ca35
BF
3459 /* Note slotid's are numbered from zero: */
3460 WRITE32(seq->maxslots - 1); /* sr_highest_slotid */
3461 WRITE32(seq->maxslots - 1); /* sr_target_highest_slotid */
0d7bb719 3462 WRITE32(seq->status_flags);
b85d4c01
BH
3463
3464 ADJUST_ARGS();
557ce264 3465 resp->cstate.datap = p; /* DRC cache data pointer */
b85d4c01 3466 return 0;
2db134eb
AA
3467}
3468
2355c596 3469static __be32
57b7b43b 3470nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
17456804
BS
3471 struct nfsd4_test_stateid *test_stateid)
3472{
03cfb420 3473 struct nfsd4_test_stateid_id *stateid, *next;
17456804 3474 __be32 *p;
17456804 3475
03cfb420 3476 RESERVE_SPACE(4 + (4 * test_stateid->ts_num_ids));
17456804 3477 *p++ = htonl(test_stateid->ts_num_ids);
17456804 3478
03cfb420 3479 list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) {
02f5fde5 3480 *p++ = stateid->ts_id_status;
17456804 3481 }
17456804 3482
03cfb420 3483 ADJUST_ARGS();
17456804
BS
3484 return nfserr;
3485}
3486
695e12f8
BH
3487static __be32
3488nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3489{
3490 return nfserr;
3491}
3492
3493typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3494
2db134eb
AA
3495/*
3496 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3497 * since we don't need to filter out obsolete ops as this is
3498 * done in the decoding phase.
3499 */
695e12f8 3500static nfsd4_enc nfsd4_enc_ops[] = {
ad1060c8
BF
3501 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3502 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3503 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3504 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3505 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3506 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3507 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3508 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3509 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3510 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3511 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3512 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3513 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3514 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3515 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3516 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
84f09f46 3517 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
ad1060c8
BF
3518 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3519 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3520 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3521 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3522 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3523 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3524 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3525 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3526 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3527 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3528 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3529 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3530 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3531 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3532 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3533 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3534 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3535 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3536 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3537 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
2db134eb
AA
3538
3539 /* NFSv4.1 operations */
3540 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
1d1bc8f2 3541 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
2db134eb
AA
3542 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3543 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
43212cc7
KM
3544 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
3545 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
2db134eb
AA
3546 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3547 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3548 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3549 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3550 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3551 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
22b6dee8 3552 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
2db134eb
AA
3553 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3554 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
17456804 3555 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
2db134eb
AA
3556 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3557 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3558 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
695e12f8
BH
3559};
3560
496c262c
AA
3561/*
3562 * Calculate the total amount of memory that the compound response has taken
58e7b33a 3563 * after encoding the current operation with pad.
496c262c 3564 *
58e7b33a
MJ
3565 * pad: if operation is non-idempotent, pad was calculate by op_rsize_bop()
3566 * which was specified at nfsd4_operation, else pad is zero.
496c262c 3567 *
58e7b33a 3568 * Compare this length to the session se_fmaxresp_sz and se_fmaxresp_cached.
496c262c
AA
3569 *
3570 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3571 * will be at least a page and will therefore hold the xdr_buf head.
3572 */
57b7b43b 3573__be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 pad)
496c262c 3574{
496c262c 3575 struct xdr_buf *xb = &resp->rqstp->rq_res;
496c262c
AA
3576 struct nfsd4_session *session = NULL;
3577 struct nfsd4_slot *slot = resp->cstate.slot;
58e7b33a 3578 u32 length, tlen = 0;
496c262c
AA
3579
3580 if (!nfsd4_has_session(&resp->cstate))
58e7b33a 3581 return 0;
496c262c
AA
3582
3583 session = resp->cstate.session;
58e7b33a
MJ
3584 if (session == NULL)
3585 return 0;
496c262c
AA
3586
3587 if (xb->page_len == 0) {
3588 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3589 } else {
3590 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3591 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3592
3593 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3594 }
3595 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3596 length, xb->page_len, tlen, pad);
3597
58e7b33a
MJ
3598 if (length > session->se_fchannel.maxresp_sz)
3599 return nfserr_rep_too_big;
3600
73e79482 3601 if ((slot->sl_flags & NFSD4_SLOT_CACHETHIS) &&
58e7b33a 3602 length > session->se_fchannel.maxresp_cached)
496c262c 3603 return nfserr_rep_too_big_to_cache;
58e7b33a
MJ
3604
3605 return 0;
496c262c
AA
3606}
3607
1da177e4
LT
3608void
3609nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3610{
9411b1d4 3611 struct nfs4_stateowner *so = resp->cstate.replay_owner;
2ebbc012 3612 __be32 *statp;
bc749ca4 3613 __be32 *p;
1da177e4
LT
3614
3615 RESERVE_SPACE(8);
3616 WRITE32(op->opnum);
3617 statp = p++; /* to be backfilled at the end */
3618 ADJUST_ARGS();
3619
695e12f8
BH
3620 if (op->opnum == OP_ILLEGAL)
3621 goto status;
3622 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3623 !nfsd4_enc_ops[op->opnum]);
3624 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
496c262c 3625 /* nfsd4_check_drc_limit guarantees enough room for error status */
58e7b33a
MJ
3626 if (!op->status)
3627 op->status = nfsd4_check_resp_size(resp, 0);
9411b1d4
BF
3628 if (so) {
3629 so->so_replay.rp_status = op->status;
3630 so->so_replay.rp_buflen = (char *)resp->p - (char *)(statp+1);
3631 memcpy(so->so_replay.rp_buf, statp+1, so->so_replay.rp_buflen);
3632 }
695e12f8 3633status:
1da177e4
LT
3634 /*
3635 * Note: We write the status directly, instead of using WRITE32(),
3636 * since it is already in network byte order.
3637 */
3638 *statp = op->status;
3639}
3640
3641/*
3642 * Encode the reply stored in the stateowner reply cache
3643 *
3644 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3645 * previously sent already encoded operation.
3646 *
3647 * called with nfs4_lock_state() held
3648 */
3649void
3650nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3651{
bc749ca4 3652 __be32 *p;
1da177e4
LT
3653 struct nfs4_replay *rp = op->replay;
3654
3655 BUG_ON(!rp);
3656
3657 RESERVE_SPACE(8);
3658 WRITE32(op->opnum);
3659 *p++ = rp->rp_status; /* already xdr'ed */
3660 ADJUST_ARGS();
3661
3662 RESERVE_SPACE(rp->rp_buflen);
3663 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3664 ADJUST_ARGS();
3665}
3666
1da177e4 3667int
2ebbc012 3668nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
1da177e4
LT
3669{
3670 return xdr_ressize_check(rqstp, p);
3671}
3672
3e98abff 3673int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp)
1da177e4 3674{
3e98abff
BF
3675 struct svc_rqst *rqstp = rq;
3676 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3677
1da177e4
LT
3678 if (args->ops != args->iops) {
3679 kfree(args->ops);
3680 args->ops = args->iops;
3681 }
f99d49ad
JJ
3682 kfree(args->tmpp);
3683 args->tmpp = NULL;
1da177e4
LT
3684 while (args->to_free) {
3685 struct tmpbuf *tb = args->to_free;
3686 args->to_free = tb->next;
3687 tb->release(tb->buf);
3688 kfree(tb);
3689 }
3e98abff 3690 return 1;
1da177e4
LT
3691}
3692
3693int
2ebbc012 3694nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
1da177e4 3695{
1da177e4
LT
3696 args->p = p;
3697 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3698 args->pagelist = rqstp->rq_arg.pages;
3699 args->pagelen = rqstp->rq_arg.page_len;
3700 args->tmpp = NULL;
3701 args->to_free = NULL;
3702 args->ops = args->iops;
3703 args->rqstp = rqstp;
3704
3e98abff 3705 return !nfsd4_decode_compound(args);
1da177e4
LT
3706}
3707
3708int
2ebbc012 3709nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
1da177e4
LT
3710{
3711 /*
3712 * All that remains is to write the tag and operation count...
3713 */
557ce264 3714 struct nfsd4_compound_state *cs = &resp->cstate;
1da177e4
LT
3715 struct kvec *iov;
3716 p = resp->tagp;
3717 *p++ = htonl(resp->taglen);
3718 memcpy(p, resp->tag, resp->taglen);
3719 p += XDR_QUADLEN(resp->taglen);
3720 *p++ = htonl(resp->opcnt);
3721
3722 if (rqstp->rq_res.page_len)
3723 iov = &rqstp->rq_res.tail[0];
3724 else
3725 iov = &rqstp->rq_res.head[0];
3726 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3727 BUG_ON(iov->iov_len > PAGE_SIZE);
26c0c75e 3728 if (nfsd4_has_session(cs)) {
f0f51f5c
BF
3729 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
3730 struct nfs4_client *clp = cs->session->se_client;
26c0c75e
BF
3731 if (cs->status != nfserr_replay_cache) {
3732 nfsd4_store_cache_entry(resp);
73e79482 3733 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
26c0c75e 3734 }
d7682988 3735 /* Renew the clientid on success and on replay */
f0f51f5c 3736 spin_lock(&nn->client_lock);
221a6876 3737 nfsd4_put_session(cs->session);
f0f51f5c
BF
3738 spin_unlock(&nn->client_lock);
3739 put_client_renew(clp);
da3846a2 3740 }
1da177e4
LT
3741 return 1;
3742}
3743
3744/*
3745 * Local variables:
3746 * c-basic-offset: 8
3747 * End:
3748 */
This page took 0.796172 seconds and 5 git commands to generate.