blob: b27bcf33107c57fd87e7537e948f25e3c06d2977 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Server-side XDR for NFSv4
3 *
4 * Copyright (c) 2002 The Regents of the University of Michigan.
5 * All rights reserved.
6 *
7 * Kendrick Smith <kmsmith@umich.edu>
8 * Andy Adamson <andros@umich.edu>
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
24 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
31 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 *
35 * TODO: Neil Brown made the following observation: We currently
36 * initially reserve NFSD_BUFSIZE space on the transmit queue and
37 * never release any of that until the request is complete.
38 * It would be good to calculate a new maximum response size while
39 * decoding the COMPOUND, and call svc_reserve with this number
40 * at the end of nfs4svc_decode_compoundargs.
41 */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/namei.h>
Boaz Harrosh341eb182009-12-03 20:29:12 +020044#include <linux/statfs.h>
Andy Adamson0733d212009-04-03 08:28:01 +030045#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/nfsd_idmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/nfs4_acl.h>
J. Bruce Fields4796f452007-07-17 04:04:51 -070048#include <linux/sunrpc/svcauth_gss.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020049
50#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050051#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#define NFSDDBG_FACILITY NFSDDBG_XDR
54
J.Bruce Fields42ca0992006-10-04 02:16:20 -070055/*
56 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
57 * directory in order to indicate to the client that a filesystem boundary is present
58 * We use a fixed fsid for a referral
59 */
60#define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
61#define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
62
Al Virob37ad282006-10-19 23:28:59 -070063static __be32
64check_filename(char *str, int len, __be32 err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 int i;
67
68 if (len == 0)
69 return nfserr_inval;
70 if (isdotent(str, len))
71 return err;
72 for (i = 0; i < len; i++)
73 if (str[i] == '/')
74 return err;
75 return 0;
76}
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define DECODE_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -070079 __be32 *p; \
Al Virob37ad282006-10-19 23:28:59 -070080 __be32 status
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define DECODE_TAIL \
82 status = 0; \
83out: \
84 return status; \
85xdr_error: \
Chuck Lever817cb9d2007-09-11 18:01:20 -040086 dprintk("NFSD: xdr error (%s:%d)\n", \
87 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 status = nfserr_bad_xdr; \
89 goto out
90
91#define READ32(x) (x) = ntohl(*p++)
92#define READ64(x) do { \
93 (x) = (u64)ntohl(*p++) << 32; \
94 (x) |= ntohl(*p++); \
95} while (0)
96#define READTIME(x) do { \
97 p++; \
98 (x) = ntohl(*p++); \
99 p++; \
100} while (0)
101#define READMEM(x,nbytes) do { \
102 x = (char *)p; \
103 p += XDR_QUADLEN(nbytes); \
104} while (0)
105#define SAVEMEM(x,nbytes) do { \
106 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
107 savemem(argp, p, nbytes) : \
108 (char *)p)) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400109 dprintk("NFSD: xdr error (%s:%d)\n", \
110 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 goto xdr_error; \
112 } \
113 p += XDR_QUADLEN(nbytes); \
114} while (0)
115#define COPYMEM(x,nbytes) do { \
116 memcpy((x), p, nbytes); \
117 p += XDR_QUADLEN(nbytes); \
118} while (0)
119
120/* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
121#define READ_BUF(nbytes) do { \
122 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
123 p = argp->p; \
124 argp->p += XDR_QUADLEN(nbytes); \
125 } else if (!(p = read_buf(argp, nbytes))) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400126 dprintk("NFSD: xdr error (%s:%d)\n", \
127 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 goto xdr_error; \
129 } \
130} while (0)
131
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500132static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 /* We want more bytes than seem to be available.
135 * Maybe we need a new page, maybe we have just run out
136 */
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500137 unsigned int avail = (char *)argp->end - (char *)argp->p;
Al Viro2ebbc012006-10-19 23:28:58 -0700138 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (avail + argp->pagelen < nbytes)
140 return NULL;
141 if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */
142 return NULL;
143 /* ok, we can do it with the current plus the next page */
144 if (nbytes <= sizeof(argp->tmp))
145 p = argp->tmp;
146 else {
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800147 kfree(argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
149 if (!p)
150 return NULL;
151
152 }
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500153 /*
154 * The following memcpy is safe because read_buf is always
155 * called with nbytes > avail, and the two cases above both
156 * guarantee p points to at least nbytes bytes.
157 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 memcpy(p, argp->p, avail);
159 /* step to next page */
160 argp->p = page_address(argp->pagelist[0]);
161 argp->pagelist++;
162 if (argp->pagelen < PAGE_SIZE) {
163 argp->end = p + (argp->pagelen>>2);
164 argp->pagelen = 0;
165 } else {
166 argp->end = p + (PAGE_SIZE>>2);
167 argp->pagelen -= PAGE_SIZE;
168 }
169 memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
170 argp->p += XDR_QUADLEN(nbytes - avail);
171 return p;
172}
173
Andy Adamson60adfc52009-04-03 08:28:50 +0300174static int zero_clientid(clientid_t *clid)
175{
176 return (clid->cl_boot == 0) && (clid->cl_id == 0);
177}
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179static int
180defer_free(struct nfsd4_compoundargs *argp,
181 void (*release)(const void *), void *p)
182{
183 struct tmpbuf *tb;
184
185 tb = kmalloc(sizeof(*tb), GFP_KERNEL);
186 if (!tb)
187 return -ENOMEM;
188 tb->buf = p;
189 tb->release = release;
190 tb->next = argp->to_free;
191 argp->to_free = tb;
192 return 0;
193}
194
Al Viro2ebbc012006-10-19 23:28:58 -0700195static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 if (p == argp->tmp) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800198 p = kmalloc(nbytes, GFP_KERNEL);
199 if (!p)
200 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 memcpy(p, argp->tmp, nbytes);
202 } else {
Eric Sesterhenn73dff8b2006-10-03 23:37:14 +0200203 BUG_ON(p != argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 argp->tmpp = NULL;
205 }
206 if (defer_free(argp, kfree, p)) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800207 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return NULL;
209 } else
210 return (char *)p;
211}
212
Al Virob37ad282006-10-19 23:28:59 -0700213static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
215{
216 u32 bmlen;
217 DECODE_HEAD;
218
219 bmval[0] = 0;
220 bmval[1] = 0;
Andy Adamson7e705702009-04-03 08:29:11 +0300221 bmval[2] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 READ_BUF(4);
224 READ32(bmlen);
225 if (bmlen > 1000)
226 goto xdr_error;
227
228 READ_BUF(bmlen << 2);
229 if (bmlen > 0)
230 READ32(bmval[0]);
231 if (bmlen > 1)
232 READ32(bmval[1]);
Andy Adamson7e705702009-04-03 08:29:11 +0300233 if (bmlen > 2)
234 READ32(bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 DECODE_TAIL;
237}
238
Al Virob37ad282006-10-19 23:28:59 -0700239static __be32
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800240nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300241 struct iattr *iattr, struct nfs4_acl **acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 int expected_len, len = 0;
244 u32 dummy32;
245 char *buf;
Al Virob8dd7b92006-10-19 23:29:01 -0700246 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 DECODE_HEAD;
249 iattr->ia_valid = 0;
250 if ((status = nfsd4_decode_bitmap(argp, bmval)))
251 return status;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 READ_BUF(4);
254 READ32(expected_len);
255
256 if (bmval[0] & FATTR4_WORD0_SIZE) {
257 READ_BUF(8);
258 len += 8;
259 READ64(iattr->ia_size);
260 iattr->ia_valid |= ATTR_SIZE;
261 }
262 if (bmval[0] & FATTR4_WORD0_ACL) {
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800263 int nace;
264 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 READ_BUF(4); len += 4;
267 READ32(nace);
268
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800269 if (nace > NFS4_ACL_MAX)
270 return nfserr_resource;
271
272 *acl = nfs4_acl_new(nace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (*acl == NULL) {
Al Virob8dd7b92006-10-19 23:29:01 -0700274 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 goto out_nfserr;
276 }
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800277 defer_free(argp, kfree, *acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800279 (*acl)->naces = nace;
280 for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 READ_BUF(16); len += 16;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800282 READ32(ace->type);
283 READ32(ace->flag);
284 READ32(ace->access_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 READ32(dummy32);
286 READ_BUF(dummy32);
287 len += XDR_QUADLEN(dummy32) << 2;
288 READMEM(buf, dummy32);
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800289 ace->whotype = nfs4_acl_get_whotype(buf, dummy32);
Al Virob8dd7b92006-10-19 23:29:01 -0700290 host_err = 0;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800291 if (ace->whotype != NFS4_ACL_WHO_NAMED)
292 ace->who = 0;
293 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
Al Virob8dd7b92006-10-19 23:29:01 -0700294 host_err = nfsd_map_name_to_gid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800295 buf, dummy32, &ace->who);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 else
Al Virob8dd7b92006-10-19 23:29:01 -0700297 host_err = nfsd_map_name_to_uid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800298 buf, dummy32, &ace->who);
Al Virob8dd7b92006-10-19 23:29:01 -0700299 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 } else
303 *acl = NULL;
304 if (bmval[1] & FATTR4_WORD1_MODE) {
305 READ_BUF(4);
306 len += 4;
307 READ32(iattr->ia_mode);
308 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
309 iattr->ia_valid |= ATTR_MODE;
310 }
311 if (bmval[1] & FATTR4_WORD1_OWNER) {
312 READ_BUF(4);
313 len += 4;
314 READ32(dummy32);
315 READ_BUF(dummy32);
316 len += (XDR_QUADLEN(dummy32) << 2);
317 READMEM(buf, dummy32);
Al Virob8dd7b92006-10-19 23:29:01 -0700318 if ((host_err = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 goto out_nfserr;
320 iattr->ia_valid |= ATTR_UID;
321 }
322 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
323 READ_BUF(4);
324 len += 4;
325 READ32(dummy32);
326 READ_BUF(dummy32);
327 len += (XDR_QUADLEN(dummy32) << 2);
328 READMEM(buf, dummy32);
Al Virob8dd7b92006-10-19 23:29:01 -0700329 if ((host_err = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 goto out_nfserr;
331 iattr->ia_valid |= ATTR_GID;
332 }
333 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
334 READ_BUF(4);
335 len += 4;
336 READ32(dummy32);
337 switch (dummy32) {
338 case NFS4_SET_TO_CLIENT_TIME:
339 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
340 all 32 bits of 'nseconds'. */
341 READ_BUF(12);
342 len += 12;
343 READ32(dummy32);
344 if (dummy32)
345 return nfserr_inval;
346 READ32(iattr->ia_atime.tv_sec);
347 READ32(iattr->ia_atime.tv_nsec);
348 if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
349 return nfserr_inval;
350 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
351 break;
352 case NFS4_SET_TO_SERVER_TIME:
353 iattr->ia_valid |= ATTR_ATIME;
354 break;
355 default:
356 goto xdr_error;
357 }
358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
360 READ_BUF(4);
361 len += 4;
362 READ32(dummy32);
363 switch (dummy32) {
364 case NFS4_SET_TO_CLIENT_TIME:
365 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
366 all 32 bits of 'nseconds'. */
367 READ_BUF(12);
368 len += 12;
369 READ32(dummy32);
370 if (dummy32)
371 return nfserr_inval;
372 READ32(iattr->ia_mtime.tv_sec);
373 READ32(iattr->ia_mtime.tv_nsec);
374 if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
375 return nfserr_inval;
376 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
377 break;
378 case NFS4_SET_TO_SERVER_TIME:
379 iattr->ia_valid |= ATTR_MTIME;
380 break;
381 default:
382 goto xdr_error;
383 }
384 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800385 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
386 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
387 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2)
388 READ_BUF(expected_len - len);
389 else if (len != expected_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 goto xdr_error;
391
392 DECODE_TAIL;
393
394out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -0700395 status = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto out;
397}
398
Al Virob37ad282006-10-19 23:28:59 -0700399static __be32
Benny Halevye31a1b62008-08-12 20:46:18 +0300400nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
401{
402 DECODE_HEAD;
403
404 READ_BUF(sizeof(stateid_t));
405 READ32(sid->si_generation);
406 COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
407
408 DECODE_TAIL;
409}
410
411static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
413{
414 DECODE_HEAD;
415
416 READ_BUF(4);
417 READ32(access->ac_req_access);
418
419 DECODE_TAIL;
420}
421
Al Virob37ad282006-10-19 23:28:59 -0700422static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
424{
425 DECODE_HEAD;
426
427 close->cl_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300428 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300430 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 DECODE_TAIL;
433}
434
435
Al Virob37ad282006-10-19 23:28:59 -0700436static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
438{
439 DECODE_HEAD;
440
441 READ_BUF(12);
442 READ64(commit->co_offset);
443 READ32(commit->co_count);
444
445 DECODE_TAIL;
446}
447
Al Virob37ad282006-10-19 23:28:59 -0700448static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
450{
451 DECODE_HEAD;
452
453 READ_BUF(4);
454 READ32(create->cr_type);
455 switch (create->cr_type) {
456 case NF4LNK:
457 READ_BUF(4);
458 READ32(create->cr_linklen);
459 READ_BUF(create->cr_linklen);
460 SAVEMEM(create->cr_linkname, create->cr_linklen);
461 break;
462 case NF4BLK:
463 case NF4CHR:
464 READ_BUF(8);
465 READ32(create->cr_specdata1);
466 READ32(create->cr_specdata2);
467 break;
468 case NF4SOCK:
469 case NF4FIFO:
470 case NF4DIR:
471 default:
472 break;
473 }
474
475 READ_BUF(4);
476 READ32(create->cr_namelen);
477 READ_BUF(create->cr_namelen);
478 SAVEMEM(create->cr_name, create->cr_namelen);
479 if ((status = check_filename(create->cr_name, create->cr_namelen, nfserr_inval)))
480 return status;
481
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800482 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
483 &create->cr_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300484 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 goto out;
486
487 DECODE_TAIL;
488}
489
Al Virob37ad282006-10-19 23:28:59 -0700490static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
492{
Benny Halevye31a1b62008-08-12 20:46:18 +0300493 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Al Virob37ad282006-10-19 23:28:59 -0700496static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
498{
499 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
500}
501
Al Virob37ad282006-10-19 23:28:59 -0700502static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
504{
505 DECODE_HEAD;
506
507 READ_BUF(4);
508 READ32(link->li_namelen);
509 READ_BUF(link->li_namelen);
510 SAVEMEM(link->li_name, link->li_namelen);
511 if ((status = check_filename(link->li_name, link->li_namelen, nfserr_inval)))
512 return status;
513
514 DECODE_TAIL;
515}
516
Al Virob37ad282006-10-19 23:28:59 -0700517static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
519{
520 DECODE_HEAD;
521
J. Bruce Fields3a655882006-01-18 17:43:19 -0800522 lock->lk_replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /*
524 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
525 */
526 READ_BUF(28);
527 READ32(lock->lk_type);
528 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
529 goto xdr_error;
530 READ32(lock->lk_reclaim);
531 READ64(lock->lk_offset);
532 READ64(lock->lk_length);
533 READ32(lock->lk_is_new);
534
535 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300536 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300538 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
539 if (status)
540 return status;
541 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 READ32(lock->lk_new_lock_seqid);
543 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
544 READ32(lock->lk_new_owner.len);
545 READ_BUF(lock->lk_new_owner.len);
546 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
547 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300548 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
549 if (status)
550 return status;
551 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 READ32(lock->lk_old_lock_seqid);
553 }
554
555 DECODE_TAIL;
556}
557
Al Virob37ad282006-10-19 23:28:59 -0700558static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
560{
561 DECODE_HEAD;
562
563 READ_BUF(32);
564 READ32(lockt->lt_type);
565 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
566 goto xdr_error;
567 READ64(lockt->lt_offset);
568 READ64(lockt->lt_length);
569 COPYMEM(&lockt->lt_clientid, 8);
570 READ32(lockt->lt_owner.len);
571 READ_BUF(lockt->lt_owner.len);
572 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
573
Andy Adamson60adfc52009-04-03 08:28:50 +0300574 if (argp->minorversion && !zero_clientid(&lockt->lt_clientid))
575 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 DECODE_TAIL;
577}
578
Al Virob37ad282006-10-19 23:28:59 -0700579static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
581{
582 DECODE_HEAD;
583
584 locku->lu_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300585 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 READ32(locku->lu_type);
587 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
588 goto xdr_error;
589 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300590 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
591 if (status)
592 return status;
593 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 READ64(locku->lu_offset);
595 READ64(locku->lu_length);
596
597 DECODE_TAIL;
598}
599
Al Virob37ad282006-10-19 23:28:59 -0700600static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
602{
603 DECODE_HEAD;
604
605 READ_BUF(4);
606 READ32(lookup->lo_len);
607 READ_BUF(lookup->lo_len);
608 SAVEMEM(lookup->lo_name, lookup->lo_len);
609 if ((status = check_filename(lookup->lo_name, lookup->lo_len, nfserr_noent)))
610 return status;
611
612 DECODE_TAIL;
613}
614
Al Virob37ad282006-10-19 23:28:59 -0700615static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
617{
618 DECODE_HEAD;
619
620 memset(open->op_bmval, 0, sizeof(open->op_bmval));
621 open->op_iattr.ia_valid = 0;
622 open->op_stateowner = NULL;
623
624 /* seqid, share_access, share_deny, clientid, ownerlen */
625 READ_BUF(16 + sizeof(clientid_t));
626 READ32(open->op_seqid);
627 READ32(open->op_share_access);
628 READ32(open->op_share_deny);
629 COPYMEM(&open->op_clientid, sizeof(clientid_t));
630 READ32(open->op_owner.len);
631
632 /* owner, open_flag */
633 READ_BUF(open->op_owner.len + 4);
634 SAVEMEM(open->op_owner.data, open->op_owner.len);
635 READ32(open->op_create);
636 switch (open->op_create) {
637 case NFS4_OPEN_NOCREATE:
638 break;
639 case NFS4_OPEN_CREATE:
640 READ_BUF(4);
641 READ32(open->op_createmode);
642 switch (open->op_createmode) {
643 case NFS4_CREATE_UNCHECKED:
644 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300645 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800646 &open->op_iattr, &open->op_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300647 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 goto out;
649 break;
650 case NFS4_CREATE_EXCLUSIVE:
651 READ_BUF(8);
652 COPYMEM(open->op_verf.data, 8);
653 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300654 case NFS4_CREATE_EXCLUSIVE4_1:
655 if (argp->minorversion < 1)
656 goto xdr_error;
657 READ_BUF(8);
658 COPYMEM(open->op_verf.data, 8);
659 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800660 &open->op_iattr, &open->op_acl);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300661 if (status)
662 goto out;
663 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 default:
665 goto xdr_error;
666 }
667 break;
668 default:
669 goto xdr_error;
670 }
671
672 /* open_claim */
673 READ_BUF(4);
674 READ32(open->op_claim_type);
675 switch (open->op_claim_type) {
676 case NFS4_OPEN_CLAIM_NULL:
677 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
678 READ_BUF(4);
679 READ32(open->op_fname.len);
680 READ_BUF(open->op_fname.len);
681 SAVEMEM(open->op_fname.data, open->op_fname.len);
682 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
683 return status;
684 break;
685 case NFS4_OPEN_CLAIM_PREVIOUS:
686 READ_BUF(4);
687 READ32(open->op_delegate_type);
688 break;
689 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300690 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
691 if (status)
692 return status;
693 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 READ32(open->op_fname.len);
695 READ_BUF(open->op_fname.len);
696 SAVEMEM(open->op_fname.data, open->op_fname.len);
697 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
698 return status;
699 break;
700 default:
701 goto xdr_error;
702 }
703
704 DECODE_TAIL;
705}
706
Al Virob37ad282006-10-19 23:28:59 -0700707static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
709{
710 DECODE_HEAD;
711
712 open_conf->oc_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300713 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
714 if (status)
715 return status;
716 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 READ32(open_conf->oc_seqid);
718
719 DECODE_TAIL;
720}
721
Al Virob37ad282006-10-19 23:28:59 -0700722static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
724{
725 DECODE_HEAD;
726
727 open_down->od_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300728 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
729 if (status)
730 return status;
731 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 READ32(open_down->od_seqid);
733 READ32(open_down->od_share_access);
734 READ32(open_down->od_share_deny);
735
736 DECODE_TAIL;
737}
738
Al Virob37ad282006-10-19 23:28:59 -0700739static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
741{
742 DECODE_HEAD;
743
744 READ_BUF(4);
745 READ32(putfh->pf_fhlen);
746 if (putfh->pf_fhlen > NFS4_FHSIZE)
747 goto xdr_error;
748 READ_BUF(putfh->pf_fhlen);
749 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
750
751 DECODE_TAIL;
752}
753
Al Virob37ad282006-10-19 23:28:59 -0700754static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
756{
757 DECODE_HEAD;
758
Benny Halevye31a1b62008-08-12 20:46:18 +0300759 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
760 if (status)
761 return status;
762 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 READ64(read->rd_offset);
764 READ32(read->rd_length);
765
766 DECODE_TAIL;
767}
768
Al Virob37ad282006-10-19 23:28:59 -0700769static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
771{
772 DECODE_HEAD;
773
774 READ_BUF(24);
775 READ64(readdir->rd_cookie);
776 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
777 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
778 READ32(readdir->rd_maxcount);
779 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
780 goto out;
781
782 DECODE_TAIL;
783}
784
Al Virob37ad282006-10-19 23:28:59 -0700785static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
787{
788 DECODE_HEAD;
789
790 READ_BUF(4);
791 READ32(remove->rm_namelen);
792 READ_BUF(remove->rm_namelen);
793 SAVEMEM(remove->rm_name, remove->rm_namelen);
794 if ((status = check_filename(remove->rm_name, remove->rm_namelen, nfserr_noent)))
795 return status;
796
797 DECODE_TAIL;
798}
799
Al Virob37ad282006-10-19 23:28:59 -0700800static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
802{
803 DECODE_HEAD;
804
805 READ_BUF(4);
806 READ32(rename->rn_snamelen);
807 READ_BUF(rename->rn_snamelen + 4);
808 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
809 READ32(rename->rn_tnamelen);
810 READ_BUF(rename->rn_tnamelen);
811 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
812 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen, nfserr_noent)))
813 return status;
814 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen, nfserr_inval)))
815 return status;
816
817 DECODE_TAIL;
818}
819
Al Virob37ad282006-10-19 23:28:59 -0700820static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
822{
823 DECODE_HEAD;
824
825 READ_BUF(sizeof(clientid_t));
826 COPYMEM(clientid, sizeof(clientid_t));
827
828 DECODE_TAIL;
829}
830
Al Virob37ad282006-10-19 23:28:59 -0700831static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700832nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
833 struct nfsd4_secinfo *secinfo)
834{
835 DECODE_HEAD;
836
837 READ_BUF(4);
838 READ32(secinfo->si_namelen);
839 READ_BUF(secinfo->si_namelen);
840 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
841 status = check_filename(secinfo->si_name, secinfo->si_namelen,
842 nfserr_noent);
843 if (status)
844 return status;
845 DECODE_TAIL;
846}
847
848static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
850{
Benny Halevye31a1b62008-08-12 20:46:18 +0300851 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Benny Halevye31a1b62008-08-12 20:46:18 +0300853 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
854 if (status)
855 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800856 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
857 &setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
859
Al Virob37ad282006-10-19 23:28:59 -0700860static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
862{
863 DECODE_HEAD;
864
865 READ_BUF(12);
866 COPYMEM(setclientid->se_verf.data, 8);
867 READ32(setclientid->se_namelen);
868
869 READ_BUF(setclientid->se_namelen + 8);
870 SAVEMEM(setclientid->se_name, setclientid->se_namelen);
871 READ32(setclientid->se_callback_prog);
872 READ32(setclientid->se_callback_netid_len);
873
874 READ_BUF(setclientid->se_callback_netid_len + 4);
875 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
876 READ32(setclientid->se_callback_addr_len);
877
878 READ_BUF(setclientid->se_callback_addr_len + 4);
879 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
880 READ32(setclientid->se_callback_ident);
881
882 DECODE_TAIL;
883}
884
Al Virob37ad282006-10-19 23:28:59 -0700885static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
887{
888 DECODE_HEAD;
889
890 READ_BUF(8 + sizeof(nfs4_verifier));
891 COPYMEM(&scd_c->sc_clientid, 8);
892 COPYMEM(&scd_c->sc_confirm, sizeof(nfs4_verifier));
893
894 DECODE_TAIL;
895}
896
897/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -0700898static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
900{
901#if 0
902 struct nfsd4_compoundargs save = {
903 .p = argp->p,
904 .end = argp->end,
905 .rqstp = argp->rqstp,
906 };
907 u32 ve_bmval[2];
908 struct iattr ve_iattr; /* request */
909 struct nfs4_acl *ve_acl; /* request */
910#endif
911 DECODE_HEAD;
912
913 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
914 goto out;
915
916 /* For convenience's sake, we compare raw xdr'd attributes in
917 * nfsd4_proc_verify; however we still decode here just to return
918 * correct error in case of bad xdr. */
919#if 0
920 status = nfsd4_decode_fattr(ve_bmval, &ve_iattr, &ve_acl);
921 if (status == nfserr_inval) {
922 status = nfserrno(status);
923 goto out;
924 }
925#endif
926 READ_BUF(4);
927 READ32(verify->ve_attrlen);
928 READ_BUF(verify->ve_attrlen);
929 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
930
931 DECODE_TAIL;
932}
933
Al Virob37ad282006-10-19 23:28:59 -0700934static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
936{
937 int avail;
938 int v;
939 int len;
940 DECODE_HEAD;
941
Benny Halevye31a1b62008-08-12 20:46:18 +0300942 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
943 if (status)
944 return status;
945 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 READ64(write->wr_offset);
947 READ32(write->wr_stable_how);
948 if (write->wr_stable_how > 2)
949 goto xdr_error;
950 READ32(write->wr_buflen);
951
952 /* Sorry .. no magic macros for this.. *
953 * READ_BUF(write->wr_buflen);
954 * SAVEMEM(write->wr_buf, write->wr_buflen);
955 */
956 avail = (char*)argp->end - (char*)argp->p;
957 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -0400958 dprintk("NFSD: xdr error (%s:%d)\n",
959 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 goto xdr_error;
961 }
NeilBrown3cc03b12006-10-04 02:15:47 -0700962 argp->rqstp->rq_vec[0].iov_base = p;
963 argp->rqstp->rq_vec[0].iov_len = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 v = 0;
965 len = write->wr_buflen;
NeilBrown3cc03b12006-10-04 02:15:47 -0700966 while (len > argp->rqstp->rq_vec[v].iov_len) {
967 len -= argp->rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700969 argp->rqstp->rq_vec[v].iov_base = page_address(argp->pagelist[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 argp->pagelist++;
971 if (argp->pagelen >= PAGE_SIZE) {
NeilBrown3cc03b12006-10-04 02:15:47 -0700972 argp->rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 argp->pagelen -= PAGE_SIZE;
974 } else {
NeilBrown3cc03b12006-10-04 02:15:47 -0700975 argp->rqstp->rq_vec[v].iov_len = argp->pagelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 argp->pagelen -= len;
977 }
978 }
Al Viro2ebbc012006-10-19 23:28:58 -0700979 argp->end = (__be32*) (argp->rqstp->rq_vec[v].iov_base + argp->rqstp->rq_vec[v].iov_len);
980 argp->p = (__be32*) (argp->rqstp->rq_vec[v].iov_base + (XDR_QUADLEN(len) << 2));
NeilBrown3cc03b12006-10-04 02:15:47 -0700981 argp->rqstp->rq_vec[v].iov_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 write->wr_vlen = v+1;
983
984 DECODE_TAIL;
985}
986
Al Virob37ad282006-10-19 23:28:59 -0700987static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
989{
990 DECODE_HEAD;
991
992 READ_BUF(12);
993 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
994 READ32(rlockowner->rl_owner.len);
995 READ_BUF(rlockowner->rl_owner.len);
996 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
997
Andy Adamson60adfc52009-04-03 08:28:50 +0300998 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
999 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 DECODE_TAIL;
1001}
1002
Al Virob37ad282006-10-19 23:28:59 -07001003static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001004nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001005 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001006{
Andy Adamson0733d212009-04-03 08:28:01 +03001007 int dummy;
1008 DECODE_HEAD;
1009
1010 READ_BUF(NFS4_VERIFIER_SIZE);
1011 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1012
1013 READ_BUF(4);
1014 READ32(exid->clname.len);
1015
1016 READ_BUF(exid->clname.len);
1017 SAVEMEM(exid->clname.data, exid->clname.len);
1018
1019 READ_BUF(4);
1020 READ32(exid->flags);
1021
1022 /* Ignore state_protect4_a */
1023 READ_BUF(4);
1024 READ32(exid->spa_how);
1025 switch (exid->spa_how) {
1026 case SP4_NONE:
1027 break;
1028 case SP4_MACH_CRED:
1029 /* spo_must_enforce */
1030 READ_BUF(4);
1031 READ32(dummy);
1032 READ_BUF(dummy * 4);
1033 p += dummy;
1034
1035 /* spo_must_allow */
1036 READ_BUF(4);
1037 READ32(dummy);
1038 READ_BUF(dummy * 4);
1039 p += dummy;
1040 break;
1041 case SP4_SSV:
1042 /* ssp_ops */
1043 READ_BUF(4);
1044 READ32(dummy);
1045 READ_BUF(dummy * 4);
1046 p += dummy;
1047
1048 READ_BUF(4);
1049 READ32(dummy);
1050 READ_BUF(dummy * 4);
1051 p += dummy;
1052
1053 /* ssp_hash_algs<> */
1054 READ_BUF(4);
1055 READ32(dummy);
1056 READ_BUF(dummy);
1057 p += XDR_QUADLEN(dummy);
1058
1059 /* ssp_encr_algs<> */
1060 READ_BUF(4);
1061 READ32(dummy);
1062 READ_BUF(dummy);
1063 p += XDR_QUADLEN(dummy);
1064
1065 /* ssp_window and ssp_num_gss_handles */
1066 READ_BUF(8);
1067 READ32(dummy);
1068 READ32(dummy);
1069 break;
1070 default:
1071 goto xdr_error;
1072 }
1073
1074 /* Ignore Implementation ID */
1075 READ_BUF(4); /* nfs_impl_id4 array length */
1076 READ32(dummy);
1077
1078 if (dummy > 1)
1079 goto xdr_error;
1080
1081 if (dummy == 1) {
1082 /* nii_domain */
1083 READ_BUF(4);
1084 READ32(dummy);
1085 READ_BUF(dummy);
1086 p += XDR_QUADLEN(dummy);
1087
1088 /* nii_name */
1089 READ_BUF(4);
1090 READ32(dummy);
1091 READ_BUF(dummy);
1092 p += XDR_QUADLEN(dummy);
1093
1094 /* nii_date */
1095 READ_BUF(12);
1096 p += 3;
1097 }
1098 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001099}
1100
1101static __be32
1102nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1103 struct nfsd4_create_session *sess)
1104{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001105 DECODE_HEAD;
1106
1107 u32 dummy;
1108 char *machine_name;
1109 int i;
1110 int nr_secflavs;
1111
1112 READ_BUF(16);
1113 COPYMEM(&sess->clientid, 8);
1114 READ32(sess->seqid);
1115 READ32(sess->flags);
1116
1117 /* Fore channel attrs */
1118 READ_BUF(28);
1119 READ32(dummy); /* headerpadsz is always 0 */
1120 READ32(sess->fore_channel.maxreq_sz);
1121 READ32(sess->fore_channel.maxresp_sz);
1122 READ32(sess->fore_channel.maxresp_cached);
1123 READ32(sess->fore_channel.maxops);
1124 READ32(sess->fore_channel.maxreqs);
1125 READ32(sess->fore_channel.nr_rdma_attrs);
1126 if (sess->fore_channel.nr_rdma_attrs == 1) {
1127 READ_BUF(4);
1128 READ32(sess->fore_channel.rdma_attrs);
1129 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1130 dprintk("Too many fore channel attr bitmaps!\n");
1131 goto xdr_error;
1132 }
1133
1134 /* Back channel attrs */
1135 READ_BUF(28);
1136 READ32(dummy); /* headerpadsz is always 0 */
1137 READ32(sess->back_channel.maxreq_sz);
1138 READ32(sess->back_channel.maxresp_sz);
1139 READ32(sess->back_channel.maxresp_cached);
1140 READ32(sess->back_channel.maxops);
1141 READ32(sess->back_channel.maxreqs);
1142 READ32(sess->back_channel.nr_rdma_attrs);
1143 if (sess->back_channel.nr_rdma_attrs == 1) {
1144 READ_BUF(4);
1145 READ32(sess->back_channel.rdma_attrs);
1146 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1147 dprintk("Too many back channel attr bitmaps!\n");
1148 goto xdr_error;
1149 }
1150
1151 READ_BUF(8);
1152 READ32(sess->callback_prog);
1153
1154 /* callback_sec_params4 */
1155 READ32(nr_secflavs);
1156 for (i = 0; i < nr_secflavs; ++i) {
1157 READ_BUF(4);
1158 READ32(dummy);
1159 switch (dummy) {
1160 case RPC_AUTH_NULL:
1161 /* Nothing to read */
1162 break;
1163 case RPC_AUTH_UNIX:
1164 READ_BUF(8);
1165 /* stamp */
1166 READ32(dummy);
1167
1168 /* machine name */
1169 READ32(dummy);
1170 READ_BUF(dummy);
1171 SAVEMEM(machine_name, dummy);
1172
1173 /* uid, gid */
1174 READ_BUF(8);
1175 READ32(sess->uid);
1176 READ32(sess->gid);
1177
1178 /* more gids */
1179 READ_BUF(4);
1180 READ32(dummy);
1181 READ_BUF(dummy * 4);
1182 for (i = 0; i < dummy; ++i)
1183 READ32(dummy);
1184 break;
1185 case RPC_AUTH_GSS:
1186 dprintk("RPC_AUTH_GSS callback secflavor "
1187 "not supported!\n");
1188 READ_BUF(8);
1189 /* gcbp_service */
1190 READ32(dummy);
1191 /* gcbp_handle_from_server */
1192 READ32(dummy);
1193 READ_BUF(dummy);
1194 p += XDR_QUADLEN(dummy);
1195 /* gcbp_handle_from_client */
1196 READ_BUF(4);
1197 READ32(dummy);
1198 READ_BUF(dummy);
1199 p += XDR_QUADLEN(dummy);
1200 break;
1201 default:
1202 dprintk("Illegal callback secflavor\n");
1203 return nfserr_inval;
1204 }
1205 }
1206 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001207}
1208
1209static __be32
1210nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1211 struct nfsd4_destroy_session *destroy_session)
1212{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001213 DECODE_HEAD;
1214 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1215 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1216
1217 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001218}
1219
1220static __be32
1221nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1222 struct nfsd4_sequence *seq)
1223{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001224 DECODE_HEAD;
1225
1226 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1227 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1228 READ32(seq->seqid);
1229 READ32(seq->slotid);
1230 READ32(seq->maxslots);
1231 READ32(seq->cachethis);
1232
1233 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001234}
1235
1236static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001237nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1238{
1239 return nfs_ok;
1240}
1241
Benny Halevy3c375c62008-07-02 11:14:01 +03001242static __be32
1243nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1244{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001245 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001246}
1247
Benny Halevy347e0ad2008-07-02 11:13:41 +03001248typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1249
1250static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001251 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1252 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1253 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1254 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1255 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1256 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1257 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1258 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1259 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1260 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1261 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1262 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1263 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1264 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1265 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1266 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1267 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1268 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1269 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1270 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001271 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001272 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1273 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1274 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1275 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1276 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1277 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1278 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1279 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1280 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1281 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1282 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1283 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1284 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1285 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1286 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1287 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Benny Halevy347e0ad2008-07-02 11:13:41 +03001288};
1289
Andy Adamson2db134e2009-04-03 08:27:55 +03001290static nfsd4_dec nfsd41_dec_ops[] = {
Randy Dunlap9064caa2009-04-28 16:48:25 -07001291 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1292 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1293 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1294 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1295 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1296 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1297 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1298 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1299 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1300 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1301 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1302 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1303 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1304 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1305 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1306 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1307 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1308 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp,
1309 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1310 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
1311 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp,
1312 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1313 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1314 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1315 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1316 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1317 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1318 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp,
1319 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1320 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1321 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1322 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1323 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1324 [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp,
1325 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1326 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1327 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001328
1329 /* new operations for NFSv4.1 */
Randy Dunlap9064caa2009-04-28 16:48:25 -07001330 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_notsupp,
1331 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_notsupp,
1332 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1333 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1334 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
1335 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_notsupp,
1336 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1337 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1338 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1339 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1340 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1341 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
1342 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_notsupp,
1343 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1344 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
1345 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_notsupp,
1346 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1347 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1348 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001349};
1350
Benny Halevyf2feb962008-07-02 11:14:22 +03001351struct nfsd4_minorversion_ops {
1352 nfsd4_dec *decoders;
1353 int nops;
1354};
1355
1356static struct nfsd4_minorversion_ops nfsd4_minorversion[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001357 [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) },
Andy Adamson2db134e2009-04-03 08:27:55 +03001358 [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Benny Halevyf2feb962008-07-02 11:14:22 +03001359};
1360
Benny Halevy347e0ad2008-07-02 11:13:41 +03001361static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1363{
1364 DECODE_HEAD;
1365 struct nfsd4_op *op;
Benny Halevyf2feb962008-07-02 11:14:22 +03001366 struct nfsd4_minorversion_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 int i;
1368
1369 /*
1370 * XXX: According to spec, we should check the tag
1371 * for UTF-8 compliance. I'm postponing this for
1372 * now because it seems that some clients do use
1373 * binary tags.
1374 */
1375 READ_BUF(4);
1376 READ32(argp->taglen);
1377 READ_BUF(argp->taglen + 8);
1378 SAVEMEM(argp->tag, argp->taglen);
1379 READ32(argp->minorversion);
1380 READ32(argp->opcnt);
1381
1382 if (argp->taglen > NFSD4_MAX_TAGLEN)
1383 goto xdr_error;
1384 if (argp->opcnt > 100)
1385 goto xdr_error;
1386
Tobias Klausere8c96f82006-03-24 03:15:34 -08001387 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1389 if (!argp->ops) {
1390 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001391 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 goto xdr_error;
1393 }
1394 }
1395
Benny Halevyf2feb962008-07-02 11:14:22 +03001396 if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion))
Benny Halevy30cff1f2008-07-02 11:13:18 +03001397 argp->opcnt = 0;
1398
Benny Halevyf2feb962008-07-02 11:14:22 +03001399 ops = &nfsd4_minorversion[argp->minorversion];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 for (i = 0; i < argp->opcnt; i++) {
1401 op = &argp->ops[i];
1402 op->replay = NULL;
1403
1404 /*
1405 * We can't use READ_BUF() here because we need to handle
1406 * a missing opcode as an OP_WRITE + 1. So we need to check
1407 * to see if we're truly at the end of our buffer or if there
1408 * is another page we need to flip to.
1409 */
1410
1411 if (argp->p == argp->end) {
1412 if (argp->pagelen < 4) {
1413 /* There isn't an opcode still on the wire */
1414 op->opnum = OP_WRITE + 1;
1415 op->status = nfserr_bad_xdr;
1416 argp->opcnt = i+1;
1417 break;
1418 }
1419
1420 /*
1421 * False alarm. We just hit a page boundary, but there
1422 * is still data available. Move pointer across page
1423 * boundary. *snip from READ_BUF*
1424 */
1425 argp->p = page_address(argp->pagelist[0]);
1426 argp->pagelist++;
1427 if (argp->pagelen < PAGE_SIZE) {
1428 argp->end = p + (argp->pagelen>>2);
1429 argp->pagelen = 0;
1430 } else {
1431 argp->end = p + (PAGE_SIZE>>2);
1432 argp->pagelen -= PAGE_SIZE;
1433 }
1434 }
1435 op->opnum = ntohl(*argp->p++);
1436
Ricardo Labiagade3cab72009-12-11 20:03:27 -08001437 if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP)
Benny Halevyf2feb962008-07-02 11:14:22 +03001438 op->status = ops->decoders[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001439 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 op->opnum = OP_ILLEGAL;
1441 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443
1444 if (op->status) {
1445 argp->opcnt = i+1;
1446 break;
1447 }
1448 }
1449
1450 DECODE_TAIL;
1451}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453#define WRITE32(n) *p++ = htonl(n)
1454#define WRITE64(n) do { \
1455 *p++ = htonl((u32)((n) >> 32)); \
1456 *p++ = htonl((u32)(n)); \
1457} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001458#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1460 memcpy(p, ptr, nbytes); \
1461 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001462}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001463
1464static void write32(__be32 **p, u32 n)
1465{
1466 *(*p)++ = n;
1467}
1468
1469static void write64(__be32 **p, u64 n)
1470{
1471 write32(p, (u32)(n >> 32));
1472 write32(p, (u32)n);
1473}
1474
1475static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1476{
1477 if (IS_I_VERSION(inode)) {
1478 write64(p, inode->i_version);
1479 } else {
1480 write32(p, stat->ctime.tv_sec);
1481 write32(p, stat->ctime.tv_nsec);
1482 }
1483}
1484
1485static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1486{
1487 write32(p, c->atomic);
1488 if (c->change_supported) {
1489 write64(p, c->before_change);
1490 write64(p, c->after_change);
1491 } else {
1492 write32(p, c->before_ctime_sec);
1493 write32(p, c->before_ctime_nsec);
1494 write32(p, c->after_ctime_sec);
1495 write32(p, c->after_ctime_nsec);
1496 }
1497}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499#define RESERVE_SPACE(nbytes) do { \
1500 p = resp->p; \
1501 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1502} while (0)
1503#define ADJUST_ARGS() resp->p = p
1504
1505/*
1506 * Header routine to setup seqid operation replay cache
1507 */
1508#define ENCODE_SEQID_OP_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -07001509 __be32 *save; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 \
1511 save = resp->p;
1512
1513/*
NeilBrown7fb64ce2005-07-07 17:59:20 -07001514 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1515 * is where sequence id's are incremented, and the replay cache is filled.
1516 * Note that we increment sequence id's here, at the last moment, so we're sure
1517 * we know whether the error to be returned is a sequence id mutating error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 */
1519
1520#define ENCODE_SEQID_OP_TAIL(stateowner) do { \
1521 if (seqid_mutating_err(nfserr) && stateowner) { \
NeilBrownbd9aac52005-07-07 17:59:19 -07001522 stateowner->so_seqid++; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 stateowner->so_replay.rp_status = nfserr; \
1524 stateowner->so_replay.rp_buflen = \
1525 (((char *)(resp)->p - (char *)save)); \
1526 memcpy(stateowner->so_replay.rp_buf, save, \
1527 stateowner->so_replay.rp_buflen); \
1528 } } while (0);
1529
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001530/* Encode as an array of strings the string given with components
1531 * seperated @sep.
1532 */
Al Virob37ad282006-10-19 23:28:59 -07001533static __be32 nfsd4_encode_components(char sep, char *components,
Al Viro2ebbc012006-10-19 23:28:58 -07001534 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001535{
Al Viro2ebbc012006-10-19 23:28:58 -07001536 __be32 *p = *pp;
1537 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001538 int strlen, count=0;
1539 char *str, *end;
1540
1541 dprintk("nfsd4_encode_components(%s)\n", components);
1542 if ((*buflen -= 4) < 0)
1543 return nfserr_resource;
1544 WRITE32(0); /* We will fill this in with @count later */
1545 end = str = components;
1546 while (*end) {
1547 for (; *end && (*end != sep); end++)
1548 ; /* Point to end of component */
1549 strlen = end - str;
1550 if (strlen) {
1551 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1552 return nfserr_resource;
1553 WRITE32(strlen);
1554 WRITEMEM(str, strlen);
1555 count++;
1556 }
1557 else
1558 end++;
1559 str = end;
1560 }
1561 *pp = p;
1562 p = countp;
1563 WRITE32(count);
1564 return 0;
1565}
1566
1567/*
1568 * encode a location element of a fs_locations structure
1569 */
Al Virob37ad282006-10-19 23:28:59 -07001570static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001571 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001572{
Al Virob37ad282006-10-19 23:28:59 -07001573 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001574 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001575
1576 status = nfsd4_encode_components(':', location->hosts, &p, buflen);
1577 if (status)
1578 return status;
1579 status = nfsd4_encode_components('/', location->path, &p, buflen);
1580 if (status)
1581 return status;
1582 *pp = p;
1583 return 0;
1584}
1585
1586/*
1587 * Return the path to an export point in the pseudo filesystem namespace
1588 * Returned string is safe to use as long as the caller holds a reference
1589 * to @exp.
1590 */
Al Virob37ad282006-10-19 23:28:59 -07001591static char *nfsd4_path(struct svc_rqst *rqstp, struct svc_export *exp, __be32 *stat)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001592{
1593 struct svc_fh tmp_fh;
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001594 char *path = NULL, *rootpath;
1595 size_t rootlen;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001596
1597 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -07001598 *stat = exp_pseudoroot(rqstp, &tmp_fh);
Al Virocc45f012006-10-19 23:28:44 -07001599 if (*stat)
1600 return NULL;
Jan Blunck54775492008-02-14 19:38:39 -08001601 rootpath = tmp_fh.fh_export->ex_pathname;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001602
Jan Blunck54775492008-02-14 19:38:39 -08001603 path = exp->ex_pathname;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001604
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001605 rootlen = strlen(rootpath);
1606 if (strncmp(path, rootpath, rootlen)) {
Chuck Lever817cb9d2007-09-11 18:01:20 -04001607 dprintk("nfsd: fs_locations failed;"
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001608 "%s is not contained in %s\n", path, rootpath);
Al Virocc45f012006-10-19 23:28:44 -07001609 *stat = nfserr_notsupp;
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001610 path = NULL;
1611 goto out;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001612 }
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001613 path += rootlen;
1614out:
1615 fh_put(&tmp_fh);
1616 return path;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001617}
1618
1619/*
1620 * encode a fs_locations structure
1621 */
Al Virob37ad282006-10-19 23:28:59 -07001622static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001623 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001624 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001625{
Al Virob37ad282006-10-19 23:28:59 -07001626 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001627 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001628 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001629 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
Al Virocc45f012006-10-19 23:28:44 -07001630 char *root = nfsd4_path(rqstp, exp, &status);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001631
Al Virocc45f012006-10-19 23:28:44 -07001632 if (status)
1633 return status;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001634 status = nfsd4_encode_components('/', root, &p, buflen);
1635 if (status)
1636 return status;
1637 if ((*buflen -= 4) < 0)
1638 return nfserr_resource;
1639 WRITE32(fslocs->locations_count);
1640 for (i=0; i<fslocs->locations_count; i++) {
1641 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1642 &p, buflen);
1643 if (status)
1644 return status;
1645 }
1646 *pp = p;
1647 return 0;
1648}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650static u32 nfs4_ftypes[16] = {
1651 NF4BAD, NF4FIFO, NF4CHR, NF4BAD,
1652 NF4DIR, NF4BAD, NF4BLK, NF4BAD,
1653 NF4REG, NF4BAD, NF4LNK, NF4BAD,
1654 NF4SOCK, NF4BAD, NF4LNK, NF4BAD,
1655};
1656
Al Virob37ad282006-10-19 23:28:59 -07001657static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001659 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 int status;
1662
1663 if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1664 return nfserr_resource;
1665 if (whotype != NFS4_ACL_WHO_NAMED)
1666 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
1667 else if (group)
1668 status = nfsd_map_gid_to_name(rqstp, id, (u8 *)(*p + 1));
1669 else
1670 status = nfsd_map_uid_to_name(rqstp, id, (u8 *)(*p + 1));
1671 if (status < 0)
1672 return nfserrno(status);
1673 *p = xdr_encode_opaque(*p, NULL, status);
1674 *buflen -= (XDR_QUADLEN(status) << 2) + 4;
1675 BUG_ON(*buflen < 0);
1676 return 0;
1677}
1678
Al Virob37ad282006-10-19 23:28:59 -07001679static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001680nfsd4_encode_user(struct svc_rqst *rqstp, uid_t uid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, uid, 0, p, buflen);
1683}
1684
Al Virob37ad282006-10-19 23:28:59 -07001685static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001686nfsd4_encode_group(struct svc_rqst *rqstp, uid_t gid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687{
1688 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, gid, 1, p, buflen);
1689}
1690
Al Virob37ad282006-10-19 23:28:59 -07001691static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692nfsd4_encode_aclname(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001693 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
1695 return nfsd4_encode_name(rqstp, whotype, id, group, p, buflen);
1696}
1697
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001698#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1699 FATTR4_WORD0_RDATTR_ERROR)
1700#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1701
Al Virob37ad282006-10-19 23:28:59 -07001702static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001703{
1704 /* As per referral draft: */
1705 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
1706 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
1707 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
1708 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
1709 *rdattr_err = NFSERR_MOVED;
1710 else
1711 return nfserr_moved;
1712 }
1713 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
1714 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
1715 return 0;
1716}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718/*
1719 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1720 * ourselves.
1721 *
1722 * @countp is the buffer size in _words_; upon successful return this becomes
1723 * replaced with the number of words written.
1724 */
Al Virob37ad282006-10-19 23:28:59 -07001725__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001727 struct dentry *dentry, __be32 *buffer, int *countp, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001728 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
1730 u32 bmval0 = bmval[0];
1731 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03001732 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 struct kstat stat;
1734 struct svc_fh tempfh;
1735 struct kstatfs statfs;
1736 int buflen = *countp << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07001737 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 u32 dummy;
1739 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001740 u32 rdattr_err = 0;
Al Viro2ebbc012006-10-19 23:28:58 -07001741 __be32 *p = buffer;
Al Virob37ad282006-10-19 23:28:59 -07001742 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07001743 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 int aclsupport = 0;
1745 struct nfs4_acl *acl = NULL;
Andy Adamson7e705702009-04-03 08:29:11 +03001746 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1747 u32 minorversion = resp->cstate.minorversion;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03001750 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
1751 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
1752 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001754 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03001755 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001756 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
1757 if (status)
1758 goto out;
1759 }
1760
Jan Blunck54775492008-02-14 19:38:39 -08001761 err = vfs_getattr(exp->ex_path.mnt, dentry, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07001762 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04001764 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
1765 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
1767 FATTR4_WORD1_SPACE_TOTAL))) {
Al Virob8dd7b92006-10-19 23:29:01 -07001768 err = vfs_statfs(dentry, &statfs);
1769 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 goto out_nfserr;
1771 }
1772 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
1773 fh_init(&tempfh, NFS4_FHSIZE);
1774 status = fh_compose(&tempfh, exp, dentry, NULL);
1775 if (status)
1776 goto out;
1777 fhp = &tempfh;
1778 }
1779 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
1780 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07001781 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
1782 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07001784 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07001786 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 status = nfserr_attrnotsupp;
1788 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07001789 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 goto out_nfserr;
1791 }
1792 }
1793 if ((buflen -= 16) < 0)
1794 goto out_resource;
1795
Andy Adamson7e705702009-04-03 08:29:11 +03001796 if (unlikely(bmval2)) {
1797 WRITE32(3);
1798 WRITE32(bmval0);
1799 WRITE32(bmval1);
1800 WRITE32(bmval2);
1801 } else if (likely(bmval1)) {
1802 WRITE32(2);
1803 WRITE32(bmval0);
1804 WRITE32(bmval1);
1805 } else {
1806 WRITE32(1);
1807 WRITE32(bmval0);
1808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 attrlenp = p++; /* to be backfilled later */
1810
1811 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03001812 u32 word0 = nfsd_suppattrs0(minorversion);
1813 u32 word1 = nfsd_suppattrs1(minorversion);
1814 u32 word2 = nfsd_suppattrs2(minorversion);
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 if ((buflen -= 12) < 0)
1817 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001818 if (!aclsupport)
1819 word0 &= ~FATTR4_WORD0_ACL;
Andy Adamson7e705702009-04-03 08:29:11 +03001820 if (!word2) {
1821 WRITE32(2);
1822 WRITE32(word0);
1823 WRITE32(word1);
1824 } else {
1825 WRITE32(3);
1826 WRITE32(word0);
1827 WRITE32(word1);
1828 WRITE32(word2);
1829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
1831 if (bmval0 & FATTR4_WORD0_TYPE) {
1832 if ((buflen -= 4) < 0)
1833 goto out_resource;
1834 dummy = nfs4_ftypes[(stat.mode & S_IFMT) >> 12];
1835 if (dummy == NF4BAD)
1836 goto out_serverfault;
1837 WRITE32(dummy);
1838 }
1839 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
1840 if ((buflen -= 4) < 0)
1841 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07001842 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07001843 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07001844 else
NeilBrowne34ac862005-07-07 17:59:30 -07001845 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
1847 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 if ((buflen -= 8) < 0)
1849 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001850 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852 if (bmval0 & FATTR4_WORD0_SIZE) {
1853 if ((buflen -= 8) < 0)
1854 goto out_resource;
1855 WRITE64(stat.size);
1856 }
1857 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
1858 if ((buflen -= 4) < 0)
1859 goto out_resource;
1860 WRITE32(1);
1861 }
1862 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
1863 if ((buflen -= 4) < 0)
1864 goto out_resource;
1865 WRITE32(1);
1866 }
1867 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
1868 if ((buflen -= 4) < 0)
1869 goto out_resource;
1870 WRITE32(0);
1871 }
1872 if (bmval0 & FATTR4_WORD0_FSID) {
1873 if ((buflen -= 16) < 0)
1874 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001875 if (exp->ex_fslocs.migrated) {
1876 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
1877 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08001878 } else switch(fsid_source(fhp)) {
1879 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 WRITE64((u64)exp->ex_fsid);
1881 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08001882 break;
1883 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 WRITE32(0);
1885 WRITE32(MAJOR(stat.dev));
1886 WRITE32(0);
1887 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08001888 break;
1889 case FSIDSOURCE_UUID:
1890 WRITEMEM(exp->ex_uuid, 16);
1891 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 }
1893 }
1894 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
1895 if ((buflen -= 4) < 0)
1896 goto out_resource;
1897 WRITE32(0);
1898 }
1899 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
1900 if ((buflen -= 4) < 0)
1901 goto out_resource;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05001902 WRITE32(nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
1904 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
1905 if ((buflen -= 4) < 0)
1906 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001907 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
1909 if (bmval0 & FATTR4_WORD0_ACL) {
1910 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 if (acl == NULL) {
1913 if ((buflen -= 4) < 0)
1914 goto out_resource;
1915
1916 WRITE32(0);
1917 goto out_acl;
1918 }
1919 if ((buflen -= 4) < 0)
1920 goto out_resource;
1921 WRITE32(acl->naces);
1922
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08001923 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if ((buflen -= 4*3) < 0)
1925 goto out_resource;
1926 WRITE32(ace->type);
1927 WRITE32(ace->flag);
1928 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
1929 status = nfsd4_encode_aclname(rqstp, ace->whotype,
1930 ace->who, ace->flag & NFS4_ACE_IDENTIFIER_GROUP,
1931 &p, &buflen);
1932 if (status == nfserr_resource)
1933 goto out_resource;
1934 if (status)
1935 goto out;
1936 }
1937 }
1938out_acl:
1939 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
1940 if ((buflen -= 4) < 0)
1941 goto out_resource;
1942 WRITE32(aclsupport ?
1943 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
1944 }
1945 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
1946 if ((buflen -= 4) < 0)
1947 goto out_resource;
1948 WRITE32(1);
1949 }
1950 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
1951 if ((buflen -= 4) < 0)
1952 goto out_resource;
1953 WRITE32(1);
1954 }
1955 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
1956 if ((buflen -= 4) < 0)
1957 goto out_resource;
1958 WRITE32(1);
1959 }
1960 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
1961 if ((buflen -= 4) < 0)
1962 goto out_resource;
1963 WRITE32(1);
1964 }
1965 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
1966 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
1967 if (buflen < 0)
1968 goto out_resource;
1969 WRITE32(fhp->fh_handle.fh_size);
1970 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
1971 }
1972 if (bmval0 & FATTR4_WORD0_FILEID) {
1973 if ((buflen -= 8) < 0)
1974 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04001975 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
1977 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
1978 if ((buflen -= 8) < 0)
1979 goto out_resource;
1980 WRITE64((u64) statfs.f_ffree);
1981 }
1982 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
1983 if ((buflen -= 8) < 0)
1984 goto out_resource;
1985 WRITE64((u64) statfs.f_ffree);
1986 }
1987 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
1988 if ((buflen -= 8) < 0)
1989 goto out_resource;
1990 WRITE64((u64) statfs.f_files);
1991 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001992 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
1993 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
1994 if (status == nfserr_resource)
1995 goto out_resource;
1996 if (status)
1997 goto out;
1998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2000 if ((buflen -= 4) < 0)
2001 goto out_resource;
2002 WRITE32(1);
2003 }
2004 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2005 if ((buflen -= 8) < 0)
2006 goto out_resource;
2007 WRITE64(~(u64)0);
2008 }
2009 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2010 if ((buflen -= 4) < 0)
2011 goto out_resource;
2012 WRITE32(255);
2013 }
2014 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2015 if ((buflen -= 4) < 0)
2016 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002017 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
2019 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2020 if ((buflen -= 8) < 0)
2021 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002022 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 }
2024 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2025 if ((buflen -= 8) < 0)
2026 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002027 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029 if (bmval1 & FATTR4_WORD1_MODE) {
2030 if ((buflen -= 4) < 0)
2031 goto out_resource;
2032 WRITE32(stat.mode & S_IALLUGO);
2033 }
2034 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2035 if ((buflen -= 4) < 0)
2036 goto out_resource;
2037 WRITE32(1);
2038 }
2039 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2040 if ((buflen -= 4) < 0)
2041 goto out_resource;
2042 WRITE32(stat.nlink);
2043 }
2044 if (bmval1 & FATTR4_WORD1_OWNER) {
2045 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
2046 if (status == nfserr_resource)
2047 goto out_resource;
2048 if (status)
2049 goto out;
2050 }
2051 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2052 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
2053 if (status == nfserr_resource)
2054 goto out_resource;
2055 if (status)
2056 goto out;
2057 }
2058 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2059 if ((buflen -= 8) < 0)
2060 goto out_resource;
2061 WRITE32((u32) MAJOR(stat.rdev));
2062 WRITE32((u32) MINOR(stat.rdev));
2063 }
2064 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2065 if ((buflen -= 8) < 0)
2066 goto out_resource;
2067 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2068 WRITE64(dummy64);
2069 }
2070 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2071 if ((buflen -= 8) < 0)
2072 goto out_resource;
2073 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2074 WRITE64(dummy64);
2075 }
2076 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2077 if ((buflen -= 8) < 0)
2078 goto out_resource;
2079 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2080 WRITE64(dummy64);
2081 }
2082 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2083 if ((buflen -= 8) < 0)
2084 goto out_resource;
2085 dummy64 = (u64)stat.blocks << 9;
2086 WRITE64(dummy64);
2087 }
2088 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2089 if ((buflen -= 12) < 0)
2090 goto out_resource;
2091 WRITE32(0);
2092 WRITE32(stat.atime.tv_sec);
2093 WRITE32(stat.atime.tv_nsec);
2094 }
2095 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2096 if ((buflen -= 12) < 0)
2097 goto out_resource;
2098 WRITE32(0);
2099 WRITE32(1);
2100 WRITE32(0);
2101 }
2102 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2103 if ((buflen -= 12) < 0)
2104 goto out_resource;
2105 WRITE32(0);
2106 WRITE32(stat.ctime.tv_sec);
2107 WRITE32(stat.ctime.tv_nsec);
2108 }
2109 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2110 if ((buflen -= 12) < 0)
2111 goto out_resource;
2112 WRITE32(0);
2113 WRITE32(stat.mtime.tv_sec);
2114 WRITE32(stat.mtime.tv_nsec);
2115 }
2116 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 if ((buflen -= 8) < 0)
2118 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002119 /*
2120 * Get parent's attributes if not ignoring crossmount
2121 * and this is the root of a cross-mounted filesystem.
2122 */
2123 if (ignore_crossmnt == 0 &&
Al Viro462d6052010-01-30 16:11:21 -05002124 dentry == exp->ex_path.mnt->mnt_root) {
2125 struct path path = exp->ex_path;
2126 path_get(&path);
2127 while (follow_up(&path)) {
2128 if (path.dentry != path.mnt->mnt_root)
2129 break;
2130 }
2131 err = vfs_getattr(path.mnt, path.dentry, &stat);
2132 path_put(&path);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002133 if (err)
2134 goto out_nfserr;
2135 }
2136 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002138 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
2139 WRITE32(3);
2140 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2141 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2142 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2143 }
Andy Adamson7e705702009-04-03 08:29:11 +03002144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2146 *countp = p - buffer;
2147 status = nfs_ok;
2148
2149out:
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002150 kfree(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (fhp == &tempfh)
2152 fh_put(&tempfh);
2153 return status;
2154out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002155 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 goto out;
2157out_resource:
2158 *countp = 0;
2159 status = nfserr_resource;
2160 goto out;
2161out_serverfault:
2162 status = nfserr_serverfault;
2163 goto out;
2164}
2165
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002166static inline int attributes_need_mount(u32 *bmval)
2167{
2168 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2169 return 1;
2170 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2171 return 1;
2172 return 0;
2173}
2174
Al Virob37ad282006-10-19 23:28:59 -07002175static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
Al Viro2ebbc012006-10-19 23:28:58 -07002177 const char *name, int namlen, __be32 *p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 struct svc_export *exp = cd->rd_fhp->fh_export;
2180 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002181 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002182 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
2184 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2185 if (IS_ERR(dentry))
2186 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002187 if (!dentry->d_inode) {
2188 /*
2189 * nfsd_buffered_readdir drops the i_mutex between
2190 * readdir and calling this callback, leaving a window
2191 * where this directory entry could have gone away.
2192 */
2193 dput(dentry);
2194 return nfserr_noent;
2195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002198 /*
2199 * In the case of a mountpoint, the client may be asking for
2200 * attributes that are only properties of the underlying filesystem
2201 * as opposed to the cross-mounted file system. In such a case,
2202 * we will not follow the cross mount and will fill the attribtutes
2203 * directly from the mountpoint dentry.
2204 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002205 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002206 int err;
2207
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002208 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2209 && !attributes_need_mount(cd->rd_bmval)) {
2210 ignore_crossmnt = 1;
2211 goto out_encode;
2212 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002213 /*
2214 * Why the heck aren't we just using nfsd_lookup??
2215 * Different "."/".." handling? Something else?
2216 * At least, add a comment here to explain....
2217 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002218 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2219 if (err) {
2220 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 goto out_put;
2222 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002223 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2224 if (nfserr)
2225 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002228out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002230 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231out_put:
2232 dput(dentry);
2233 exp_put(exp);
2234 return nfserr;
2235}
2236
Al Viro2ebbc012006-10-19 23:28:58 -07002237static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002238nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
Al Viro2ebbc012006-10-19 23:28:58 -07002240 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 if (buflen < 6)
2243 return NULL;
2244 *p++ = htonl(2);
2245 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2246 *p++ = htonl(0); /* bmval1 */
2247
2248 attrlenp = p++;
2249 *p++ = nfserr; /* no htonl */
2250 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2251 return p;
2252}
2253
2254static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002255nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2256 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002258 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2260 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002261 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002262 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002263 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 /* In nfsv4, "." and ".." never make it onto the wire.. */
2266 if (name && isdotent(name, namlen)) {
2267 cd->common.err = nfs_ok;
2268 return 0;
2269 }
2270
2271 if (cd->offset)
2272 xdr_encode_hyper(cd->offset, (u64) offset);
2273
2274 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2275 if (buflen < 0)
2276 goto fail;
2277
2278 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002279 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2281 p = xdr_encode_array(p, name, namlen); /* name length & name */
2282
2283 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, p, &buflen);
2284 switch (nfserr) {
2285 case nfs_ok:
2286 p += buflen;
2287 break;
2288 case nfserr_resource:
2289 nfserr = nfserr_toosmall;
2290 goto fail;
2291 case nfserr_dropit:
2292 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002293 case nfserr_noent:
2294 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 default:
2296 /*
2297 * If the client requested the RDATTR_ERROR attribute,
2298 * we stuff the error code into this attribute
2299 * and continue. If this attribute was not requested,
2300 * then in accordance with the spec, we fail the
2301 * entire READDIR operation(!)
2302 */
2303 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2304 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002306 if (p == NULL) {
2307 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311 cd->buflen -= (p - cd->buffer);
2312 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002313 cd->offset = cookiep;
2314skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 cd->common.err = nfs_ok;
2316 return 0;
2317fail:
2318 cd->common.err = nfserr;
2319 return -EINVAL;
2320}
2321
Benny Halevye2f282b2008-08-12 20:45:07 +03002322static void
2323nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2324{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002325 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002326
2327 RESERVE_SPACE(sizeof(stateid_t));
2328 WRITE32(sid->si_generation);
2329 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2330 ADJUST_ARGS();
2331}
2332
Benny Halevy695e12f2008-07-04 14:38:33 +03002333static __be32
Al Virob37ad282006-10-19 23:28:59 -07002334nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002336 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
2338 if (!nfserr) {
2339 RESERVE_SPACE(8);
2340 WRITE32(access->ac_supported);
2341 WRITE32(access->ac_resp_access);
2342 ADJUST_ARGS();
2343 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002344 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345}
2346
Benny Halevy695e12f2008-07-04 14:38:33 +03002347static __be32
Al Virob37ad282006-10-19 23:28:59 -07002348nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
2350 ENCODE_SEQID_OP_HEAD;
2351
Benny Halevye2f282b2008-08-12 20:45:07 +03002352 if (!nfserr)
2353 nfsd4_encode_stateid(resp, &close->cl_stateid);
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 ENCODE_SEQID_OP_TAIL(close->cl_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002356 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357}
2358
2359
Benny Halevy695e12f2008-07-04 14:38:33 +03002360static __be32
Al Virob37ad282006-10-19 23:28:59 -07002361nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002363 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365 if (!nfserr) {
2366 RESERVE_SPACE(8);
2367 WRITEMEM(commit->co_verf.data, 8);
2368 ADJUST_ARGS();
2369 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002370 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371}
2372
Benny Halevy695e12f2008-07-04 14:38:33 +03002373static __be32
Al Virob37ad282006-10-19 23:28:59 -07002374nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002376 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
2378 if (!nfserr) {
2379 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002380 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 WRITE32(2);
2382 WRITE32(create->cr_bmval[0]);
2383 WRITE32(create->cr_bmval[1]);
2384 ADJUST_ARGS();
2385 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002386 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387}
2388
Al Virob37ad282006-10-19 23:28:59 -07002389static __be32
2390nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391{
2392 struct svc_fh *fhp = getattr->ga_fhp;
2393 int buflen;
2394
2395 if (nfserr)
2396 return nfserr;
2397
2398 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2399 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
2400 resp->p, &buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002401 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 if (!nfserr)
2403 resp->p += buflen;
2404 return nfserr;
2405}
2406
Benny Halevy695e12f2008-07-04 14:38:33 +03002407static __be32
2408nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409{
Benny Halevy695e12f2008-07-04 14:38:33 +03002410 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002412 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 if (!nfserr) {
2415 len = fhp->fh_handle.fh_size;
2416 RESERVE_SPACE(len + 4);
2417 WRITE32(len);
2418 WRITEMEM(&fhp->fh_handle.fh_base, len);
2419 ADJUST_ARGS();
2420 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002421 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422}
2423
2424/*
2425* Including all fields other than the name, a LOCK4denied structure requires
2426* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2427*/
2428static void
2429nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2430{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002431 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433 RESERVE_SPACE(32 + XDR_LEN(ld->ld_sop ? ld->ld_sop->so_owner.len : 0));
2434 WRITE64(ld->ld_start);
2435 WRITE64(ld->ld_length);
2436 WRITE32(ld->ld_type);
2437 if (ld->ld_sop) {
2438 WRITEMEM(&ld->ld_clientid, 8);
2439 WRITE32(ld->ld_sop->so_owner.len);
2440 WRITEMEM(ld->ld_sop->so_owner.data, ld->ld_sop->so_owner.len);
2441 kref_put(&ld->ld_sop->so_ref, nfs4_free_stateowner);
2442 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2443 WRITE64((u64)0); /* clientid */
2444 WRITE32(0); /* length of owner name */
2445 }
2446 ADJUST_ARGS();
2447}
2448
Benny Halevy695e12f2008-07-04 14:38:33 +03002449static __be32
Al Virob37ad282006-10-19 23:28:59 -07002450nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 ENCODE_SEQID_OP_HEAD;
2453
Benny Halevye2f282b2008-08-12 20:45:07 +03002454 if (!nfserr)
2455 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2456 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2458
J. Bruce Fields3a655882006-01-18 17:43:19 -08002459 ENCODE_SEQID_OP_TAIL(lock->lk_replay_owner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002460 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
Benny Halevy695e12f2008-07-04 14:38:33 +03002463static __be32
Al Virob37ad282006-10-19 23:28:59 -07002464nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
2466 if (nfserr == nfserr_denied)
2467 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002468 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469}
2470
Benny Halevy695e12f2008-07-04 14:38:33 +03002471static __be32
Al Virob37ad282006-10-19 23:28:59 -07002472nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
2474 ENCODE_SEQID_OP_HEAD;
2475
Benny Halevye2f282b2008-08-12 20:45:07 +03002476 if (!nfserr)
2477 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 ENCODE_SEQID_OP_TAIL(locku->lu_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002480 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481}
2482
2483
Benny Halevy695e12f2008-07-04 14:38:33 +03002484static __be32
Al Virob37ad282006-10-19 23:28:59 -07002485nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002487 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
2489 if (!nfserr) {
2490 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002491 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 ADJUST_ARGS();
2493 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002494 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495}
2496
2497
Benny Halevy695e12f2008-07-04 14:38:33 +03002498static __be32
Al Virob37ad282006-10-19 23:28:59 -07002499nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002501 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 ENCODE_SEQID_OP_HEAD;
2503
2504 if (nfserr)
2505 goto out;
2506
Benny Halevye2f282b2008-08-12 20:45:07 +03002507 nfsd4_encode_stateid(resp, &open->op_stateid);
2508 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002509 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 WRITE32(open->op_rflags);
2511 WRITE32(2);
2512 WRITE32(open->op_bmval[0]);
2513 WRITE32(open->op_bmval[1]);
2514 WRITE32(open->op_delegate_type);
2515 ADJUST_ARGS();
2516
2517 switch (open->op_delegate_type) {
2518 case NFS4_OPEN_DELEGATE_NONE:
2519 break;
2520 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002521 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2522 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002523 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525 /*
2526 * TODO: ACE's in delegations
2527 */
2528 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2529 WRITE32(0);
2530 WRITE32(0);
2531 WRITE32(0); /* XXX: is NULL principal ok? */
2532 ADJUST_ARGS();
2533 break;
2534 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002535 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2536 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 WRITE32(0);
2538
2539 /*
2540 * TODO: space_limit's in delegations
2541 */
2542 WRITE32(NFS4_LIMIT_SIZE);
2543 WRITE32(~(u32)0);
2544 WRITE32(~(u32)0);
2545
2546 /*
2547 * TODO: ACE's in delegations
2548 */
2549 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2550 WRITE32(0);
2551 WRITE32(0);
2552 WRITE32(0); /* XXX: is NULL principal ok? */
2553 ADJUST_ARGS();
2554 break;
2555 default:
2556 BUG();
2557 }
2558 /* XXX save filehandle here */
2559out:
2560 ENCODE_SEQID_OP_TAIL(open->op_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002561 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
Benny Halevy695e12f2008-07-04 14:38:33 +03002564static __be32
Al Virob37ad282006-10-19 23:28:59 -07002565nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
2567 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002568
2569 if (!nfserr)
2570 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
2572 ENCODE_SEQID_OP_TAIL(oc->oc_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002573 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574}
2575
Benny Halevy695e12f2008-07-04 14:38:33 +03002576static __be32
Al Virob37ad282006-10-19 23:28:59 -07002577nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
2579 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002580
2581 if (!nfserr)
2582 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 ENCODE_SEQID_OP_TAIL(od->od_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002585 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586}
2587
Al Virob37ad282006-10-19 23:28:59 -07002588static __be32
2589nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002590 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591{
2592 u32 eof;
2593 int v, pn;
2594 unsigned long maxcount;
2595 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002596 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
2598 if (nfserr)
2599 return nfserr;
2600 if (resp->xbuf->page_len)
2601 return nfserr_resource;
2602
2603 RESERVE_SPACE(8); /* eof flag and byte count */
2604
Greg Banks7adae482006-10-04 02:15:47 -07002605 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 if (maxcount > read->rd_length)
2607 maxcount = read->rd_length;
2608
2609 len = maxcount;
2610 v = 0;
2611 while (len > 0) {
NeilBrown44524352006-10-04 02:15:46 -07002612 pn = resp->rqstp->rq_resused++;
NeilBrown3cc03b12006-10-04 02:15:47 -07002613 resp->rqstp->rq_vec[v].iov_base =
NeilBrown44524352006-10-04 02:15:46 -07002614 page_address(resp->rqstp->rq_respages[pn]);
NeilBrown3cc03b12006-10-04 02:15:47 -07002615 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002616 len < PAGE_SIZE ? len : PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 v++;
2618 len -= PAGE_SIZE;
2619 }
2620 read->rd_vlen = v;
2621
2622 nfserr = nfsd_read(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002623 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 &maxcount);
2625
2626 if (nfserr == nfserr_symlink)
2627 nfserr = nfserr_inval;
2628 if (nfserr)
2629 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002630 eof = (read->rd_offset + maxcount >=
2631 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
2633 WRITE32(eof);
2634 WRITE32(maxcount);
2635 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002636 resp->xbuf->head[0].iov_len = (char*)p
2637 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 resp->xbuf->page_len = maxcount;
2639
NeilBrown6ed6dec2006-04-10 22:55:32 -07002640 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002641 resp->xbuf->tail[0].iov_base = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002644 RESERVE_SPACE(4);
2645 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 resp->xbuf->tail[0].iov_base += maxcount&3;
2647 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002648 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 }
2650 return 0;
2651}
2652
Al Virob37ad282006-10-19 23:28:59 -07002653static __be32
2654nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
2656 int maxcount;
2657 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002658 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660 if (nfserr)
2661 return nfserr;
2662 if (resp->xbuf->page_len)
2663 return nfserr_resource;
2664
NeilBrown44524352006-10-04 02:15:46 -07002665 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 maxcount = PAGE_SIZE;
2668 RESERVE_SPACE(4);
2669
2670 /*
2671 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2672 * if they would overflow the buffer. Is this kosher in NFSv4? If
2673 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2674 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2675 */
2676 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
2677 if (nfserr == nfserr_isdir)
2678 return nfserr_inval;
2679 if (nfserr)
2680 return nfserr;
2681
2682 WRITE32(maxcount);
2683 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002684 resp->xbuf->head[0].iov_len = (char*)p
2685 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 resp->xbuf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07002687
2688 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002689 resp->xbuf->tail[0].iov_base = p;
2690 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002692 RESERVE_SPACE(4);
2693 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 resp->xbuf->tail[0].iov_base += maxcount&3;
2695 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002696 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 }
2698 return 0;
2699}
2700
Al Virob37ad282006-10-19 23:28:59 -07002701static __be32
2702nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
2704 int maxcount;
2705 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07002706 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002707 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709 if (nfserr)
2710 return nfserr;
2711 if (resp->xbuf->page_len)
2712 return nfserr_resource;
2713
2714 RESERVE_SPACE(8); /* verifier */
2715 savep = p;
2716
2717 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2718 WRITE32(0);
2719 WRITE32(0);
2720 ADJUST_ARGS();
2721 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002722 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 maxcount = PAGE_SIZE;
2725 if (maxcount > readdir->rd_maxcount)
2726 maxcount = readdir->rd_maxcount;
2727
2728 /*
2729 * Convert from bytes to words, account for the two words already
2730 * written, make sure to leave two words at the end for the next
2731 * pointer and eof field.
2732 */
2733 maxcount = (maxcount >> 2) - 4;
2734 if (maxcount < 0) {
2735 nfserr = nfserr_toosmall;
2736 goto err_no_verf;
2737 }
2738
NeilBrown44524352006-10-04 02:15:46 -07002739 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 readdir->common.err = 0;
2741 readdir->buflen = maxcount;
2742 readdir->buffer = page;
2743 readdir->offset = NULL;
2744
2745 offset = readdir->rd_cookie;
2746 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
2747 &offset,
2748 &readdir->common, nfsd4_encode_dirent);
2749 if (nfserr == nfs_ok &&
2750 readdir->common.err == nfserr_toosmall &&
2751 readdir->buffer == page)
2752 nfserr = nfserr_toosmall;
2753 if (nfserr == nfserr_symlink)
2754 nfserr = nfserr_notdir;
2755 if (nfserr)
2756 goto err_no_verf;
2757
2758 if (readdir->offset)
2759 xdr_encode_hyper(readdir->offset, offset);
2760
2761 p = readdir->buffer;
2762 *p++ = 0; /* no more entries */
2763 *p++ = htonl(readdir->common.err == nfserr_eof);
NeilBrown44524352006-10-04 02:15:46 -07002764 resp->xbuf->page_len = ((char*)p) - (char*)page_address(
2765 resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
NeilBrownbb6e8a92006-04-10 22:55:33 -07002767 /* Use rest of head for padding and remaining ops: */
NeilBrownbb6e8a92006-04-10 22:55:33 -07002768 resp->xbuf->tail[0].iov_base = tailbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 resp->xbuf->tail[0].iov_len = 0;
2770 resp->p = resp->xbuf->tail[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002771 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
2773 return 0;
2774err_no_verf:
2775 p = savep;
2776 ADJUST_ARGS();
2777 return nfserr;
2778}
2779
Benny Halevy695e12f2008-07-04 14:38:33 +03002780static __be32
Al Virob37ad282006-10-19 23:28:59 -07002781nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002783 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
2785 if (!nfserr) {
2786 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002787 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 ADJUST_ARGS();
2789 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002790 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791}
2792
Benny Halevy695e12f2008-07-04 14:38:33 +03002793static __be32
Al Virob37ad282006-10-19 23:28:59 -07002794nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002796 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 if (!nfserr) {
2799 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002800 write_cinfo(&p, &rename->rn_sinfo);
2801 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 ADJUST_ARGS();
2803 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002804 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805}
2806
Benny Halevy695e12f2008-07-04 14:38:33 +03002807static __be32
Al Viroca5c8cd2007-07-26 17:33:49 +01002808nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamsondcb488a32007-07-17 04:04:51 -07002809 struct nfsd4_secinfo *secinfo)
2810{
2811 int i = 0;
2812 struct svc_export *exp = secinfo->si_exp;
J. Bruce Fields4796f452007-07-17 04:04:51 -07002813 u32 nflavs;
2814 struct exp_flavor_info *flavs;
2815 struct exp_flavor_info def_flavs[2];
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002816 __be32 *p;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002817
2818 if (nfserr)
2819 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07002820 if (exp->ex_nflavors) {
2821 flavs = exp->ex_flavors;
2822 nflavs = exp->ex_nflavors;
2823 } else { /* Handling of some defaults in absence of real secinfo: */
2824 flavs = def_flavs;
2825 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
2826 nflavs = 2;
2827 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
2828 flavs[1].pseudoflavor = RPC_AUTH_NULL;
2829 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
2830 nflavs = 1;
2831 flavs[0].pseudoflavor
2832 = svcauth_gss_flavor(exp->ex_client);
2833 } else {
2834 nflavs = 1;
2835 flavs[0].pseudoflavor
2836 = exp->ex_client->flavour->flavour;
2837 }
2838 }
2839
Andy Adamsondcb488a32007-07-17 04:04:51 -07002840 RESERVE_SPACE(4);
J. Bruce Fields4796f452007-07-17 04:04:51 -07002841 WRITE32(nflavs);
Andy Adamsondcb488a32007-07-17 04:04:51 -07002842 ADJUST_ARGS();
J. Bruce Fields4796f452007-07-17 04:04:51 -07002843 for (i = 0; i < nflavs; i++) {
2844 u32 flav = flavs[i].pseudoflavor;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002845 struct gss_api_mech *gm = gss_mech_get_by_pseudoflavor(flav);
2846
2847 if (gm) {
2848 RESERVE_SPACE(4);
2849 WRITE32(RPC_AUTH_GSS);
2850 ADJUST_ARGS();
2851 RESERVE_SPACE(4 + gm->gm_oid.len);
2852 WRITE32(gm->gm_oid.len);
2853 WRITEMEM(gm->gm_oid.data, gm->gm_oid.len);
2854 ADJUST_ARGS();
2855 RESERVE_SPACE(4);
2856 WRITE32(0); /* qop */
2857 ADJUST_ARGS();
2858 RESERVE_SPACE(4);
2859 WRITE32(gss_pseudoflavor_to_service(gm, flav));
2860 ADJUST_ARGS();
2861 gss_mech_put(gm);
2862 } else {
2863 RESERVE_SPACE(4);
2864 WRITE32(flav);
2865 ADJUST_ARGS();
2866 }
2867 }
2868out:
2869 if (exp)
2870 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03002871 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002872}
2873
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874/*
2875 * The SETATTR encode routine is special -- it always encodes a bitmap,
2876 * regardless of the error status.
2877 */
Benny Halevy695e12f2008-07-04 14:38:33 +03002878static __be32
Al Virob37ad282006-10-19 23:28:59 -07002879nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002881 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883 RESERVE_SPACE(12);
2884 if (nfserr) {
2885 WRITE32(2);
2886 WRITE32(0);
2887 WRITE32(0);
2888 }
2889 else {
2890 WRITE32(2);
2891 WRITE32(setattr->sa_bmval[0]);
2892 WRITE32(setattr->sa_bmval[1]);
2893 }
2894 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03002895 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896}
2897
Benny Halevy695e12f2008-07-04 14:38:33 +03002898static __be32
Al Virob37ad282006-10-19 23:28:59 -07002899nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002901 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
2903 if (!nfserr) {
2904 RESERVE_SPACE(8 + sizeof(nfs4_verifier));
2905 WRITEMEM(&scd->se_clientid, 8);
2906 WRITEMEM(&scd->se_confirm, sizeof(nfs4_verifier));
2907 ADJUST_ARGS();
2908 }
2909 else if (nfserr == nfserr_clid_inuse) {
2910 RESERVE_SPACE(8);
2911 WRITE32(0);
2912 WRITE32(0);
2913 ADJUST_ARGS();
2914 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002915 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916}
2917
Benny Halevy695e12f2008-07-04 14:38:33 +03002918static __be32
Al Virob37ad282006-10-19 23:28:59 -07002919nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002921 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923 if (!nfserr) {
2924 RESERVE_SPACE(16);
2925 WRITE32(write->wr_bytes_written);
2926 WRITE32(write->wr_how_written);
2927 WRITEMEM(write->wr_verifier.data, 8);
2928 ADJUST_ARGS();
2929 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002930 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931}
2932
Benny Halevy695e12f2008-07-04 14:38:33 +03002933static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03002934nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, int nfserr,
2935 struct nfsd4_exchange_id *exid)
2936{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002937 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03002938 char *major_id;
2939 char *server_scope;
2940 int major_id_sz;
2941 int server_scope_sz;
2942 uint64_t minor_id = 0;
2943
2944 if (nfserr)
2945 return nfserr;
2946
2947 major_id = utsname()->nodename;
2948 major_id_sz = strlen(major_id);
2949 server_scope = utsname()->nodename;
2950 server_scope_sz = strlen(server_scope);
2951
2952 RESERVE_SPACE(
2953 8 /* eir_clientid */ +
2954 4 /* eir_sequenceid */ +
2955 4 /* eir_flags */ +
2956 4 /* spr_how (SP4_NONE) */ +
2957 8 /* so_minor_id */ +
2958 4 /* so_major_id.len */ +
2959 (XDR_QUADLEN(major_id_sz) * 4) +
2960 4 /* eir_server_scope.len */ +
2961 (XDR_QUADLEN(server_scope_sz) * 4) +
2962 4 /* eir_server_impl_id.count (0) */);
2963
2964 WRITEMEM(&exid->clientid, 8);
2965 WRITE32(exid->seqid);
2966 WRITE32(exid->flags);
2967
2968 /* state_protect4_r. Currently only support SP4_NONE */
2969 BUG_ON(exid->spa_how != SP4_NONE);
2970 WRITE32(exid->spa_how);
2971
2972 /* The server_owner struct */
2973 WRITE64(minor_id); /* Minor id */
2974 /* major id */
2975 WRITE32(major_id_sz);
2976 WRITEMEM(major_id, major_id_sz);
2977
2978 /* Server scope */
2979 WRITE32(server_scope_sz);
2980 WRITEMEM(server_scope, server_scope_sz);
2981
2982 /* Implementation id */
2983 WRITE32(0); /* zero length nfs_impl_id4 array */
2984 ADJUST_ARGS();
2985 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03002986}
2987
2988static __be32
2989nfsd4_encode_create_session(struct nfsd4_compoundres *resp, int nfserr,
2990 struct nfsd4_create_session *sess)
2991{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002992 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03002993
2994 if (nfserr)
2995 return nfserr;
2996
2997 RESERVE_SPACE(24);
2998 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
2999 WRITE32(sess->seqid);
3000 WRITE32(sess->flags);
3001 ADJUST_ARGS();
3002
3003 RESERVE_SPACE(28);
3004 WRITE32(0); /* headerpadsz */
3005 WRITE32(sess->fore_channel.maxreq_sz);
3006 WRITE32(sess->fore_channel.maxresp_sz);
3007 WRITE32(sess->fore_channel.maxresp_cached);
3008 WRITE32(sess->fore_channel.maxops);
3009 WRITE32(sess->fore_channel.maxreqs);
3010 WRITE32(sess->fore_channel.nr_rdma_attrs);
3011 ADJUST_ARGS();
3012
3013 if (sess->fore_channel.nr_rdma_attrs) {
3014 RESERVE_SPACE(4);
3015 WRITE32(sess->fore_channel.rdma_attrs);
3016 ADJUST_ARGS();
3017 }
3018
3019 RESERVE_SPACE(28);
3020 WRITE32(0); /* headerpadsz */
3021 WRITE32(sess->back_channel.maxreq_sz);
3022 WRITE32(sess->back_channel.maxresp_sz);
3023 WRITE32(sess->back_channel.maxresp_cached);
3024 WRITE32(sess->back_channel.maxops);
3025 WRITE32(sess->back_channel.maxreqs);
3026 WRITE32(sess->back_channel.nr_rdma_attrs);
3027 ADJUST_ARGS();
3028
3029 if (sess->back_channel.nr_rdma_attrs) {
3030 RESERVE_SPACE(4);
3031 WRITE32(sess->back_channel.rdma_attrs);
3032 ADJUST_ARGS();
3033 }
3034 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003035}
3036
3037static __be32
3038nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, int nfserr,
3039 struct nfsd4_destroy_session *destroy_session)
3040{
Andy Adamson2db134e2009-04-03 08:27:55 +03003041 return nfserr;
3042}
3043
Andy Adamsonbf864a32009-04-03 08:28:35 +03003044__be32
Andy Adamson2db134e2009-04-03 08:27:55 +03003045nfsd4_encode_sequence(struct nfsd4_compoundres *resp, int nfserr,
3046 struct nfsd4_sequence *seq)
3047{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003048 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003049
3050 if (nfserr)
3051 return nfserr;
3052
3053 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3054 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3055 WRITE32(seq->seqid);
3056 WRITE32(seq->slotid);
3057 WRITE32(seq->maxslots);
3058 /*
3059 * FIXME: for now:
3060 * target_maxslots = maxslots
3061 * status_flags = 0
3062 */
3063 WRITE32(seq->maxslots);
3064 WRITE32(0);
3065
3066 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003067 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003068 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003069}
3070
3071static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003072nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3073{
3074 return nfserr;
3075}
3076
3077typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3078
Andy Adamson2db134e2009-04-03 08:27:55 +03003079/*
3080 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3081 * since we don't need to filter out obsolete ops as this is
3082 * done in the decoding phase.
3083 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003084static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003085 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3086 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3087 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3088 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3089 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3090 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3091 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3092 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3093 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3094 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3095 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3096 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3097 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3098 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3099 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3100 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003101 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003102 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3103 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3104 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3105 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3106 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3107 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3108 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3109 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3110 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3111 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3112 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3113 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3114 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3115 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3116 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3117 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3118 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3119 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3120 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3121 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003122
3123 /* NFSv4.1 operations */
3124 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
3125 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
3126 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3127 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3128 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session,
3129 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3130 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3131 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3132 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3133 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3134 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3135 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3136 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_noop,
3137 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3138 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
3139 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3140 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3141 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3142 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003143};
3144
Andy Adamson496c2622009-04-03 08:28:48 +03003145/*
3146 * Calculate the total amount of memory that the compound response has taken
3147 * after encoding the current operation.
3148 *
3149 * pad: add on 8 bytes for the next operation's op_code and status so that
3150 * there is room to cache a failure on the next operation.
3151 *
3152 * Compare this length to the session se_fmaxresp_cached.
3153 *
3154 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3155 * will be at least a page and will therefore hold the xdr_buf head.
3156 */
3157static int nfsd4_check_drc_limit(struct nfsd4_compoundres *resp)
3158{
3159 int status = 0;
3160 struct xdr_buf *xb = &resp->rqstp->rq_res;
3161 struct nfsd4_compoundargs *args = resp->rqstp->rq_argp;
3162 struct nfsd4_session *session = NULL;
3163 struct nfsd4_slot *slot = resp->cstate.slot;
3164 u32 length, tlen = 0, pad = 8;
3165
3166 if (!nfsd4_has_session(&resp->cstate))
3167 return status;
3168
3169 session = resp->cstate.session;
Andy Adamson557ce262009-08-28 08:45:04 -04003170 if (session == NULL || slot->sl_cachethis == 0)
Andy Adamson496c2622009-04-03 08:28:48 +03003171 return status;
3172
3173 if (resp->opcnt >= args->opcnt)
3174 pad = 0; /* this is the last operation */
3175
3176 if (xb->page_len == 0) {
3177 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3178 } else {
3179 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3180 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3181
3182 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3183 }
3184 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3185 length, xb->page_len, tlen, pad);
3186
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003187 if (length <= session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003188 return status;
3189 else
3190 return nfserr_rep_too_big_to_cache;
3191}
3192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193void
3194nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3195{
Al Viro2ebbc012006-10-19 23:28:58 -07003196 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003197 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198
3199 RESERVE_SPACE(8);
3200 WRITE32(op->opnum);
3201 statp = p++; /* to be backfilled at the end */
3202 ADJUST_ARGS();
3203
Benny Halevy695e12f2008-07-04 14:38:33 +03003204 if (op->opnum == OP_ILLEGAL)
3205 goto status;
3206 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3207 !nfsd4_enc_ops[op->opnum]);
3208 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
Andy Adamson496c2622009-04-03 08:28:48 +03003209 /* nfsd4_check_drc_limit guarantees enough room for error status */
3210 if (!op->status && nfsd4_check_drc_limit(resp))
3211 op->status = nfserr_rep_too_big_to_cache;
Benny Halevy695e12f2008-07-04 14:38:33 +03003212status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 /*
3214 * Note: We write the status directly, instead of using WRITE32(),
3215 * since it is already in network byte order.
3216 */
3217 *statp = op->status;
3218}
3219
3220/*
3221 * Encode the reply stored in the stateowner reply cache
3222 *
3223 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3224 * previously sent already encoded operation.
3225 *
3226 * called with nfs4_lock_state() held
3227 */
3228void
3229nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3230{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003231 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 struct nfs4_replay *rp = op->replay;
3233
3234 BUG_ON(!rp);
3235
3236 RESERVE_SPACE(8);
3237 WRITE32(op->opnum);
3238 *p++ = rp->rp_status; /* already xdr'ed */
3239 ADJUST_ARGS();
3240
3241 RESERVE_SPACE(rp->rp_buflen);
3242 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3243 ADJUST_ARGS();
3244}
3245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246int
Al Viro2ebbc012006-10-19 23:28:58 -07003247nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248{
3249 return xdr_ressize_check(rqstp, p);
3250}
3251
3252void nfsd4_release_compoundargs(struct nfsd4_compoundargs *args)
3253{
3254 if (args->ops != args->iops) {
3255 kfree(args->ops);
3256 args->ops = args->iops;
3257 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003258 kfree(args->tmpp);
3259 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 while (args->to_free) {
3261 struct tmpbuf *tb = args->to_free;
3262 args->to_free = tb->next;
3263 tb->release(tb->buf);
3264 kfree(tb);
3265 }
3266}
3267
3268int
Al Viro2ebbc012006-10-19 23:28:58 -07003269nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270{
Al Virob37ad282006-10-19 23:28:59 -07003271 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
3273 args->p = p;
3274 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3275 args->pagelist = rqstp->rq_arg.pages;
3276 args->pagelen = rqstp->rq_arg.page_len;
3277 args->tmpp = NULL;
3278 args->to_free = NULL;
3279 args->ops = args->iops;
3280 args->rqstp = rqstp;
3281
3282 status = nfsd4_decode_compound(args);
3283 if (status) {
3284 nfsd4_release_compoundargs(args);
3285 }
3286 return !status;
3287}
3288
3289int
Al Viro2ebbc012006-10-19 23:28:58 -07003290nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291{
3292 /*
3293 * All that remains is to write the tag and operation count...
3294 */
Andy Adamson557ce262009-08-28 08:45:04 -04003295 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 struct kvec *iov;
3297 p = resp->tagp;
3298 *p++ = htonl(resp->taglen);
3299 memcpy(p, resp->tag, resp->taglen);
3300 p += XDR_QUADLEN(resp->taglen);
3301 *p++ = htonl(resp->opcnt);
3302
3303 if (rqstp->rq_res.page_len)
3304 iov = &rqstp->rq_res.tail[0];
3305 else
3306 iov = &rqstp->rq_res.head[0];
3307 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3308 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003309 if (nfsd4_has_session(cs)) {
3310 if (cs->status != nfserr_replay_cache) {
3311 nfsd4_store_cache_entry(resp);
3312 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__);
Benny Halevydbd65a72010-05-03 19:31:33 +03003313 cs->slot->sl_inuse = false;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003314 }
Benny Halevydbd65a72010-05-03 19:31:33 +03003315 nfsd4_put_session(cs->session);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 return 1;
3318}
3319
3320/*
3321 * Local variables:
3322 * c-basic-offset: 8
3323 * End:
3324 */