upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / fs / nfsd / nfs4xdr.c
1 /*
2  *  fs/nfs/nfs4xdr.c
3  *
4  *  Server-side XDR for NFSv4
5  *
6  *  Copyright (c) 2002 The Regents of the University of Michigan.
7  *  All rights reserved.
8  *
9  *  Kendrick Smith <kmsmith@umich.edu>
10  *  Andy Adamson   <andros@umich.edu>
11  *
12  *  Redistribution and use in source and binary forms, with or without
13  *  modification, are permitted provided that the following conditions
14  *  are met:
15  *
16  *  1. Redistributions of source code must retain the above copyright
17  *     notice, this list of conditions and the following disclaimer.
18  *  2. Redistributions in binary form must reproduce the above copyright
19  *     notice, this list of conditions and the following disclaimer in the
20  *     documentation and/or other materials provided with the distribution.
21  *  3. Neither the name of the University nor the names of its
22  *     contributors may be used to endorse or promote products derived
23  *     from this software without specific prior written permission.
24  *
25  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28  *  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32  *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33  *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  *
37  * TODO: Neil Brown made the following observation:  We currently
38  * initially reserve NFSD_BUFSIZE space on the transmit queue and
39  * never release any of that until the request is complete.
40  * It would be good to calculate a new maximum response size while
41  * decoding the COMPOUND, and call svc_reserve with this number
42  * at the end of nfs4svc_decode_compoundargs.
43  */
44
45 #include <linux/param.h>
46 #include <linux/smp.h>
47 #include <linux/smp_lock.h>
48 #include <linux/fs.h>
49 #include <linux/namei.h>
50 #include <linux/vfs.h>
51 #include <linux/sunrpc/xdr.h>
52 #include <linux/sunrpc/svc.h>
53 #include <linux/sunrpc/clnt.h>
54 #include <linux/nfsd/nfsd.h>
55 #include <linux/nfsd/state.h>
56 #include <linux/nfsd/xdr4.h>
57 #include <linux/nfsd_idmap.h>
58 #include <linux/nfs4.h>
59 #include <linux/nfs4_acl.h>
60 #include <linux/vserver/xid.h>
61
62 #define NFSDDBG_FACILITY                NFSDDBG_XDR
63
64 static const char utf8_byte_len[256] = {
65         1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
66         1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
67         1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
68         1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
69         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
70         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
71         0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
72         3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, 4,4,4,4,4,4,4,4,5,5,5,5,6,6,0,0
73 };
74
75 static inline int
76 is_legal_utf8_sequence(unsigned char *source, int length)
77 {
78         unsigned char *ptr;
79         unsigned char c;
80
81         if (length==1) return 1;
82
83         /* Check for overlong sequence, and check second byte */
84         c = *(source + 1);
85         switch (*source) {
86         case 0xE0: /* 3 bytes */
87                 if ( c < 0xA0 ) return 0;
88                 break;
89         case 0xF0: /* 4 bytes */
90                 if ( c < 0x90 ) return 0;
91                 break;
92         case 0xF8: /* 5 bytes */
93                 if ( c < 0xC8 ) return 0;
94                 break;
95         case 0xFC: /* 6 bytes */
96                 if ( c < 0x84 ) return 0;
97                 break;
98         default:
99                 if ( (c & 0xC0) != 0x80) return 0;
100         }
101
102         /* Check that trailing bytes look like 10xxxxxx */
103         for (ptr = source++ + length - 1; ptr>source; ptr--)
104                 if ( ((*ptr) & 0xC0) != 0x80 ) return 0;
105         return 1;
106 }
107
108 /* This does some screening on disallowed unicode characters.  It is NOT
109  * comprehensive.
110  */
111 static int
112 is_allowed_utf8_char(unsigned char *source, int length)
113 {
114         /* We assume length and source point to a valid utf8 sequence */
115         unsigned char c;
116
117         /* Disallow F0000 and up (in utf8, F3B08080) */
118         if (*source > 0xF3 ) return 0;
119         c = *(source + 1);
120         switch (*source) {
121         case 0xF3:
122                 if (c >= 0xB0) return 0;
123                 break;
124         /* Disallow D800-F8FF (in utf8, EDA080-EFA3BF */
125         case 0xED:
126                 if (c >= 0xA0) return 0;
127                 break;
128         case 0xEE:
129                 return 0;
130                 break;
131         case 0xEF:
132                 if (c <= 0xA3) return 0;
133         /* Disallow FFF9-FFFF (EFBFB9-EFBFBF) */
134                 if (c==0xBF)
135                         /* Don't need to check <=0xBF, since valid utf8 */
136                         if ( *(source+2) >= 0xB9) return 0;
137                 break;
138         }
139         return 1;
140 }
141
142 /* This routine should really check to see that the proper stringprep
143  * mappings have been applied.  Instead, we do a simple screen of some
144  * of the more obvious illegal values by calling is_allowed_utf8_char.
145  * This will allow many illegal strings through, but if a client behaves,
146  * it will get full functionality.  The other option (apart from full
147  * stringprep checking) is to limit everything to an easily handled subset,
148  * such as 7-bit ascii.
149  *
150  * Note - currently calling routines ignore return value except as boolean.
151  */
152 static int
153 check_utf8(char *str, int len)
154 {
155         unsigned char *chunk, *sourceend;
156         int chunklen;
157
158         chunk = str;
159         sourceend = str + len;
160
161         while (chunk < sourceend) {
162                 chunklen = utf8_byte_len[*chunk];
163                 if (!chunklen)
164                         return nfserr_inval;
165                 if (chunk + chunklen > sourceend)
166                         return nfserr_inval;
167                 if (!is_legal_utf8_sequence(chunk, chunklen))
168                         return nfserr_inval;
169                 if (!is_allowed_utf8_char(chunk, chunklen))
170                         return nfserr_inval;
171                 if ( (chunklen==1) && (!*chunk) )
172                         return nfserr_inval; /* Disallow embedded nulls */
173                 chunk += chunklen;
174         }
175
176         return 0;
177 }
178
179 static int
180 check_filename(char *str, int len, int err)
181 {
182         int i;
183
184         if (len == 0)
185                 return nfserr_inval;
186         if (isdotent(str, len))
187                 return err;
188         for (i = 0; i < len; i++)
189                 if (str[i] == '/')
190                         return err;
191         return check_utf8(str, len);
192 }
193
194 /*
195  * START OF "GENERIC" DECODE ROUTINES.
196  *   These may look a little ugly since they are imported from a "generic"
197  * set of XDR encode/decode routines which are intended to be shared by
198  * all of our NFSv4 implementations (OpenBSD, MacOS X...).
199  *
200  * If the pain of reading these is too great, it should be a straightforward
201  * task to translate them into Linux-specific versions which are more
202  * consistent with the style used in NFSv2/v3...
203  */
204 #define DECODE_HEAD                             \
205         u32 *p;                                 \
206         int status
207 #define DECODE_TAIL                             \
208         status = 0;                             \
209 out:                                            \
210         return status;                          \
211 xdr_error:                                      \
212         printk(KERN_NOTICE "xdr error! (%s:%d)\n", __FILE__, __LINE__); \
213         status = nfserr_bad_xdr;                \
214         goto out
215
216 #define READ32(x)         (x) = ntohl(*p++)
217 #define READ64(x)         do {                  \
218         (x) = (u64)ntohl(*p++) << 32;           \
219         (x) |= ntohl(*p++);                     \
220 } while (0)
221 #define READTIME(x)       do {                  \
222         p++;                                    \
223         (x) = ntohl(*p++);                      \
224         p++;                                    \
225 } while (0)
226 #define READMEM(x,nbytes) do {                  \
227         x = (char *)p;                          \
228         p += XDR_QUADLEN(nbytes);               \
229 } while (0)
230 #define SAVEMEM(x,nbytes) do {                  \
231         if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
232                 savemem(argp, p, nbytes) :      \
233                 (char *)p)) {                   \
234                 printk(KERN_NOTICE "xdr error! (%s:%d)\n", __FILE__, __LINE__); \
235                 goto xdr_error;                 \
236                 }                               \
237         p += XDR_QUADLEN(nbytes);               \
238 } while (0)
239 #define COPYMEM(x,nbytes) do {                  \
240         memcpy((x), p, nbytes);                 \
241         p += XDR_QUADLEN(nbytes);               \
242 } while (0)
243
244 /* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
245 #define READ_BUF(nbytes)  do {                  \
246         if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) {     \
247                 p = argp->p;                    \
248                 argp->p += XDR_QUADLEN(nbytes); \
249         } else if (!(p = read_buf(argp, nbytes))) { \
250                 printk(KERN_NOTICE "xdr error! (%s:%d)\n", __FILE__, __LINE__); \
251                 goto xdr_error;                 \
252         }                                       \
253 } while (0)
254
255 u32 *read_buf(struct nfsd4_compoundargs *argp, int nbytes)
256 {
257         /* We want more bytes than seem to be available.
258          * Maybe we need a new page, maybe we have just run out
259          */
260         int avail = (char*)argp->end - (char*)argp->p;
261         u32 *p;
262         if (avail + argp->pagelen < nbytes)
263                 return NULL;
264         if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */
265                 return NULL;
266         /* ok, we can do it with the current plus the next page */
267         if (nbytes <= sizeof(argp->tmp))
268                 p = argp->tmp;
269         else {
270                 if (argp->tmpp)
271                         kfree(argp->tmpp);
272                 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
273                 if (!p)
274                         return NULL;
275                 
276         }
277         memcpy(p, argp->p, avail);
278         /* step to next page */
279         argp->p = page_address(argp->pagelist[0]);
280         argp->pagelist++;
281         if (argp->pagelen < PAGE_SIZE) {
282                 argp->end = p + (argp->pagelen>>2);
283                 argp->pagelen = 0;
284         } else {
285                 argp->end = p + (PAGE_SIZE>>2);
286                 argp->pagelen -= PAGE_SIZE;
287         }
288         memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
289         argp->p += XDR_QUADLEN(nbytes - avail);
290         return p;
291 }
292
293 static int
294 defer_free(struct nfsd4_compoundargs *argp,
295                 void (*release)(const void *), void *p)
296 {
297         struct tmpbuf *tb;
298
299         tb = kmalloc(sizeof(*tb), GFP_KERNEL);
300         if (!tb)
301                 return -ENOMEM;
302         tb->buf = p;
303         tb->release = release;
304         tb->next = argp->to_free;
305         argp->to_free = tb;
306         return 0;
307 }
308
309 char *savemem(struct nfsd4_compoundargs *argp, u32 *p, int nbytes)
310 {
311         void *new = NULL;
312         if (p == argp->tmp) {
313                 new = kmalloc(nbytes, GFP_KERNEL);
314                 if (!new) return NULL;
315                 p = new;
316                 memcpy(p, argp->tmp, nbytes);
317         } else {
318                 if (p != argp->tmpp)
319                         BUG();
320                 argp->tmpp = NULL;
321         }
322         if (defer_free(argp, kfree, p)) {
323                 kfree(new);
324                 return NULL;
325         } else
326                 return (char *)p;
327 }
328
329
330 static int
331 nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
332 {
333         u32 bmlen;
334         DECODE_HEAD;
335
336         bmval[0] = 0;
337         bmval[1] = 0;
338
339         READ_BUF(4);
340         READ32(bmlen);
341         if (bmlen > 1000)
342                 goto xdr_error;
343
344         READ_BUF(bmlen << 2);
345         if (bmlen > 0)
346                 READ32(bmval[0]);
347         if (bmlen > 1)
348                 READ32(bmval[1]);
349
350         DECODE_TAIL;
351 }
352
353 static int
354 nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval, struct iattr *iattr,
355     struct nfs4_acl **acl)
356 {
357         int expected_len, len = 0;
358         u32 dummy32;
359         char *buf;
360
361         DECODE_HEAD;
362         iattr->ia_valid = 0;
363         if ((status = nfsd4_decode_bitmap(argp, bmval)))
364                 return status;
365
366         /*
367          * According to spec, unsupported attributes return ERR_NOTSUPP;
368          * read-only attributes return ERR_INVAL.
369          */
370         if ((bmval[0] & ~NFSD_SUPPORTED_ATTRS_WORD0) || (bmval[1] & ~NFSD_SUPPORTED_ATTRS_WORD1))
371                 return nfserr_attrnotsupp;
372         if ((bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0) || (bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1))
373                 return nfserr_inval;
374
375         READ_BUF(4);
376         READ32(expected_len);
377
378         if (bmval[0] & FATTR4_WORD0_SIZE) {
379                 READ_BUF(8);
380                 len += 8;
381                 READ64(iattr->ia_size);
382                 iattr->ia_valid |= ATTR_SIZE;
383         }
384         if (bmval[0] & FATTR4_WORD0_ACL) {
385                 int nace, i;
386                 struct nfs4_ace ace;
387
388                 READ_BUF(4); len += 4;
389                 READ32(nace);
390
391                 *acl = nfs4_acl_new();
392                 if (*acl == NULL) {
393                         status = -ENOMEM;
394                         goto out_nfserr;
395                 }
396                 defer_free(argp, (void (*)(const void *))nfs4_acl_free, *acl);
397
398                 for (i = 0; i < nace; i++) {
399                         READ_BUF(16); len += 16;
400                         READ32(ace.type);
401                         READ32(ace.flag);
402                         READ32(ace.access_mask);
403                         READ32(dummy32);
404                         READ_BUF(dummy32);
405                         len += XDR_QUADLEN(dummy32) << 2;
406                         READMEM(buf, dummy32);
407                         if (check_utf8(buf, dummy32))
408                                 return nfserr_inval;
409                         ace.whotype = nfs4_acl_get_whotype(buf, dummy32);
410                         status = 0;
411                         if (ace.whotype != NFS4_ACL_WHO_NAMED)
412                                 ace.who = 0;
413                         else if (ace.flag & NFS4_ACE_IDENTIFIER_GROUP)
414                                 status = nfsd_map_name_to_gid(argp->rqstp,
415                                                 buf, dummy32, &ace.who);
416                         else
417                                 status = nfsd_map_name_to_uid(argp->rqstp,
418                                                 buf, dummy32, &ace.who);
419                         if (status)
420                                 goto out_nfserr;
421                         if (nfs4_acl_add_ace(*acl, ace.type, ace.flag,
422                                  ace.access_mask, ace.whotype, ace.who) != 0) {
423                                 status = -ENOMEM;
424                                 goto out_nfserr;
425                         }
426                 }
427         } else
428                 *acl = NULL;
429         if (bmval[1] & FATTR4_WORD1_MODE) {
430                 READ_BUF(4);
431                 len += 4;
432                 READ32(iattr->ia_mode);
433                 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
434                 iattr->ia_valid |= ATTR_MODE;
435         }
436         if (bmval[1] & FATTR4_WORD1_OWNER) {
437                 READ_BUF(4);
438                 len += 4;
439                 READ32(dummy32);
440                 READ_BUF(dummy32);
441                 len += (XDR_QUADLEN(dummy32) << 2);
442                 READMEM(buf, dummy32);
443                 if (check_utf8(buf, dummy32))
444                         return nfserr_inval;
445                 if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
446                         goto out_nfserr;
447                 iattr->ia_valid |= ATTR_UID;
448         }
449         if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
450                 READ_BUF(4);
451                 len += 4;
452                 READ32(dummy32);
453                 READ_BUF(dummy32);
454                 len += (XDR_QUADLEN(dummy32) << 2);
455                 READMEM(buf, dummy32);
456                 if (check_utf8(buf, dummy32))
457                         return nfserr_inval;
458                 if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
459                         goto out_nfserr;
460                 iattr->ia_valid |= ATTR_GID;
461         }
462         if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
463                 READ_BUF(4);
464                 len += 4;
465                 READ32(dummy32);
466                 switch (dummy32) {
467                 case NFS4_SET_TO_CLIENT_TIME:
468                         /* We require the high 32 bits of 'seconds' to be 0, and we ignore
469                            all 32 bits of 'nseconds'. */
470                         READ_BUF(12);
471                         len += 12;
472                         READ32(dummy32);
473                         if (dummy32)
474                                 return nfserr_inval;
475                         READ32(iattr->ia_atime.tv_sec);
476                         READ32(iattr->ia_atime.tv_nsec);
477                         if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
478                                 return nfserr_inval;
479                         iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
480                         break;
481                 case NFS4_SET_TO_SERVER_TIME:
482                         iattr->ia_valid |= ATTR_ATIME;
483                         break;
484                 default:
485                         goto xdr_error;
486                 }
487         }
488         if (bmval[1] & FATTR4_WORD1_TIME_METADATA) {
489                 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
490                    all 32 bits of 'nseconds'. */
491                 READ_BUF(12);
492                 len += 12;
493                 READ32(dummy32);
494                 if (dummy32)
495                         return nfserr_inval;
496                 READ32(iattr->ia_ctime.tv_sec);
497                 READ32(iattr->ia_ctime.tv_nsec);
498                 if (iattr->ia_ctime.tv_nsec >= (u32)1000000000)
499                         return nfserr_inval;
500                 iattr->ia_valid |= ATTR_CTIME;
501         }
502         if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
503                 READ_BUF(4);
504                 len += 4;
505                 READ32(dummy32);
506                 switch (dummy32) {
507                 case NFS4_SET_TO_CLIENT_TIME:
508                         /* We require the high 32 bits of 'seconds' to be 0, and we ignore
509                            all 32 bits of 'nseconds'. */
510                         READ_BUF(12);
511                         len += 12;
512                         READ32(dummy32);
513                         if (dummy32)
514                                 return nfserr_inval;
515                         READ32(iattr->ia_mtime.tv_sec);
516                         READ32(iattr->ia_mtime.tv_nsec);
517                         if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
518                                 return nfserr_inval;
519                         iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
520                         break;
521                 case NFS4_SET_TO_SERVER_TIME:
522                         iattr->ia_valid |= ATTR_MTIME;
523                         break;
524                 default:
525                         goto xdr_error;
526                 }
527         }
528         if (len != expected_len)
529                 goto xdr_error;
530
531         DECODE_TAIL;
532
533 out_nfserr:
534         status = nfserrno(status);
535         goto out;
536 }
537
538 static int
539 nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
540 {
541         DECODE_HEAD;
542
543         READ_BUF(4);
544         READ32(access->ac_req_access);
545
546         DECODE_TAIL;
547 }
548
549 static int
550 nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
551 {
552         DECODE_HEAD;
553
554         close->cl_stateowner = NULL;
555         READ_BUF(4 + sizeof(stateid_t));
556         READ32(close->cl_seqid);
557         READ32(close->cl_stateid.si_generation);
558         COPYMEM(&close->cl_stateid.si_opaque, sizeof(stateid_opaque_t));
559
560         DECODE_TAIL;
561 }
562
563
564 static int
565 nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
566 {
567         DECODE_HEAD;
568
569         READ_BUF(12);
570         READ64(commit->co_offset);
571         READ32(commit->co_count);
572
573         DECODE_TAIL;
574 }
575
576 static int
577 nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
578 {
579         DECODE_HEAD;
580
581         READ_BUF(4);
582         READ32(create->cr_type);
583         switch (create->cr_type) {
584         case NF4LNK:
585                 READ_BUF(4);
586                 READ32(create->cr_linklen);
587                 READ_BUF(create->cr_linklen);
588                 SAVEMEM(create->cr_linkname, create->cr_linklen);
589                 if (check_utf8(create->cr_linkname, create->cr_linklen))
590                         return nfserr_inval;
591                 break;
592         case NF4BLK:
593         case NF4CHR:
594                 READ_BUF(8);
595                 READ32(create->cr_specdata1);
596                 READ32(create->cr_specdata2);
597                 break;
598         case NF4SOCK:
599         case NF4FIFO:
600         case NF4DIR:
601         default:
602                 break;
603         }
604
605         READ_BUF(4);
606         READ32(create->cr_namelen);
607         READ_BUF(create->cr_namelen);
608         SAVEMEM(create->cr_name, create->cr_namelen);
609         if ((status = check_filename(create->cr_name, create->cr_namelen, nfserr_inval)))
610                 return status;
611
612         if ((status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr, &create->cr_acl)))
613                 goto out;
614
615         DECODE_TAIL;
616 }
617
618 static inline int
619 nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
620 {
621         return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
622 }
623
624 static int
625 nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
626 {
627         DECODE_HEAD;
628
629         READ_BUF(4);
630         READ32(link->li_namelen);
631         READ_BUF(link->li_namelen);
632         SAVEMEM(link->li_name, link->li_namelen);
633         if ((status = check_filename(link->li_name, link->li_namelen, nfserr_inval)))
634                 return status;
635
636         DECODE_TAIL;
637 }
638
639 static int
640 nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
641 {
642         DECODE_HEAD;
643
644         lock->lk_stateowner = NULL;
645         /*
646         * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
647         */
648         READ_BUF(28);
649         READ32(lock->lk_type);
650         if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
651                 goto xdr_error;
652         READ32(lock->lk_reclaim);
653         READ64(lock->lk_offset);
654         READ64(lock->lk_length);
655         READ32(lock->lk_is_new);
656
657         if (lock->lk_is_new) {
658                 READ_BUF(36);
659                 READ32(lock->lk_new_open_seqid);
660                 READ32(lock->lk_new_open_stateid.si_generation);
661
662                 COPYMEM(&lock->lk_new_open_stateid.si_opaque, sizeof(stateid_opaque_t));
663                 READ32(lock->lk_new_lock_seqid);
664                 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
665                 READ32(lock->lk_new_owner.len);
666                 READ_BUF(lock->lk_new_owner.len);
667                 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
668         } else {
669                 READ_BUF(20);
670                 READ32(lock->lk_old_lock_stateid.si_generation);
671                 COPYMEM(&lock->lk_old_lock_stateid.si_opaque, sizeof(stateid_opaque_t));
672                 READ32(lock->lk_old_lock_seqid);
673         }
674
675         DECODE_TAIL;
676 }
677
678 static int
679 nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
680 {
681         DECODE_HEAD;
682                         
683         READ_BUF(32);
684         READ32(lockt->lt_type);
685         if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
686                 goto xdr_error;
687         READ64(lockt->lt_offset);
688         READ64(lockt->lt_length);
689         COPYMEM(&lockt->lt_clientid, 8);
690         READ32(lockt->lt_owner.len);
691         READ_BUF(lockt->lt_owner.len);
692         READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
693
694         DECODE_TAIL;
695 }
696
697 static int
698 nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
699 {
700         DECODE_HEAD;
701
702         locku->lu_stateowner = NULL;
703         READ_BUF(24 + sizeof(stateid_t));
704         READ32(locku->lu_type);
705         if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
706                 goto xdr_error;
707         READ32(locku->lu_seqid);
708         READ32(locku->lu_stateid.si_generation);
709         COPYMEM(&locku->lu_stateid.si_opaque, sizeof(stateid_opaque_t));
710         READ64(locku->lu_offset);
711         READ64(locku->lu_length);
712
713         DECODE_TAIL;
714 }
715
716 static int
717 nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
718 {
719         DECODE_HEAD;
720
721         READ_BUF(4);
722         READ32(lookup->lo_len);
723         READ_BUF(lookup->lo_len);
724         SAVEMEM(lookup->lo_name, lookup->lo_len);
725         if ((status = check_filename(lookup->lo_name, lookup->lo_len, nfserr_noent)))
726                 return status;
727
728         DECODE_TAIL;
729 }
730
731 static int
732 nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
733 {
734         DECODE_HEAD;
735
736         memset(open->op_bmval, 0, sizeof(open->op_bmval));
737         open->op_iattr.ia_valid = 0;
738         open->op_stateowner = NULL;
739
740         /* seqid, share_access, share_deny, clientid, ownerlen */
741         READ_BUF(16 + sizeof(clientid_t));
742         READ32(open->op_seqid);
743         READ32(open->op_share_access);
744         READ32(open->op_share_deny);
745         COPYMEM(&open->op_clientid, sizeof(clientid_t));
746         READ32(open->op_owner.len);
747
748         /* owner, open_flag */
749         READ_BUF(open->op_owner.len + 4);
750         SAVEMEM(open->op_owner.data, open->op_owner.len);
751         READ32(open->op_create);
752         switch (open->op_create) {
753         case NFS4_OPEN_NOCREATE:
754                 break;
755         case NFS4_OPEN_CREATE:
756                 READ_BUF(4);
757                 READ32(open->op_createmode);
758                 switch (open->op_createmode) {
759                 case NFS4_CREATE_UNCHECKED:
760                 case NFS4_CREATE_GUARDED:
761                         if ((status = nfsd4_decode_fattr(argp, open->op_bmval, &open->op_iattr, &open->op_acl)))
762                                 goto out;
763                         break;
764                 case NFS4_CREATE_EXCLUSIVE:
765                         READ_BUF(8);
766                         COPYMEM(open->op_verf.data, 8);
767                         break;
768                 default:
769                         goto xdr_error;
770                 }
771                 break;
772         default:
773                 goto xdr_error;
774         }
775
776         /* open_claim */
777         READ_BUF(4);
778         READ32(open->op_claim_type);
779         switch (open->op_claim_type) {
780         case NFS4_OPEN_CLAIM_NULL:
781         case NFS4_OPEN_CLAIM_DELEGATE_PREV:
782                 READ_BUF(4);
783                 READ32(open->op_fname.len);
784                 READ_BUF(open->op_fname.len);
785                 SAVEMEM(open->op_fname.data, open->op_fname.len);
786                 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
787                         return status;
788                 break;
789         case NFS4_OPEN_CLAIM_PREVIOUS:
790                 READ_BUF(4);
791                 READ32(open->op_delegate_type);
792                 break;
793         case NFS4_OPEN_CLAIM_DELEGATE_CUR:
794                 READ_BUF(sizeof(delegation_stateid_t) + 4);
795                 COPYMEM(&open->op_delegate_stateid, sizeof(delegation_stateid_t));
796                 READ32(open->op_fname.len);
797                 READ_BUF(open->op_fname.len);
798                 SAVEMEM(open->op_fname.data, open->op_fname.len);
799                 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
800                         return status;
801                 break;
802         default:
803                 goto xdr_error;
804         }
805
806         DECODE_TAIL;
807 }
808
809 static int
810 nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
811 {
812         DECODE_HEAD;
813                     
814         open_conf->oc_stateowner = NULL;
815         READ_BUF(4 + sizeof(stateid_t));
816         READ32(open_conf->oc_req_stateid.si_generation);
817         COPYMEM(&open_conf->oc_req_stateid.si_opaque, sizeof(stateid_opaque_t));
818         READ32(open_conf->oc_seqid);
819                                                         
820         DECODE_TAIL;
821 }
822
823 static int
824 nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
825 {
826         DECODE_HEAD;
827                     
828         open_down->od_stateowner = NULL;
829         READ_BUF(4 + sizeof(stateid_t));
830         READ32(open_down->od_stateid.si_generation);
831         COPYMEM(&open_down->od_stateid.si_opaque, sizeof(stateid_opaque_t));
832         READ32(open_down->od_seqid);
833         READ32(open_down->od_share_access);
834         READ32(open_down->od_share_deny);
835                                                         
836         DECODE_TAIL;
837 }
838
839 static int
840 nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
841 {
842         DECODE_HEAD;
843
844         READ_BUF(4);
845         READ32(putfh->pf_fhlen);
846         if (putfh->pf_fhlen > NFS4_FHSIZE)
847                 goto xdr_error;
848         READ_BUF(putfh->pf_fhlen);
849         SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
850
851         DECODE_TAIL;
852 }
853
854 static int
855 nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
856 {
857         DECODE_HEAD;
858
859         READ_BUF(sizeof(stateid_t) + 12);
860         READ32(read->rd_stateid.si_generation);
861         COPYMEM(&read->rd_stateid.si_opaque, sizeof(stateid_opaque_t));
862         READ64(read->rd_offset);
863         READ32(read->rd_length);
864
865         DECODE_TAIL;
866 }
867
868 static int
869 nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
870 {
871         DECODE_HEAD;
872
873         READ_BUF(24);
874         READ64(readdir->rd_cookie);
875         COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
876         READ32(readdir->rd_dircount);    /* just in case you needed a useless field... */
877         READ32(readdir->rd_maxcount);
878         if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
879                 goto out;
880
881         DECODE_TAIL;
882 }
883
884 static int
885 nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
886 {
887         DECODE_HEAD;
888
889         READ_BUF(4);
890         READ32(remove->rm_namelen);
891         READ_BUF(remove->rm_namelen);
892         SAVEMEM(remove->rm_name, remove->rm_namelen);
893         if ((status = check_filename(remove->rm_name, remove->rm_namelen, nfserr_noent)))
894                 return status;
895
896         DECODE_TAIL;
897 }
898
899 static int
900 nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
901 {
902         DECODE_HEAD;
903
904         READ_BUF(4);
905         READ32(rename->rn_snamelen);
906         READ_BUF(rename->rn_snamelen + 4);
907         SAVEMEM(rename->rn_sname, rename->rn_snamelen);
908         READ32(rename->rn_tnamelen);
909         READ_BUF(rename->rn_tnamelen);
910         SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
911         if ((status = check_filename(rename->rn_sname, rename->rn_snamelen, nfserr_noent)))
912                 return status;
913         if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen, nfserr_inval)))
914                 return status;
915
916         DECODE_TAIL;
917 }
918
919 static int
920 nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
921 {
922         DECODE_HEAD;
923
924         READ_BUF(sizeof(clientid_t));
925         COPYMEM(clientid, sizeof(clientid_t));
926
927         DECODE_TAIL;
928 }
929
930 static int
931 nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
932 {
933         DECODE_HEAD;
934
935         READ_BUF(sizeof(stateid_t));
936         READ32(setattr->sa_stateid.si_generation);
937         COPYMEM(&setattr->sa_stateid.si_opaque, sizeof(stateid_opaque_t));
938         if ((status = nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr, &setattr->sa_acl)))
939                 goto out;
940
941         DECODE_TAIL;
942 }
943
944 static int
945 nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
946 {
947         DECODE_HEAD;
948
949         READ_BUF(12);
950         COPYMEM(setclientid->se_verf.data, 8);
951         READ32(setclientid->se_namelen);
952
953         READ_BUF(setclientid->se_namelen + 8);
954         SAVEMEM(setclientid->se_name, setclientid->se_namelen);
955         READ32(setclientid->se_callback_prog);
956         READ32(setclientid->se_callback_netid_len);
957
958         READ_BUF(setclientid->se_callback_netid_len + 4);
959         SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
960         READ32(setclientid->se_callback_addr_len);
961
962         READ_BUF(setclientid->se_callback_addr_len + 4);
963         SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
964         READ32(setclientid->se_callback_ident);
965
966         DECODE_TAIL;
967 }
968
969 static int
970 nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
971 {
972         DECODE_HEAD;
973
974         READ_BUF(8 + sizeof(nfs4_verifier));
975         COPYMEM(&scd_c->sc_clientid, 8);
976         COPYMEM(&scd_c->sc_confirm, sizeof(nfs4_verifier));
977
978         DECODE_TAIL;
979 }
980
981 /* Also used for NVERIFY */
982 static int
983 nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
984 {
985 #if 0
986         struct nfsd4_compoundargs save = {
987                 .p = argp->p,
988                 .end = argp->end,
989                 .rqstp = argp->rqstp,
990         };
991         u32             ve_bmval[2];
992         struct iattr    ve_iattr;           /* request */
993         struct nfs4_acl *ve_acl;            /* request */
994 #endif
995         DECODE_HEAD;
996
997         if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
998                 goto out;
999
1000         /* For convenience's sake, we compare raw xdr'd attributes in
1001          * nfsd4_proc_verify; however we still decode here just to return
1002          * correct error in case of bad xdr. */
1003 #if 0
1004         status = nfsd4_decode_fattr(ve_bmval, &ve_iattr, &ve_acl);
1005         if (status == nfserr_inval) {
1006                 status = nfserrno(status);
1007                 goto out;
1008         }
1009 #endif
1010         READ_BUF(4);
1011         READ32(verify->ve_attrlen);
1012         READ_BUF(verify->ve_attrlen);
1013         SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
1014
1015         DECODE_TAIL;
1016 }
1017
1018 static int
1019 nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
1020 {
1021         int avail;
1022         int v;
1023         int len;
1024         DECODE_HEAD;
1025
1026         READ_BUF(sizeof(stateid_opaque_t) + 20);
1027         READ32(write->wr_stateid.si_generation);
1028         COPYMEM(&write->wr_stateid.si_opaque, sizeof(stateid_opaque_t));
1029         READ64(write->wr_offset);
1030         READ32(write->wr_stable_how);
1031         if (write->wr_stable_how > 2)
1032                 goto xdr_error;
1033         READ32(write->wr_buflen);
1034
1035         /* Sorry .. no magic macros for this.. *
1036          * READ_BUF(write->wr_buflen);
1037          * SAVEMEM(write->wr_buf, write->wr_buflen);
1038          */
1039         avail = (char*)argp->end - (char*)argp->p;
1040         if (avail + argp->pagelen < write->wr_buflen) {
1041                 printk(KERN_NOTICE "xdr error! (%s:%d)\n", __FILE__, __LINE__); 
1042                 goto xdr_error;
1043         }
1044         write->wr_vec[0].iov_base = p;
1045         write->wr_vec[0].iov_len = avail;
1046         v = 0;
1047         len = write->wr_buflen;
1048         while (len > write->wr_vec[v].iov_len) {
1049                 len -= write->wr_vec[v].iov_len;
1050                 v++;
1051                 write->wr_vec[v].iov_base = page_address(argp->pagelist[0]);
1052                 argp->pagelist++;
1053                 if (argp->pagelen >= PAGE_SIZE) {
1054                         write->wr_vec[v].iov_len = PAGE_SIZE;
1055                         argp->pagelen -= PAGE_SIZE;
1056                 } else {
1057                         write->wr_vec[v].iov_len = argp->pagelen;
1058                         argp->pagelen -= len;
1059                 }
1060         }
1061         argp->end = (u32*) (write->wr_vec[v].iov_base + write->wr_vec[v].iov_len);
1062         argp->p = (u32*)  (write->wr_vec[v].iov_base + (XDR_QUADLEN(len) << 2));
1063         write->wr_vec[v].iov_len = len;
1064         write->wr_vlen = v+1;
1065
1066         DECODE_TAIL;
1067 }
1068
1069 static int
1070 nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1071 {
1072         DECODE_HEAD;
1073
1074         READ_BUF(12);
1075         COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1076         READ32(rlockowner->rl_owner.len);
1077         READ_BUF(rlockowner->rl_owner.len);
1078         READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1079
1080         DECODE_TAIL;
1081 }
1082
1083 static int
1084 nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1085 {
1086         DECODE_HEAD;
1087         struct nfsd4_op *op;
1088         int i;
1089
1090         /*
1091          * XXX: According to spec, we should check the tag
1092          * for UTF-8 compliance.  I'm postponing this for
1093          * now because it seems that some clients do use
1094          * binary tags.
1095          */
1096         READ_BUF(4);
1097         READ32(argp->taglen);
1098         READ_BUF(argp->taglen + 8);
1099         SAVEMEM(argp->tag, argp->taglen);
1100         READ32(argp->minorversion);
1101         READ32(argp->opcnt);
1102
1103         if (argp->taglen > NFSD4_MAX_TAGLEN)
1104                 goto xdr_error;
1105         if (argp->opcnt > 100)
1106                 goto xdr_error;
1107
1108         if (argp->opcnt > sizeof(argp->iops)/sizeof(argp->iops[0])) {
1109                 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1110                 if (!argp->ops) {
1111                         argp->ops = argp->iops;
1112                         printk(KERN_INFO "nfsd: couldn't allocate room for COMPOUND\n");
1113                         goto xdr_error;
1114                 }
1115         }
1116
1117         for (i = 0; i < argp->opcnt; i++) {
1118                 op = &argp->ops[i];
1119                 op->replay = NULL;
1120
1121                 /*
1122                  * We can't use READ_BUF() here because we need to handle
1123                  * a missing opcode as an OP_WRITE + 1. So we need to check
1124                  * to see if we're truly at the end of our buffer or if there
1125                  * is another page we need to flip to.
1126                  */
1127
1128                 if (argp->p == argp->end) {
1129                         if (argp->pagelen < 4) {
1130                                 /* There isn't an opcode still on the wire */
1131                                 op->opnum = OP_WRITE + 1;
1132                                 op->status = nfserr_bad_xdr;
1133                                 argp->opcnt = i+1;
1134                                 break;
1135                         }
1136
1137                         /*
1138                          * False alarm. We just hit a page boundary, but there
1139                          * is still data available.  Move pointer across page
1140                          * boundary.  *snip from READ_BUF*
1141                          */
1142                         argp->p = page_address(argp->pagelist[0]);
1143                         argp->pagelist++;
1144                         if (argp->pagelen < PAGE_SIZE) {
1145                                 argp->end = p + (argp->pagelen>>2);
1146                                 argp->pagelen = 0;
1147                         } else {
1148                                 argp->end = p + (PAGE_SIZE>>2);
1149                                 argp->pagelen -= PAGE_SIZE;
1150                         }
1151                 }
1152                 op->opnum = ntohl(*argp->p++);
1153
1154                 switch (op->opnum) {
1155                 case 2: /* Reserved operation */
1156                         op->opnum = OP_ILLEGAL;
1157                         if (argp->minorversion == 0)
1158                                 op->status = nfserr_op_illegal;
1159                         else
1160                                 op->status = nfserr_minor_vers_mismatch;
1161                         break;
1162                 case OP_ACCESS:
1163                         op->status = nfsd4_decode_access(argp, &op->u.access);
1164                         break;
1165                 case OP_CLOSE:
1166                         op->status = nfsd4_decode_close(argp, &op->u.close);
1167                         break;
1168                 case OP_COMMIT:
1169                         op->status = nfsd4_decode_commit(argp, &op->u.commit);
1170                         break;
1171                 case OP_CREATE:
1172                         op->status = nfsd4_decode_create(argp, &op->u.create);
1173                         break;
1174                 case OP_GETATTR:
1175                         op->status = nfsd4_decode_getattr(argp, &op->u.getattr);
1176                         break;
1177                 case OP_GETFH:
1178                         op->status = nfs_ok;
1179                         break;
1180                 case OP_LINK:
1181                         op->status = nfsd4_decode_link(argp, &op->u.link);
1182                         break;
1183                 case OP_LOCK:
1184                         op->status = nfsd4_decode_lock(argp, &op->u.lock);
1185                         break;
1186                 case OP_LOCKT:
1187                         op->status = nfsd4_decode_lockt(argp, &op->u.lockt);
1188                         break;
1189                 case OP_LOCKU:
1190                         op->status = nfsd4_decode_locku(argp, &op->u.locku);
1191                         break;
1192                 case OP_LOOKUP:
1193                         op->status = nfsd4_decode_lookup(argp, &op->u.lookup);
1194                         break;
1195                 case OP_LOOKUPP:
1196                         op->status = nfs_ok;
1197                         break;
1198                 case OP_NVERIFY:
1199                         op->status = nfsd4_decode_verify(argp, &op->u.nverify);
1200                         break;
1201                 case OP_OPEN:
1202                         op->status = nfsd4_decode_open(argp, &op->u.open);
1203                         break;
1204                 case OP_OPEN_CONFIRM:
1205                         op->status = nfsd4_decode_open_confirm(argp, &op->u.open_confirm);
1206                         break;
1207                 case OP_OPEN_DOWNGRADE:
1208                         op->status = nfsd4_decode_open_downgrade(argp, &op->u.open_downgrade);
1209                         break;
1210                 case OP_PUTFH:
1211                         op->status = nfsd4_decode_putfh(argp, &op->u.putfh);
1212                         break;
1213                 case OP_PUTROOTFH:
1214                         op->status = nfs_ok;
1215                         break;
1216                 case OP_READ:
1217                         op->status = nfsd4_decode_read(argp, &op->u.read);
1218                         break;
1219                 case OP_READDIR:
1220                         op->status = nfsd4_decode_readdir(argp, &op->u.readdir);
1221                         break;
1222                 case OP_READLINK:
1223                         op->status = nfs_ok;
1224                         break;
1225                 case OP_REMOVE:
1226                         op->status = nfsd4_decode_remove(argp, &op->u.remove);
1227                         break;
1228                 case OP_RENAME:
1229                         op->status = nfsd4_decode_rename(argp, &op->u.rename);
1230                         break;
1231                 case OP_RESTOREFH:
1232                         op->status = nfs_ok;
1233                         break;
1234                 case OP_RENEW:
1235                         op->status = nfsd4_decode_renew(argp, &op->u.renew);
1236                         break;
1237                 case OP_SAVEFH:
1238                         op->status = nfs_ok;
1239                         break;
1240                 case OP_SETATTR:
1241                         op->status = nfsd4_decode_setattr(argp, &op->u.setattr);
1242                         break;
1243                 case OP_SETCLIENTID:
1244                         op->status = nfsd4_decode_setclientid(argp, &op->u.setclientid);
1245                         break;
1246                 case OP_SETCLIENTID_CONFIRM:
1247                         op->status = nfsd4_decode_setclientid_confirm(argp, &op->u.setclientid_confirm);
1248                         break;
1249                 case OP_VERIFY:
1250                         op->status = nfsd4_decode_verify(argp, &op->u.verify);
1251                         break;
1252                 case OP_WRITE:
1253                         op->status = nfsd4_decode_write(argp, &op->u.write);
1254                         break;
1255                 case OP_RELEASE_LOCKOWNER:
1256                         op->status = nfsd4_decode_release_lockowner(argp, &op->u.release_lockowner);
1257                         break;
1258                 default:
1259                         op->opnum = OP_ILLEGAL;
1260                         op->status = nfserr_op_illegal;
1261                         break;
1262                 }
1263
1264                 if (op->status) {
1265                         argp->opcnt = i+1;
1266                         break;
1267                 }
1268         }
1269
1270         DECODE_TAIL;
1271 }
1272 /*
1273  * END OF "GENERIC" DECODE ROUTINES.
1274  */
1275
1276 /*
1277  * START OF "GENERIC" ENCODE ROUTINES.
1278  *   These may look a little ugly since they are imported from a "generic"
1279  * set of XDR encode/decode routines which are intended to be shared by
1280  * all of our NFSv4 implementations (OpenBSD, MacOS X...).
1281  *
1282  * If the pain of reading these is too great, it should be a straightforward
1283  * task to translate them into Linux-specific versions which are more
1284  * consistent with the style used in NFSv2/v3...
1285  */
1286 #define ENCODE_HEAD              u32 *p
1287
1288 #define WRITE32(n)               *p++ = htonl(n)
1289 #define WRITE64(n)               do {                           \
1290         *p++ = htonl((u32)((n) >> 32));                         \
1291         *p++ = htonl((u32)(n));                                 \
1292 } while (0)
1293 #define WRITEMEM(ptr,nbytes)     do {                           \
1294         *(p + XDR_QUADLEN(nbytes) -1) = 0;                      \
1295         memcpy(p, ptr, nbytes);                                 \
1296         p += XDR_QUADLEN(nbytes);                               \
1297 } while (0)
1298 #define WRITECINFO(c)           do {                            \
1299         *p++ = htonl(c.atomic);                                 \
1300         *p++ = htonl(c.before_ctime_sec);                               \
1301         *p++ = htonl(c.before_ctime_nsec);                              \
1302         *p++ = htonl(c.after_ctime_sec);                                \
1303         *p++ = htonl(c.after_ctime_nsec);                               \
1304 } while (0)
1305
1306 #define RESERVE_SPACE(nbytes)   do {                            \
1307         p = resp->p;                                            \
1308         BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end);            \
1309 } while (0)
1310 #define ADJUST_ARGS()           resp->p = p
1311
1312 /*
1313  * Header routine to setup seqid operation replay cache
1314  */
1315 #define ENCODE_SEQID_OP_HEAD                                    \
1316         u32 *p;                                                 \
1317         u32 *save;                                              \
1318                                                                 \
1319         save = resp->p;
1320
1321 /*
1322  * Routine for encoding the result of a
1323  * "seqid-mutating" NFSv4 operation.  This is
1324  * where seqids are incremented, and the
1325  * replay cache is filled.
1326  */
1327
1328 #define ENCODE_SEQID_OP_TAIL(stateowner) do {                   \
1329         if (seqid_mutating_err(nfserr) && stateowner) {         \
1330                 if (stateowner->so_confirmed)                   \
1331                         stateowner->so_seqid++;                 \
1332                 stateowner->so_replay.rp_status = nfserr;       \
1333                 stateowner->so_replay.rp_buflen =               \
1334                           (((char *)(resp)->p - (char *)save)); \
1335                 memcpy(stateowner->so_replay.rp_buf, save,      \
1336                         stateowner->so_replay.rp_buflen);       \
1337         } } while (0);
1338
1339
1340 static u32 nfs4_ftypes[16] = {
1341         NF4BAD,  NF4FIFO, NF4CHR, NF4BAD,
1342         NF4DIR,  NF4BAD,  NF4BLK, NF4BAD,
1343         NF4REG,  NF4BAD,  NF4LNK, NF4BAD,
1344         NF4SOCK, NF4BAD,  NF4LNK, NF4BAD,
1345 };
1346
1347 static int
1348 nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
1349                         u32 **p, int *buflen)
1350 {
1351         int status;
1352
1353         if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1354                 return nfserr_resource;
1355         if (whotype != NFS4_ACL_WHO_NAMED)
1356                 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
1357         else if (group)
1358                 status = nfsd_map_gid_to_name(rqstp, id, (u8 *)(*p + 1));
1359         else
1360                 status = nfsd_map_uid_to_name(rqstp, id, (u8 *)(*p + 1));
1361         if (status < 0)
1362                 return nfserrno(status);
1363         *p = xdr_encode_opaque(*p, NULL, status);
1364         *buflen -= (XDR_QUADLEN(status) << 2) + 4;
1365         BUG_ON(*buflen < 0);
1366         return 0;
1367 }
1368
1369 static inline int
1370 nfsd4_encode_user(struct svc_rqst *rqstp, uid_t uid, u32 **p, int *buflen)
1371 {
1372         return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, uid, 0, p, buflen);
1373 }
1374
1375 static inline int
1376 nfsd4_encode_group(struct svc_rqst *rqstp, uid_t gid, u32 **p, int *buflen)
1377 {
1378         return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, gid, 1, p, buflen);
1379 }
1380
1381 static inline int
1382 nfsd4_encode_aclname(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
1383                 u32 **p, int *buflen)
1384 {
1385         return nfsd4_encode_name(rqstp, whotype, id, group, p, buflen);
1386 }
1387
1388
1389 /*
1390  * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1391  * ourselves.
1392  *
1393  * @countp is the buffer size in _words_; upon successful return this becomes
1394  * replaced with the number of words written.
1395  */
1396 int
1397 nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
1398                 struct dentry *dentry, u32 *buffer, int *countp, u32 *bmval,
1399                 struct svc_rqst *rqstp)
1400 {
1401         u32 bmval0 = bmval[0];
1402         u32 bmval1 = bmval[1];
1403         struct kstat stat;
1404         struct svc_fh tempfh;
1405         struct kstatfs statfs;
1406         int buflen = *countp << 2;
1407         u32 *attrlenp;
1408         u32 dummy;
1409         u64 dummy64;
1410         u32 *p = buffer;
1411         int status;
1412         int aclsupport = 0;
1413         struct nfs4_acl *acl = NULL;
1414
1415         BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
1416         BUG_ON(bmval0 & ~NFSD_SUPPORTED_ATTRS_WORD0);
1417         BUG_ON(bmval1 & ~NFSD_SUPPORTED_ATTRS_WORD1);
1418
1419         status = vfs_getattr(exp->ex_mnt, dentry, &stat);
1420         if (status)
1421                 goto out_nfserr;
1422         if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL)) ||
1423             (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
1424                        FATTR4_WORD1_SPACE_TOTAL))) {
1425                 status = vfs_statfs(dentry->d_inode->i_sb, &statfs);
1426                 if (status)
1427                         goto out_nfserr;
1428         }
1429         if ((bmval0 & FATTR4_WORD0_FILEHANDLE) && !fhp) {
1430                 fh_init(&tempfh, NFS4_FHSIZE);
1431                 status = fh_compose(&tempfh, exp, dentry, NULL);
1432                 if (status)
1433                         goto out;
1434                 fhp = &tempfh;
1435         }
1436         if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
1437                         | FATTR4_WORD0_SUPPORTED_ATTRS)) {
1438                 status = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
1439                 aclsupport = (status == 0);
1440                 if (bmval0 & FATTR4_WORD0_ACL) {
1441                         if (status == -EOPNOTSUPP)
1442                                 bmval0 &= ~FATTR4_WORD0_ACL;
1443                         else if (status != 0)
1444                                 goto out_nfserr;
1445                 }
1446         }
1447         if ((buflen -= 16) < 0)
1448                 goto out_resource;
1449
1450         WRITE32(2);
1451         WRITE32(bmval0);
1452         WRITE32(bmval1);
1453         attrlenp = p++;                /* to be backfilled later */
1454
1455         if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
1456                 if ((buflen -= 12) < 0)
1457                         goto out_resource;
1458                 WRITE32(2);
1459                 WRITE32(aclsupport ?
1460                         NFSD_SUPPORTED_ATTRS_WORD0 :
1461                         NFSD_SUPPORTED_ATTRS_WORD0 & ~FATTR4_WORD0_ACL);
1462                 WRITE32(NFSD_SUPPORTED_ATTRS_WORD1);
1463         }
1464         if (bmval0 & FATTR4_WORD0_TYPE) {
1465                 if ((buflen -= 4) < 0)
1466                         goto out_resource;
1467                 dummy = nfs4_ftypes[(stat.mode & S_IFMT) >> 12];
1468                 if (dummy == NF4BAD)
1469                         goto out_serverfault;
1470                 WRITE32(dummy);
1471         }
1472         if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
1473                 if ((buflen -= 4) < 0)
1474                         goto out_resource;
1475                 WRITE32( NFS4_FH_NOEXPIRE_WITH_OPEN | NFS4_FH_VOL_RENAME );
1476         }
1477         if (bmval0 & FATTR4_WORD0_CHANGE) {
1478                 /*
1479                  * Note: This _must_ be consistent with the scheme for writing
1480                  * change_info, so any changes made here must be reflected there
1481                  * as well.  (See xdr4.h:set_change_info() and the WRITECINFO()
1482                  * macro above.)
1483                  */
1484                 if ((buflen -= 8) < 0)
1485                         goto out_resource;
1486                 WRITE32(stat.ctime.tv_sec);
1487                 WRITE32(stat.ctime.tv_nsec);
1488         }
1489         if (bmval0 & FATTR4_WORD0_SIZE) {
1490                 if ((buflen -= 8) < 0)
1491                         goto out_resource;
1492                 WRITE64(stat.size);
1493         }
1494         if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
1495                 if ((buflen -= 4) < 0)
1496                         goto out_resource;
1497                 WRITE32(1);
1498         }
1499         if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
1500                 if ((buflen -= 4) < 0)
1501                         goto out_resource;
1502                 WRITE32(1);
1503         }
1504         if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
1505                 if ((buflen -= 4) < 0)
1506                         goto out_resource;
1507                 WRITE32(0);
1508         }
1509         if (bmval0 & FATTR4_WORD0_FSID) {
1510                 if ((buflen -= 16) < 0)
1511                         goto out_resource;
1512                 WRITE32(0);
1513                 WRITE32(MAJOR(stat.dev));
1514                 WRITE32(0);
1515                 WRITE32(MINOR(stat.dev));
1516         }
1517         if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
1518                 if ((buflen -= 4) < 0)
1519                         goto out_resource;
1520                 WRITE32(0);
1521         }
1522         if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
1523                 if ((buflen -= 4) < 0)
1524                         goto out_resource;
1525                 WRITE32(NFSD_LEASE_TIME);
1526         }
1527         if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
1528                 if ((buflen -= 4) < 0)
1529                         goto out_resource;
1530                 WRITE32(0);
1531         }
1532         if (bmval0 & FATTR4_WORD0_ACL) {
1533                 struct nfs4_ace *ace;
1534                 struct list_head *h;
1535
1536                 if (acl == NULL) {
1537                         if ((buflen -= 4) < 0)
1538                                 goto out_resource;
1539
1540                         WRITE32(0);
1541                         goto out_acl;
1542                 }
1543                 if ((buflen -= 4) < 0)
1544                         goto out_resource;
1545                 WRITE32(acl->naces);
1546
1547                 list_for_each(h, &acl->ace_head) {
1548                         ace = list_entry(h, struct nfs4_ace, l_ace);
1549
1550                         if ((buflen -= 4*3) < 0)
1551                                 goto out_resource;
1552                         WRITE32(ace->type);
1553                         WRITE32(ace->flag);
1554                         WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
1555                         status = nfsd4_encode_aclname(rqstp, ace->whotype,
1556                                 ace->who, ace->flag & NFS4_ACE_IDENTIFIER_GROUP,
1557                                 &p, &buflen);
1558                         if (status == nfserr_resource)
1559                                 goto out_resource;
1560                         if (status)
1561                                 goto out;
1562                 }
1563         }
1564 out_acl:
1565         if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
1566                 if ((buflen -= 4) < 0)
1567                         goto out_resource;
1568                 WRITE32(aclsupport ?
1569                         ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
1570         }
1571         if (bmval0 & FATTR4_WORD0_CANSETTIME) {
1572                 if ((buflen -= 4) < 0)
1573                         goto out_resource;
1574                 WRITE32(1);
1575         }
1576         if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
1577                 if ((buflen -= 4) < 0)
1578                         goto out_resource;
1579                 WRITE32(1);
1580         }
1581         if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
1582                 if ((buflen -= 4) < 0)
1583                         goto out_resource;
1584                 WRITE32(1);
1585         }
1586         if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
1587                 if ((buflen -= 4) < 0)
1588                         goto out_resource;
1589                 WRITE32(1);
1590         }
1591         if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
1592                 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
1593                 if (buflen < 0)
1594                         goto out_resource;
1595                 WRITE32(fhp->fh_handle.fh_size);
1596                 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
1597         }
1598         if (bmval0 & FATTR4_WORD0_FILEID) {
1599                 if ((buflen -= 8) < 0)
1600                         goto out_resource;
1601                 WRITE64((u64) stat.ino);
1602         }
1603         if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
1604                 if ((buflen -= 8) < 0)
1605                         goto out_resource;
1606                 WRITE64((u64) statfs.f_ffree);
1607         }
1608         if (bmval0 & FATTR4_WORD0_FILES_FREE) {
1609                 if ((buflen -= 8) < 0)
1610                         goto out_resource;
1611                 WRITE64((u64) statfs.f_ffree);
1612         }
1613         if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
1614                 if ((buflen -= 8) < 0)
1615                         goto out_resource;
1616                 WRITE64((u64) statfs.f_files);
1617         }
1618         if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
1619                 if ((buflen -= 4) < 0)
1620                         goto out_resource;
1621                 WRITE32(1);
1622         }
1623         if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
1624                 if ((buflen -= 8) < 0)
1625                         goto out_resource;
1626                 WRITE64(~(u64)0);
1627         }
1628         if (bmval0 & FATTR4_WORD0_MAXLINK) {
1629                 if ((buflen -= 4) < 0)
1630                         goto out_resource;
1631                 WRITE32(255);
1632         }
1633         if (bmval0 & FATTR4_WORD0_MAXNAME) {
1634                 if ((buflen -= 4) < 0)
1635                         goto out_resource;
1636                 WRITE32(~(u32) 0);
1637         }
1638         if (bmval0 & FATTR4_WORD0_MAXREAD) {
1639                 if ((buflen -= 8) < 0)
1640                         goto out_resource;
1641                 WRITE64((u64) NFSSVC_MAXBLKSIZE);
1642         }
1643         if (bmval0 & FATTR4_WORD0_MAXWRITE) {
1644                 if ((buflen -= 8) < 0)
1645                         goto out_resource;
1646                 WRITE64((u64) NFSSVC_MAXBLKSIZE);
1647         }
1648         if (bmval1 & FATTR4_WORD1_MODE) {
1649                 if ((buflen -= 4) < 0)
1650                         goto out_resource;
1651                 WRITE32(stat.mode & S_IALLUGO);
1652         }
1653         if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
1654                 if ((buflen -= 4) < 0)
1655                         goto out_resource;
1656                 WRITE32(1);
1657         }
1658         if (bmval1 & FATTR4_WORD1_NUMLINKS) {
1659                 if ((buflen -= 4) < 0)
1660                         goto out_resource;
1661                 WRITE32(stat.nlink);
1662         }
1663         if (bmval1 & FATTR4_WORD1_OWNER) {
1664                 status = nfsd4_encode_user(rqstp,
1665                         XIDINO_UID(XID_TAG(dentry->d_inode),
1666                         stat.uid, stat.xid), &p, &buflen);
1667                 if (status == nfserr_resource)
1668                         goto out_resource;
1669                 if (status)
1670                         goto out;
1671         }
1672         if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
1673                 status = nfsd4_encode_group(rqstp,
1674                         XIDINO_GID(XID_TAG(dentry->d_inode),
1675                         stat.gid, stat.xid), &p, &buflen);
1676                 if (status == nfserr_resource)
1677                         goto out_resource;
1678                 if (status)
1679                         goto out;
1680         }
1681         if (bmval1 & FATTR4_WORD1_RAWDEV) {
1682                 if ((buflen -= 8) < 0)
1683                         goto out_resource;
1684                 WRITE32((u32) MAJOR(stat.rdev));
1685                 WRITE32((u32) MINOR(stat.rdev));
1686         }
1687         if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
1688                 if ((buflen -= 8) < 0)
1689                         goto out_resource;
1690                 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
1691                 WRITE64(dummy64);
1692         }
1693         if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
1694                 if ((buflen -= 8) < 0)
1695                         goto out_resource;
1696                 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
1697                 WRITE64(dummy64);
1698         }
1699         if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
1700                 if ((buflen -= 8) < 0)
1701                         goto out_resource;
1702                 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
1703                 WRITE64(dummy64);
1704         }
1705         if (bmval1 & FATTR4_WORD1_SPACE_USED) {
1706                 if ((buflen -= 8) < 0)
1707                         goto out_resource;
1708                 dummy64 = (u64)stat.blocks << 9;
1709                 WRITE64(dummy64);
1710         }
1711         if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
1712                 if ((buflen -= 12) < 0)
1713                         goto out_resource;
1714                 WRITE32(0);
1715                 WRITE32(stat.atime.tv_sec);
1716                 WRITE32(stat.atime.tv_nsec);
1717         }
1718         if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
1719                 if ((buflen -= 12) < 0)
1720                         goto out_resource;
1721                 WRITE32(0);
1722                 WRITE32(1);
1723                 WRITE32(0);
1724         }
1725         if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
1726                 if ((buflen -= 12) < 0)
1727                         goto out_resource;
1728                 WRITE32(0);
1729                 WRITE32(stat.ctime.tv_sec);
1730                 WRITE32(stat.ctime.tv_nsec);
1731         }
1732         if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
1733                 if ((buflen -= 12) < 0)
1734                         goto out_resource;
1735                 WRITE32(0);
1736                 WRITE32(stat.mtime.tv_sec);
1737                 WRITE32(stat.mtime.tv_nsec);
1738         }
1739         if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
1740                 struct dentry *mnt_pnt, *mnt_root;
1741
1742                 if ((buflen -= 8) < 0)
1743                         goto out_resource;
1744                 mnt_root = exp->ex_mnt->mnt_root;
1745                 if (mnt_root->d_inode == dentry->d_inode) {
1746                         mnt_pnt = exp->ex_mnt->mnt_mountpoint;
1747                         WRITE64((u64) mnt_pnt->d_inode->i_ino);
1748                 } else
1749                         WRITE64((u64) stat.ino);
1750         }
1751         *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
1752         *countp = p - buffer;
1753         status = nfs_ok;
1754
1755 out:
1756         nfs4_acl_free(acl);
1757         if (fhp == &tempfh)
1758                 fh_put(&tempfh);
1759         return status;
1760 out_nfserr:
1761         status = nfserrno(status);
1762         goto out;
1763 out_resource:
1764         *countp = 0;
1765         status = nfserr_resource;
1766         goto out;
1767 out_serverfault:
1768         status = nfserr_serverfault;
1769         goto out;
1770 }
1771
1772 static int
1773 nfsd4_encode_dirent(struct readdir_cd *ccd, const char *name, int namlen,
1774                     loff_t offset, ino_t ino, unsigned int d_type)
1775 {
1776         struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
1777         int buflen;
1778         u32 *p = cd->buffer;
1779         u32 *attrlenp;
1780         struct dentry *dentry;
1781         struct svc_export *exp = cd->rd_fhp->fh_export;
1782         u32 bmval0, bmval1;
1783         int nfserr = 0;
1784
1785         /* In nfsv4, "." and ".." never make it onto the wire.. */
1786         if (name && isdotent(name, namlen)) {
1787                 cd->common.err = nfs_ok;
1788                 return 0;
1789         }
1790
1791         if (cd->offset)
1792                 xdr_encode_hyper(cd->offset, (u64) offset);
1793
1794         buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
1795         if (buflen < 0)
1796                 goto nospc;
1797
1798         *p++ = xdr_one;                             /* mark entry present */
1799         cd->offset = p;                             /* remember pointer */
1800         p = xdr_encode_hyper(p, NFS_OFFSET_MAX);    /* offset of next entry */
1801         p = xdr_encode_array(p, name, namlen);      /* name length & name */
1802
1803         /*
1804          * Now we come to the ugly part: writing the fattr for this entry.
1805          */
1806         bmval0 = cd->rd_bmval[0];
1807         bmval1 = cd->rd_bmval[1];
1808         if ((bmval0 & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_FILEID)) || bmval1)  {
1809                 /*
1810                  * "Heavyweight" case: we have no choice except to
1811                  * call nfsd4_encode_fattr(). 
1812                  */
1813                 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
1814                 if (IS_ERR(dentry)) {
1815                         nfserr = nfserrno(PTR_ERR(dentry));
1816                         goto error;
1817                 }
1818
1819                 exp_get(exp);
1820                 if (d_mountpoint(dentry)) {
1821                         if ((nfserr = nfsd_cross_mnt(cd->rd_rqstp, &dentry, 
1822                                          &exp))) {      
1823                         /* 
1824                          * -EAGAIN is the only error returned from 
1825                          * nfsd_cross_mnt() and it indicates that an 
1826                          * up-call has  been initiated to fill in the export 
1827                          * options on exp.  When the answer comes back,
1828                          * this call will be retried.
1829                          */
1830                                 dput(dentry);
1831                                 exp_put(exp);
1832                                 nfserr = nfserr_dropit;
1833                                 goto error;
1834                         }
1835
1836                 }
1837
1838                 nfserr = nfsd4_encode_fattr(NULL, exp,
1839                                 dentry, p, &buflen, cd->rd_bmval,
1840                                 cd->rd_rqstp);
1841                 dput(dentry);
1842                 exp_put(exp);
1843                 if (!nfserr) {
1844                         p += buflen;
1845                         goto out;
1846                 }
1847                 if (nfserr == nfserr_resource)
1848                         goto nospc;
1849
1850 error:
1851                 /*
1852                  * If we get here, we experienced a miscellaneous
1853                  * failure while writing the attributes.  If the
1854                  * client requested the RDATTR_ERROR attribute,
1855                  * we stuff the error code into this attribute
1856                  * and continue.  If this attribute was not requested,
1857                  * then in accordance with the spec, we fail the
1858                  * entire READDIR operation(!)
1859                  */
1860                 if (!(bmval0 & FATTR4_WORD0_RDATTR_ERROR)) {
1861                         cd->common.err = nfserr;
1862                         return -EINVAL;
1863                 }
1864
1865                 bmval0 = FATTR4_WORD0_RDATTR_ERROR;
1866                 bmval1 = 0;
1867                 /* falling through here will do the right thing... */
1868         }
1869
1870         /*
1871          * In the common "lightweight" case, we avoid
1872          * the overhead of nfsd4_encode_fattr() by assembling
1873          * a small fattr by hand.
1874          */
1875         if (buflen < 6)
1876                 goto nospc;
1877         *p++ = htonl(2);
1878         *p++ = htonl(bmval0);
1879         *p++ = htonl(bmval1);
1880
1881         attrlenp = p++;
1882         if (bmval0 & FATTR4_WORD0_RDATTR_ERROR)
1883                 *p++ = nfserr;       /* no htonl */
1884         if (bmval0 & FATTR4_WORD0_FILEID)
1885                 p = xdr_encode_hyper(p, (u64)ino);
1886         *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
1887
1888 out:
1889         cd->buflen -= (p - cd->buffer);
1890         cd->buffer = p;
1891         cd->common.err = nfs_ok;
1892         return 0;
1893
1894 nospc:
1895         cd->common.err = nfserr_toosmall;
1896         return -EINVAL;
1897 }
1898
1899 static void
1900 nfsd4_encode_access(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_access *access)
1901 {
1902         ENCODE_HEAD;
1903
1904         if (!nfserr) {
1905                 RESERVE_SPACE(8);
1906                 WRITE32(access->ac_supported);
1907                 WRITE32(access->ac_resp_access);
1908                 ADJUST_ARGS();
1909         }
1910 }
1911
1912 static void
1913 nfsd4_encode_close(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_close *close)
1914 {
1915         ENCODE_SEQID_OP_HEAD;
1916
1917         if (!nfserr) {
1918                 RESERVE_SPACE(sizeof(stateid_t));
1919                 WRITE32(close->cl_stateid.si_generation);
1920                 WRITEMEM(&close->cl_stateid.si_opaque, sizeof(stateid_opaque_t));
1921                 ADJUST_ARGS();
1922         }
1923         ENCODE_SEQID_OP_TAIL(close->cl_stateowner);
1924 }
1925
1926
1927 static void
1928 nfsd4_encode_commit(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_commit *commit)
1929 {
1930         ENCODE_HEAD;
1931
1932         if (!nfserr) {
1933                 RESERVE_SPACE(8);
1934                 WRITEMEM(commit->co_verf.data, 8);
1935                 ADJUST_ARGS();
1936         }
1937 }
1938
1939 static void
1940 nfsd4_encode_create(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_create *create)
1941 {
1942         ENCODE_HEAD;
1943
1944         if (!nfserr) {
1945                 RESERVE_SPACE(32);
1946                 WRITECINFO(create->cr_cinfo);
1947                 WRITE32(2);
1948                 WRITE32(create->cr_bmval[0]);
1949                 WRITE32(create->cr_bmval[1]);
1950                 ADJUST_ARGS();
1951         }
1952 }
1953
1954 static int
1955 nfsd4_encode_getattr(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_getattr *getattr)
1956 {
1957         struct svc_fh *fhp = getattr->ga_fhp;
1958         int buflen;
1959
1960         if (nfserr)
1961                 return nfserr;
1962
1963         buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
1964         nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
1965                                     resp->p, &buflen, getattr->ga_bmval,
1966                                     resp->rqstp);
1967
1968         if (!nfserr)
1969                 resp->p += buflen;
1970         return nfserr;
1971 }
1972
1973 static void
1974 nfsd4_encode_getfh(struct nfsd4_compoundres *resp, int nfserr, struct svc_fh *fhp)
1975 {
1976         unsigned int len;
1977         ENCODE_HEAD;
1978
1979         if (!nfserr) {
1980                 len = fhp->fh_handle.fh_size;
1981                 RESERVE_SPACE(len + 4);
1982                 WRITE32(len);
1983                 WRITEMEM(&fhp->fh_handle.fh_base, len);
1984                 ADJUST_ARGS();
1985         }
1986 }
1987
1988 /*
1989 * Including all fields other than the name, a LOCK4denied structure requires
1990 *   8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
1991 */
1992 static void
1993 nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
1994 {
1995         ENCODE_HEAD;
1996
1997         RESERVE_SPACE(32 + XDR_LEN(ld->ld_sop ? ld->ld_sop->so_owner.len : 0));
1998         WRITE64(ld->ld_start);
1999         WRITE64(ld->ld_length);
2000         WRITE32(ld->ld_type);
2001         if (ld->ld_sop) {
2002                 WRITEMEM(&ld->ld_clientid, 8);
2003                 WRITE32(ld->ld_sop->so_owner.len);
2004                 WRITEMEM(ld->ld_sop->so_owner.data, ld->ld_sop->so_owner.len);
2005                 kref_put(&ld->ld_sop->so_ref, nfs4_free_stateowner);
2006         }  else {  /* non - nfsv4 lock in conflict, no clientid nor owner */
2007                 WRITE64((u64)0); /* clientid */
2008                 WRITE32(0); /* length of owner name */
2009         }
2010         ADJUST_ARGS();
2011 }
2012
2013 static void
2014 nfsd4_encode_lock(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_lock *lock)
2015 {
2016
2017         ENCODE_SEQID_OP_HEAD;
2018
2019         if (!nfserr) {
2020                 RESERVE_SPACE(4 + sizeof(stateid_t));
2021                 WRITE32(lock->lk_resp_stateid.si_generation);
2022                 WRITEMEM(&lock->lk_resp_stateid.si_opaque, sizeof(stateid_opaque_t));
2023                 ADJUST_ARGS();
2024         } else if (nfserr == nfserr_denied)
2025                 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2026
2027         ENCODE_SEQID_OP_TAIL(lock->lk_stateowner);
2028 }
2029
2030 static void
2031 nfsd4_encode_lockt(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_lockt *lockt)
2032 {
2033         if (nfserr == nfserr_denied)
2034                 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
2035 }
2036
2037 static void
2038 nfsd4_encode_locku(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_locku *locku)
2039 {
2040         ENCODE_SEQID_OP_HEAD;
2041
2042         if (!nfserr) {
2043                 RESERVE_SPACE(sizeof(stateid_t));
2044                 WRITE32(locku->lu_stateid.si_generation);
2045                 WRITEMEM(&locku->lu_stateid.si_opaque, sizeof(stateid_opaque_t));
2046                 ADJUST_ARGS();
2047         }
2048                                         
2049         ENCODE_SEQID_OP_TAIL(locku->lu_stateowner);
2050 }
2051
2052
2053 static void
2054 nfsd4_encode_link(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_link *link)
2055 {
2056         ENCODE_HEAD;
2057
2058         if (!nfserr) {
2059                 RESERVE_SPACE(20);
2060                 WRITECINFO(link->li_cinfo);
2061                 ADJUST_ARGS();
2062         }
2063 }
2064
2065
2066 static void
2067 nfsd4_encode_open(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_open *open)
2068 {
2069         ENCODE_SEQID_OP_HEAD;
2070
2071         if (nfserr)
2072                 goto out;
2073
2074         RESERVE_SPACE(36 + sizeof(stateid_t));
2075         WRITE32(open->op_stateid.si_generation);
2076         WRITEMEM(&open->op_stateid.si_opaque, sizeof(stateid_opaque_t));
2077         WRITECINFO(open->op_cinfo);
2078         WRITE32(open->op_rflags);
2079         WRITE32(2);
2080         WRITE32(open->op_bmval[0]);
2081         WRITE32(open->op_bmval[1]);
2082         WRITE32(open->op_delegate_type);
2083         ADJUST_ARGS();
2084
2085         switch (open->op_delegate_type) {
2086         case NFS4_OPEN_DELEGATE_NONE:
2087                 break;
2088         case NFS4_OPEN_DELEGATE_READ:
2089                 RESERVE_SPACE(20 + sizeof(delegation_stateid_t));
2090                 WRITEMEM(&open->op_delegate_stateid, sizeof(delegation_stateid_t));
2091                 WRITE32(0);
2092
2093                 /*
2094                  * TODO: ACE's in delegations
2095                  */
2096                 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2097                 WRITE32(0);
2098                 WRITE32(0);
2099                 WRITE32(0);   /* XXX: is NULL principal ok? */
2100                 ADJUST_ARGS();
2101                 break;
2102         case NFS4_OPEN_DELEGATE_WRITE:
2103                 RESERVE_SPACE(32 + sizeof(delegation_stateid_t));
2104                 WRITEMEM(&open->op_delegate_stateid, sizeof(delegation_stateid_t));
2105                 WRITE32(0);
2106
2107                 /*
2108                  * TODO: space_limit's in delegations
2109                  */
2110                 WRITE32(NFS4_LIMIT_SIZE);
2111                 WRITE32(~(u32)0);
2112                 WRITE32(~(u32)0);
2113
2114                 /*
2115                  * TODO: ACE's in delegations
2116                  */
2117                 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2118                 WRITE32(0);
2119                 WRITE32(0);
2120                 WRITE32(0);   /* XXX: is NULL principal ok? */
2121                 ADJUST_ARGS();
2122                 break;
2123         default:
2124                 BUG();
2125         }
2126         /* XXX save filehandle here */
2127 out:
2128         ENCODE_SEQID_OP_TAIL(open->op_stateowner);
2129 }
2130
2131 static void
2132 nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_open_confirm *oc)
2133 {
2134         ENCODE_SEQID_OP_HEAD;
2135                                         
2136         if (!nfserr) {
2137                 RESERVE_SPACE(sizeof(stateid_t));
2138                 WRITE32(oc->oc_resp_stateid.si_generation);
2139                 WRITEMEM(&oc->oc_resp_stateid.si_opaque, sizeof(stateid_opaque_t));
2140                 ADJUST_ARGS();
2141         }
2142
2143         ENCODE_SEQID_OP_TAIL(oc->oc_stateowner);
2144 }
2145
2146 static void
2147 nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_open_downgrade *od)
2148 {
2149         ENCODE_SEQID_OP_HEAD;
2150                                         
2151         if (!nfserr) {
2152                 RESERVE_SPACE(sizeof(stateid_t));
2153                 WRITE32(od->od_stateid.si_generation);
2154                 WRITEMEM(&od->od_stateid.si_opaque, sizeof(stateid_opaque_t));
2155                 ADJUST_ARGS();
2156         }
2157
2158         ENCODE_SEQID_OP_TAIL(od->od_stateowner);
2159 }
2160
2161 static int
2162 nfsd4_encode_read(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_read *read)
2163 {
2164         u32 eof;
2165         int v, pn;
2166         unsigned long maxcount; 
2167         long len;
2168         ENCODE_HEAD;
2169
2170         if (nfserr)
2171                 return nfserr;
2172         if (resp->xbuf->page_len)
2173                 return nfserr_resource;
2174
2175         RESERVE_SPACE(8); /* eof flag and byte count */
2176
2177         maxcount = NFSSVC_MAXBLKSIZE;
2178         if (maxcount > read->rd_length)
2179                 maxcount = read->rd_length;
2180
2181         len = maxcount;
2182         v = 0;
2183         while (len > 0) {
2184                 pn = resp->rqstp->rq_resused;
2185                 svc_take_page(resp->rqstp);
2186                 read->rd_iov[v].iov_base = page_address(resp->rqstp->rq_respages[pn]);
2187                 read->rd_iov[v].iov_len = len < PAGE_SIZE ? len : PAGE_SIZE;
2188                 v++;
2189                 len -= PAGE_SIZE;
2190         }
2191         read->rd_vlen = v;
2192
2193         nfserr = nfsd_read(read->rd_rqstp, read->rd_fhp,
2194                            read->rd_offset,
2195                            read->rd_iov, read->rd_vlen,
2196                            &maxcount);
2197         if (nfserr == nfserr_symlink)
2198                 nfserr = nfserr_inval;
2199         if (nfserr)
2200                 return nfserr;
2201         eof = (read->rd_offset + maxcount >= read->rd_fhp->fh_dentry->d_inode->i_size);
2202
2203         WRITE32(eof);
2204         WRITE32(maxcount);
2205         ADJUST_ARGS();
2206         resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
2207
2208         resp->xbuf->page_len = maxcount;
2209
2210         /* read zero bytes -> don't set up tail */
2211         if(!maxcount)
2212                 return 0;        
2213
2214         /* set up page for remaining responses */
2215         svc_take_page(resp->rqstp);
2216         resp->xbuf->tail[0].iov_base = 
2217                 page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
2218         resp->rqstp->rq_restailpage = resp->rqstp->rq_resused-1;
2219         resp->xbuf->tail[0].iov_len = 0;
2220         resp->p = resp->xbuf->tail[0].iov_base;
2221         resp->end = resp->p + PAGE_SIZE/4;
2222
2223         if (maxcount&3) {
2224                 *(resp->p)++ = 0;
2225                 resp->xbuf->tail[0].iov_base += maxcount&3;
2226                 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
2227         }
2228         return 0;
2229 }
2230
2231 static int
2232 nfsd4_encode_readlink(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_readlink *readlink)
2233 {
2234         int maxcount;
2235         char *page;
2236         ENCODE_HEAD;
2237
2238         if (nfserr)
2239                 return nfserr;
2240         if (resp->xbuf->page_len)
2241                 return nfserr_resource;
2242
2243         svc_take_page(resp->rqstp);
2244         page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
2245
2246         maxcount = PAGE_SIZE;
2247         RESERVE_SPACE(4);
2248
2249         /*
2250          * XXX: By default, the ->readlink() VFS op will truncate symlinks
2251          * if they would overflow the buffer.  Is this kosher in NFSv4?  If
2252          * not, one easy fix is: if ->readlink() precisely fills the buffer,
2253          * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2254          */
2255         nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
2256         if (nfserr == nfserr_isdir)
2257                 return nfserr_inval;
2258         if (nfserr)
2259                 return nfserr;
2260
2261         WRITE32(maxcount);
2262         ADJUST_ARGS();
2263         resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
2264
2265         svc_take_page(resp->rqstp);
2266         resp->xbuf->tail[0].iov_base = 
2267                 page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
2268         resp->rqstp->rq_restailpage = resp->rqstp->rq_resused-1;
2269         resp->xbuf->tail[0].iov_len = 0;
2270         resp->p = resp->xbuf->tail[0].iov_base;
2271         resp->end = resp->p + PAGE_SIZE/4;
2272
2273         resp->xbuf->page_len = maxcount;
2274         if (maxcount&3) {
2275                 *(resp->p)++ = 0;
2276                 resp->xbuf->tail[0].iov_base += maxcount&3;
2277                 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
2278         }
2279         return 0;
2280 }
2281
2282 static int
2283 nfsd4_encode_readdir(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_readdir *readdir)
2284 {
2285         int maxcount;
2286         loff_t offset;
2287         u32 *page, *savep;
2288         ENCODE_HEAD;
2289
2290         if (nfserr)
2291                 return nfserr;
2292         if (resp->xbuf->page_len)
2293                 return nfserr_resource;
2294
2295         RESERVE_SPACE(8);  /* verifier */
2296         savep = p;
2297
2298         /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2299         WRITE32(0);
2300         WRITE32(0);
2301         ADJUST_ARGS();
2302         resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
2303
2304         maxcount = PAGE_SIZE;
2305         if (maxcount > readdir->rd_maxcount)
2306                 maxcount = readdir->rd_maxcount;
2307
2308         /*
2309          * Convert from bytes to words, account for the two words already
2310          * written, make sure to leave two words at the end for the next
2311          * pointer and eof field.
2312          */
2313         maxcount = (maxcount >> 2) - 4;
2314         if (maxcount < 0) {
2315                 nfserr =  nfserr_toosmall;
2316                 goto err_no_verf;
2317         }
2318
2319         svc_take_page(resp->rqstp);
2320         page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
2321         readdir->common.err = 0;
2322         readdir->buflen = maxcount;
2323         readdir->buffer = page;
2324         readdir->offset = NULL;
2325
2326         offset = readdir->rd_cookie;
2327         nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
2328                               &offset,
2329                               &readdir->common, nfsd4_encode_dirent);
2330         if (nfserr == nfs_ok &&
2331             readdir->common.err == nfserr_toosmall &&
2332             readdir->buffer == page) 
2333                 nfserr = nfserr_toosmall;
2334         if (nfserr == nfserr_symlink)
2335                 nfserr = nfserr_notdir;
2336         if (nfserr)
2337                 goto err_no_verf;
2338
2339         if (readdir->offset)
2340                 xdr_encode_hyper(readdir->offset, offset);
2341
2342         p = readdir->buffer;
2343         *p++ = 0;       /* no more entries */
2344         *p++ = htonl(readdir->common.err == nfserr_eof);
2345         resp->xbuf->page_len = ((char*)p) - (char*)page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
2346
2347         /* allocate a page for the tail */
2348         svc_take_page(resp->rqstp);
2349         resp->xbuf->tail[0].iov_base = 
2350                 page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
2351         resp->rqstp->rq_restailpage = resp->rqstp->rq_resused-1;
2352         resp->xbuf->tail[0].iov_len = 0;
2353         resp->p = resp->xbuf->tail[0].iov_base;
2354         resp->end = resp->p + PAGE_SIZE/4;
2355
2356         return 0;
2357 err_no_verf:
2358         p = savep;
2359         ADJUST_ARGS();
2360         return nfserr;
2361 }
2362
2363 static void
2364 nfsd4_encode_remove(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_remove *remove)
2365 {
2366         ENCODE_HEAD;
2367
2368         if (!nfserr) {
2369                 RESERVE_SPACE(20);
2370                 WRITECINFO(remove->rm_cinfo);
2371                 ADJUST_ARGS();
2372         }
2373 }
2374
2375 static void
2376 nfsd4_encode_rename(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_rename *rename)
2377 {
2378         ENCODE_HEAD;
2379
2380         if (!nfserr) {
2381                 RESERVE_SPACE(40);
2382                 WRITECINFO(rename->rn_sinfo);
2383                 WRITECINFO(rename->rn_tinfo);
2384                 ADJUST_ARGS();
2385         }
2386 }
2387
2388 /*
2389  * The SETATTR encode routine is special -- it always encodes a bitmap,
2390  * regardless of the error status.
2391  */
2392 static void
2393 nfsd4_encode_setattr(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_setattr *setattr)
2394 {
2395         ENCODE_HEAD;
2396
2397         RESERVE_SPACE(12);
2398         if (nfserr) {
2399                 WRITE32(2);
2400                 WRITE32(0);
2401                 WRITE32(0);
2402         }
2403         else {
2404                 WRITE32(2);
2405                 WRITE32(setattr->sa_bmval[0]);
2406                 WRITE32(setattr->sa_bmval[1]);
2407         }
2408         ADJUST_ARGS();
2409 }
2410
2411 static void
2412 nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_setclientid *scd)
2413 {
2414         ENCODE_HEAD;
2415
2416         if (!nfserr) {
2417                 RESERVE_SPACE(8 + sizeof(nfs4_verifier));
2418                 WRITEMEM(&scd->se_clientid, 8);
2419                 WRITEMEM(&scd->se_confirm, sizeof(nfs4_verifier));
2420                 ADJUST_ARGS();
2421         }
2422         else if (nfserr == nfserr_clid_inuse) {
2423                 RESERVE_SPACE(8);
2424                 WRITE32(0);
2425                 WRITE32(0);
2426                 ADJUST_ARGS();
2427         }
2428 }
2429
2430 static void
2431 nfsd4_encode_write(struct nfsd4_compoundres *resp, int nfserr, struct nfsd4_write *write)
2432 {
2433         ENCODE_HEAD;
2434
2435         if (!nfserr) {
2436                 RESERVE_SPACE(16);
2437                 WRITE32(write->wr_bytes_written);
2438                 WRITE32(write->wr_how_written);
2439                 WRITEMEM(write->wr_verifier.data, 8);
2440                 ADJUST_ARGS();
2441         }
2442 }
2443
2444 void
2445 nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
2446 {
2447         u32 *statp;
2448         ENCODE_HEAD;
2449
2450         RESERVE_SPACE(8);
2451         WRITE32(op->opnum);
2452         statp = p++;    /* to be backfilled at the end */
2453         ADJUST_ARGS();
2454
2455         switch (op->opnum) {
2456         case OP_ACCESS:
2457                 nfsd4_encode_access(resp, op->status, &op->u.access);
2458                 break;
2459         case OP_CLOSE:
2460                 nfsd4_encode_close(resp, op->status, &op->u.close);
2461                 break;
2462         case OP_COMMIT:
2463                 nfsd4_encode_commit(resp, op->status, &op->u.commit);
2464                 break;
2465         case OP_CREATE:
2466                 nfsd4_encode_create(resp, op->status, &op->u.create);
2467                 break;
2468         case OP_GETATTR:
2469                 op->status = nfsd4_encode_getattr(resp, op->status, &op->u.getattr);
2470                 break;
2471         case OP_GETFH:
2472                 nfsd4_encode_getfh(resp, op->status, op->u.getfh);
2473                 break;
2474         case OP_LINK:
2475                 nfsd4_encode_link(resp, op->status, &op->u.link);
2476                 break;
2477         case OP_LOCK:
2478                 nfsd4_encode_lock(resp, op->status, &op->u.lock);
2479                 break;
2480         case OP_LOCKT:
2481                 nfsd4_encode_lockt(resp, op->status, &op->u.lockt);
2482                 break;
2483         case OP_LOCKU:
2484                 nfsd4_encode_locku(resp, op->status, &op->u.locku);
2485                 break;
2486         case OP_LOOKUP:
2487                 break;
2488         case OP_LOOKUPP:
2489                 break;
2490         case OP_NVERIFY:
2491                 break;
2492         case OP_OPEN:
2493                 nfsd4_encode_open(resp, op->status, &op->u.open);
2494                 break;
2495         case OP_OPEN_CONFIRM:
2496                 nfsd4_encode_open_confirm(resp, op->status, &op->u.open_confirm);
2497                 break;
2498         case OP_OPEN_DOWNGRADE:
2499                 nfsd4_encode_open_downgrade(resp, op->status, &op->u.open_downgrade);
2500                 break;
2501         case OP_PUTFH:
2502                 break;
2503         case OP_PUTROOTFH:
2504                 break;
2505         case OP_READ:
2506                 op->status = nfsd4_encode_read(resp, op->status, &op->u.read);
2507                 break;
2508         case OP_READDIR:
2509                 op->status = nfsd4_encode_readdir(resp, op->status, &op->u.readdir);
2510                 break;
2511         case OP_READLINK:
2512                 op->status = nfsd4_encode_readlink(resp, op->status, &op->u.readlink);
2513                 break;
2514         case OP_REMOVE:
2515                 nfsd4_encode_remove(resp, op->status, &op->u.remove);
2516                 break;
2517         case OP_RENAME:
2518                 nfsd4_encode_rename(resp, op->status, &op->u.rename);
2519                 break;
2520         case OP_RENEW:
2521                 break;
2522         case OP_RESTOREFH:
2523                 break;
2524         case OP_SAVEFH:
2525                 break;
2526         case OP_SETATTR:
2527                 nfsd4_encode_setattr(resp, op->status, &op->u.setattr);
2528                 break;
2529         case OP_SETCLIENTID:
2530                 nfsd4_encode_setclientid(resp, op->status, &op->u.setclientid);
2531                 break;
2532         case OP_SETCLIENTID_CONFIRM:
2533                 break;
2534         case OP_VERIFY:
2535                 break;
2536         case OP_WRITE:
2537                 nfsd4_encode_write(resp, op->status, &op->u.write);
2538                 break;
2539         case OP_RELEASE_LOCKOWNER:
2540                 break;
2541         default:
2542                 break;
2543         }
2544
2545         /*
2546          * Note: We write the status directly, instead of using WRITE32(),
2547          * since it is already in network byte order.
2548          */
2549         *statp = op->status;
2550 }
2551
2552 /* 
2553  * Encode the reply stored in the stateowner reply cache 
2554  * 
2555  * XDR note: do not encode rp->rp_buflen: the buffer contains the
2556  * previously sent already encoded operation.
2557  *
2558  * called with nfs4_lock_state() held
2559  */
2560 void
2561 nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
2562 {
2563         ENCODE_HEAD;
2564         struct nfs4_replay *rp = op->replay;
2565
2566         BUG_ON(!rp);
2567
2568         RESERVE_SPACE(8);
2569         WRITE32(op->opnum);
2570         *p++ = rp->rp_status;  /* already xdr'ed */
2571         ADJUST_ARGS();
2572
2573         RESERVE_SPACE(rp->rp_buflen);
2574         WRITEMEM(rp->rp_buf, rp->rp_buflen);
2575         ADJUST_ARGS();
2576 }
2577
2578 /*
2579  * END OF "GENERIC" ENCODE ROUTINES.
2580  */
2581
2582 int
2583 nfs4svc_encode_voidres(struct svc_rqst *rqstp, u32 *p, void *dummy)
2584 {
2585         return xdr_ressize_check(rqstp, p);
2586 }
2587
2588 void nfsd4_release_compoundargs(struct nfsd4_compoundargs *args)
2589 {
2590         if (args->ops != args->iops) {
2591                 kfree(args->ops);
2592                 args->ops = args->iops;
2593         }
2594         if (args->tmpp) {
2595                 kfree(args->tmpp);
2596                 args->tmpp = NULL;
2597         }
2598         while (args->to_free) {
2599                 struct tmpbuf *tb = args->to_free;
2600                 args->to_free = tb->next;
2601                 tb->release(tb->buf);
2602                 kfree(tb);
2603         }
2604 }
2605
2606 int
2607 nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, u32 *p, struct nfsd4_compoundargs *args)
2608 {
2609         int status;
2610
2611         args->p = p;
2612         args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
2613         args->pagelist = rqstp->rq_arg.pages;
2614         args->pagelen = rqstp->rq_arg.page_len;
2615         args->tmpp = NULL;
2616         args->to_free = NULL;
2617         args->ops = args->iops;
2618         args->rqstp = rqstp;
2619
2620         status = nfsd4_decode_compound(args);
2621         if (status) {
2622                 nfsd4_release_compoundargs(args);
2623         }
2624         return !status;
2625 }
2626
2627 int
2628 nfs4svc_encode_compoundres(struct svc_rqst *rqstp, u32 *p, struct nfsd4_compoundres *resp)
2629 {
2630         /*
2631          * All that remains is to write the tag and operation count...
2632          */
2633         struct kvec *iov;
2634         p = resp->tagp;
2635         *p++ = htonl(resp->taglen);
2636         memcpy(p, resp->tag, resp->taglen);
2637         p += XDR_QUADLEN(resp->taglen);
2638         *p++ = htonl(resp->opcnt);
2639
2640         if (rqstp->rq_res.page_len) 
2641                 iov = &rqstp->rq_res.tail[0];
2642         else
2643                 iov = &rqstp->rq_res.head[0];
2644         iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
2645         BUG_ON(iov->iov_len > PAGE_SIZE);
2646         return 1;
2647 }
2648
2649 /*
2650  * Local variables:
2651  *  c-basic-offset: 8
2652  * End:
2653  */