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