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