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