blob: 437b4623cb02231720e27898e4a72523ebe7c948 [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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/namei.h>
Boaz Harrosh341eb182009-12-03 20:29:12 +020045#include <linux/statfs.h>
Andy Adamson0733d212009-04-03 08:28:01 +030046#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/nfsd_idmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/nfs4_acl.h>
J. Bruce Fields4796f452007-07-17 04:04:51 -070049#include <linux/sunrpc/svcauth_gss.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020050
51#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050052#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#define NFSDDBG_FACILITY NFSDDBG_XDR
55
J.Bruce Fields42ca0992006-10-04 02:16:20 -070056/*
57 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
58 * directory in order to indicate to the client that a filesystem boundary is present
59 * We use a fixed fsid for a referral
60 */
61#define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
62#define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
63
Al Virob37ad282006-10-19 23:28:59 -070064static __be32
65check_filename(char *str, int len, __be32 err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 int i;
68
69 if (len == 0)
70 return nfserr_inval;
71 if (isdotent(str, len))
72 return err;
73 for (i = 0; i < len; i++)
74 if (str[i] == '/')
75 return err;
76 return 0;
77}
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define DECODE_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -070080 __be32 *p; \
Al Virob37ad282006-10-19 23:28:59 -070081 __be32 status
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define DECODE_TAIL \
83 status = 0; \
84out: \
85 return status; \
86xdr_error: \
Chuck Lever817cb9d2007-09-11 18:01:20 -040087 dprintk("NFSD: xdr error (%s:%d)\n", \
88 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 status = nfserr_bad_xdr; \
90 goto out
91
92#define READ32(x) (x) = ntohl(*p++)
93#define READ64(x) do { \
94 (x) = (u64)ntohl(*p++) << 32; \
95 (x) |= ntohl(*p++); \
96} while (0)
97#define READTIME(x) do { \
98 p++; \
99 (x) = ntohl(*p++); \
100 p++; \
101} while (0)
102#define READMEM(x,nbytes) do { \
103 x = (char *)p; \
104 p += XDR_QUADLEN(nbytes); \
105} while (0)
106#define SAVEMEM(x,nbytes) do { \
107 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
108 savemem(argp, p, nbytes) : \
109 (char *)p)) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400110 dprintk("NFSD: xdr error (%s:%d)\n", \
111 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 goto xdr_error; \
113 } \
114 p += XDR_QUADLEN(nbytes); \
115} while (0)
116#define COPYMEM(x,nbytes) do { \
117 memcpy((x), p, nbytes); \
118 p += XDR_QUADLEN(nbytes); \
119} while (0)
120
121/* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
122#define READ_BUF(nbytes) do { \
123 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
124 p = argp->p; \
125 argp->p += XDR_QUADLEN(nbytes); \
126 } else if (!(p = read_buf(argp, nbytes))) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400127 dprintk("NFSD: xdr error (%s:%d)\n", \
128 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto xdr_error; \
130 } \
131} while (0)
132
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500133static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 /* We want more bytes than seem to be available.
136 * Maybe we need a new page, maybe we have just run out
137 */
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500138 unsigned int avail = (char *)argp->end - (char *)argp->p;
Al Viro2ebbc012006-10-19 23:28:58 -0700139 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (avail + argp->pagelen < nbytes)
141 return NULL;
142 if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */
143 return NULL;
144 /* ok, we can do it with the current plus the next page */
145 if (nbytes <= sizeof(argp->tmp))
146 p = argp->tmp;
147 else {
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800148 kfree(argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
150 if (!p)
151 return NULL;
152
153 }
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500154 /*
155 * The following memcpy is safe because read_buf is always
156 * called with nbytes > avail, and the two cases above both
157 * guarantee p points to at least nbytes bytes.
158 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 memcpy(p, argp->p, avail);
160 /* step to next page */
161 argp->p = page_address(argp->pagelist[0]);
162 argp->pagelist++;
163 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +1000164 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 argp->pagelen = 0;
166 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +1000167 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 argp->pagelen -= PAGE_SIZE;
169 }
170 memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
171 argp->p += XDR_QUADLEN(nbytes - avail);
172 return p;
173}
174
Andy Adamson60adfc52009-04-03 08:28:50 +0300175static int zero_clientid(clientid_t *clid)
176{
177 return (clid->cl_boot == 0) && (clid->cl_id == 0);
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static int
181defer_free(struct nfsd4_compoundargs *argp,
182 void (*release)(const void *), void *p)
183{
184 struct tmpbuf *tb;
185
186 tb = kmalloc(sizeof(*tb), GFP_KERNEL);
187 if (!tb)
188 return -ENOMEM;
189 tb->buf = p;
190 tb->release = release;
191 tb->next = argp->to_free;
192 argp->to_free = tb;
193 return 0;
194}
195
Al Viro2ebbc012006-10-19 23:28:58 -0700196static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (p == argp->tmp) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800199 p = kmalloc(nbytes, GFP_KERNEL);
200 if (!p)
201 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 memcpy(p, argp->tmp, nbytes);
203 } else {
Eric Sesterhenn73dff8b2006-10-03 23:37:14 +0200204 BUG_ON(p != argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 argp->tmpp = NULL;
206 }
207 if (defer_free(argp, kfree, p)) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800208 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return NULL;
210 } else
211 return (char *)p;
212}
213
Al Virob37ad282006-10-19 23:28:59 -0700214static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
216{
217 u32 bmlen;
218 DECODE_HEAD;
219
220 bmval[0] = 0;
221 bmval[1] = 0;
Andy Adamson7e705702009-04-03 08:29:11 +0300222 bmval[2] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 READ_BUF(4);
225 READ32(bmlen);
226 if (bmlen > 1000)
227 goto xdr_error;
228
229 READ_BUF(bmlen << 2);
230 if (bmlen > 0)
231 READ32(bmval[0]);
232 if (bmlen > 1)
233 READ32(bmval[1]);
Andy Adamson7e705702009-04-03 08:29:11 +0300234 if (bmlen > 2)
235 READ32(bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 DECODE_TAIL;
238}
239
Al Virob37ad282006-10-19 23:28:59 -0700240static __be32
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800241nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300242 struct iattr *iattr, struct nfs4_acl **acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 int expected_len, len = 0;
245 u32 dummy32;
246 char *buf;
Al Virob8dd7b92006-10-19 23:29:01 -0700247 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 DECODE_HEAD;
250 iattr->ia_valid = 0;
251 if ((status = nfsd4_decode_bitmap(argp, bmval)))
252 return status;
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 READ_BUF(4);
255 READ32(expected_len);
256
257 if (bmval[0] & FATTR4_WORD0_SIZE) {
258 READ_BUF(8);
259 len += 8;
260 READ64(iattr->ia_size);
261 iattr->ia_valid |= ATTR_SIZE;
262 }
263 if (bmval[0] & FATTR4_WORD0_ACL) {
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800264 int nace;
265 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 READ_BUF(4); len += 4;
268 READ32(nace);
269
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800270 if (nace > NFS4_ACL_MAX)
271 return nfserr_resource;
272
273 *acl = nfs4_acl_new(nace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (*acl == NULL) {
Al Virob8dd7b92006-10-19 23:29:01 -0700275 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 goto out_nfserr;
277 }
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800278 defer_free(argp, kfree, *acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800280 (*acl)->naces = nace;
281 for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 READ_BUF(16); len += 16;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800283 READ32(ace->type);
284 READ32(ace->flag);
285 READ32(ace->access_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 READ32(dummy32);
287 READ_BUF(dummy32);
288 len += XDR_QUADLEN(dummy32) << 2;
289 READMEM(buf, dummy32);
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800290 ace->whotype = nfs4_acl_get_whotype(buf, dummy32);
Al Virob8dd7b92006-10-19 23:29:01 -0700291 host_err = 0;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800292 if (ace->whotype != NFS4_ACL_WHO_NAMED)
293 ace->who = 0;
294 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
Al Virob8dd7b92006-10-19 23:29:01 -0700295 host_err = nfsd_map_name_to_gid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800296 buf, dummy32, &ace->who);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 else
Al Virob8dd7b92006-10-19 23:29:01 -0700298 host_err = nfsd_map_name_to_uid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800299 buf, dummy32, &ace->who);
Al Virob8dd7b92006-10-19 23:29:01 -0700300 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303 } else
304 *acl = NULL;
305 if (bmval[1] & FATTR4_WORD1_MODE) {
306 READ_BUF(4);
307 len += 4;
308 READ32(iattr->ia_mode);
309 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
310 iattr->ia_valid |= ATTR_MODE;
311 }
312 if (bmval[1] & FATTR4_WORD1_OWNER) {
313 READ_BUF(4);
314 len += 4;
315 READ32(dummy32);
316 READ_BUF(dummy32);
317 len += (XDR_QUADLEN(dummy32) << 2);
318 READMEM(buf, dummy32);
Al Virob8dd7b92006-10-19 23:29:01 -0700319 if ((host_err = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 goto out_nfserr;
321 iattr->ia_valid |= ATTR_UID;
322 }
323 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
324 READ_BUF(4);
325 len += 4;
326 READ32(dummy32);
327 READ_BUF(dummy32);
328 len += (XDR_QUADLEN(dummy32) << 2);
329 READMEM(buf, dummy32);
Al Virob8dd7b92006-10-19 23:29:01 -0700330 if ((host_err = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 goto out_nfserr;
332 iattr->ia_valid |= ATTR_GID;
333 }
334 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
335 READ_BUF(4);
336 len += 4;
337 READ32(dummy32);
338 switch (dummy32) {
339 case NFS4_SET_TO_CLIENT_TIME:
340 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
341 all 32 bits of 'nseconds'. */
342 READ_BUF(12);
343 len += 12;
344 READ32(dummy32);
345 if (dummy32)
346 return nfserr_inval;
347 READ32(iattr->ia_atime.tv_sec);
348 READ32(iattr->ia_atime.tv_nsec);
349 if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
350 return nfserr_inval;
351 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
352 break;
353 case NFS4_SET_TO_SERVER_TIME:
354 iattr->ia_valid |= ATTR_ATIME;
355 break;
356 default:
357 goto xdr_error;
358 }
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
361 READ_BUF(4);
362 len += 4;
363 READ32(dummy32);
364 switch (dummy32) {
365 case NFS4_SET_TO_CLIENT_TIME:
366 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
367 all 32 bits of 'nseconds'. */
368 READ_BUF(12);
369 len += 12;
370 READ32(dummy32);
371 if (dummy32)
372 return nfserr_inval;
373 READ32(iattr->ia_mtime.tv_sec);
374 READ32(iattr->ia_mtime.tv_nsec);
375 if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
376 return nfserr_inval;
377 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
378 break;
379 case NFS4_SET_TO_SERVER_TIME:
380 iattr->ia_valid |= ATTR_MTIME;
381 break;
382 default:
383 goto xdr_error;
384 }
385 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800386 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
387 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
388 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2)
389 READ_BUF(expected_len - len);
390 else if (len != expected_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 goto xdr_error;
392
393 DECODE_TAIL;
394
395out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -0700396 status = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 goto out;
398}
399
Al Virob37ad282006-10-19 23:28:59 -0700400static __be32
Benny Halevye31a1b62008-08-12 20:46:18 +0300401nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
402{
403 DECODE_HEAD;
404
405 READ_BUF(sizeof(stateid_t));
406 READ32(sid->si_generation);
407 COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
408
409 DECODE_TAIL;
410}
411
412static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
414{
415 DECODE_HEAD;
416
417 READ_BUF(4);
418 READ32(access->ac_req_access);
419
420 DECODE_TAIL;
421}
422
Al Virob37ad282006-10-19 23:28:59 -0700423static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
425{
426 DECODE_HEAD;
427
428 close->cl_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300429 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300431 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 DECODE_TAIL;
434}
435
436
Al Virob37ad282006-10-19 23:28:59 -0700437static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
439{
440 DECODE_HEAD;
441
442 READ_BUF(12);
443 READ64(commit->co_offset);
444 READ32(commit->co_count);
445
446 DECODE_TAIL;
447}
448
Al Virob37ad282006-10-19 23:28:59 -0700449static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
451{
452 DECODE_HEAD;
453
454 READ_BUF(4);
455 READ32(create->cr_type);
456 switch (create->cr_type) {
457 case NF4LNK:
458 READ_BUF(4);
459 READ32(create->cr_linklen);
460 READ_BUF(create->cr_linklen);
461 SAVEMEM(create->cr_linkname, create->cr_linklen);
462 break;
463 case NF4BLK:
464 case NF4CHR:
465 READ_BUF(8);
466 READ32(create->cr_specdata1);
467 READ32(create->cr_specdata2);
468 break;
469 case NF4SOCK:
470 case NF4FIFO:
471 case NF4DIR:
472 default:
473 break;
474 }
475
476 READ_BUF(4);
477 READ32(create->cr_namelen);
478 READ_BUF(create->cr_namelen);
479 SAVEMEM(create->cr_name, create->cr_namelen);
480 if ((status = check_filename(create->cr_name, create->cr_namelen, nfserr_inval)))
481 return status;
482
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800483 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
484 &create->cr_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300485 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 goto out;
487
488 DECODE_TAIL;
489}
490
Al Virob37ad282006-10-19 23:28:59 -0700491static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
493{
Benny Halevye31a1b62008-08-12 20:46:18 +0300494 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
Al Virob37ad282006-10-19 23:28:59 -0700497static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
499{
500 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
501}
502
Al Virob37ad282006-10-19 23:28:59 -0700503static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
505{
506 DECODE_HEAD;
507
508 READ_BUF(4);
509 READ32(link->li_namelen);
510 READ_BUF(link->li_namelen);
511 SAVEMEM(link->li_name, link->li_namelen);
512 if ((status = check_filename(link->li_name, link->li_namelen, nfserr_inval)))
513 return status;
514
515 DECODE_TAIL;
516}
517
Al Virob37ad282006-10-19 23:28:59 -0700518static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
520{
521 DECODE_HEAD;
522
J. Bruce Fields3a655882006-01-18 17:43:19 -0800523 lock->lk_replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /*
525 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
526 */
527 READ_BUF(28);
528 READ32(lock->lk_type);
529 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
530 goto xdr_error;
531 READ32(lock->lk_reclaim);
532 READ64(lock->lk_offset);
533 READ64(lock->lk_length);
534 READ32(lock->lk_is_new);
535
536 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300537 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300539 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
540 if (status)
541 return status;
542 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 READ32(lock->lk_new_lock_seqid);
544 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
545 READ32(lock->lk_new_owner.len);
546 READ_BUF(lock->lk_new_owner.len);
547 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
548 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300549 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
550 if (status)
551 return status;
552 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 READ32(lock->lk_old_lock_seqid);
554 }
555
556 DECODE_TAIL;
557}
558
Al Virob37ad282006-10-19 23:28:59 -0700559static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
561{
562 DECODE_HEAD;
563
564 READ_BUF(32);
565 READ32(lockt->lt_type);
566 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
567 goto xdr_error;
568 READ64(lockt->lt_offset);
569 READ64(lockt->lt_length);
570 COPYMEM(&lockt->lt_clientid, 8);
571 READ32(lockt->lt_owner.len);
572 READ_BUF(lockt->lt_owner.len);
573 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
574
Andy Adamson60adfc52009-04-03 08:28:50 +0300575 if (argp->minorversion && !zero_clientid(&lockt->lt_clientid))
576 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 DECODE_TAIL;
578}
579
Al Virob37ad282006-10-19 23:28:59 -0700580static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
582{
583 DECODE_HEAD;
584
585 locku->lu_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300586 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 READ32(locku->lu_type);
588 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
589 goto xdr_error;
590 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300591 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
592 if (status)
593 return status;
594 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 READ64(locku->lu_offset);
596 READ64(locku->lu_length);
597
598 DECODE_TAIL;
599}
600
Al Virob37ad282006-10-19 23:28:59 -0700601static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
603{
604 DECODE_HEAD;
605
606 READ_BUF(4);
607 READ32(lookup->lo_len);
608 READ_BUF(lookup->lo_len);
609 SAVEMEM(lookup->lo_name, lookup->lo_len);
610 if ((status = check_filename(lookup->lo_name, lookup->lo_len, nfserr_noent)))
611 return status;
612
613 DECODE_TAIL;
614}
615
Al Virob37ad282006-10-19 23:28:59 -0700616static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
618{
619 DECODE_HEAD;
620
621 memset(open->op_bmval, 0, sizeof(open->op_bmval));
622 open->op_iattr.ia_valid = 0;
623 open->op_stateowner = NULL;
624
625 /* seqid, share_access, share_deny, clientid, ownerlen */
626 READ_BUF(16 + sizeof(clientid_t));
627 READ32(open->op_seqid);
628 READ32(open->op_share_access);
629 READ32(open->op_share_deny);
630 COPYMEM(&open->op_clientid, sizeof(clientid_t));
631 READ32(open->op_owner.len);
632
633 /* owner, open_flag */
634 READ_BUF(open->op_owner.len + 4);
635 SAVEMEM(open->op_owner.data, open->op_owner.len);
636 READ32(open->op_create);
637 switch (open->op_create) {
638 case NFS4_OPEN_NOCREATE:
639 break;
640 case NFS4_OPEN_CREATE:
641 READ_BUF(4);
642 READ32(open->op_createmode);
643 switch (open->op_createmode) {
644 case NFS4_CREATE_UNCHECKED:
645 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300646 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800647 &open->op_iattr, &open->op_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300648 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 goto out;
650 break;
651 case NFS4_CREATE_EXCLUSIVE:
652 READ_BUF(8);
653 COPYMEM(open->op_verf.data, 8);
654 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300655 case NFS4_CREATE_EXCLUSIVE4_1:
656 if (argp->minorversion < 1)
657 goto xdr_error;
658 READ_BUF(8);
659 COPYMEM(open->op_verf.data, 8);
660 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800661 &open->op_iattr, &open->op_acl);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300662 if (status)
663 goto out;
664 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 default:
666 goto xdr_error;
667 }
668 break;
669 default:
670 goto xdr_error;
671 }
672
673 /* open_claim */
674 READ_BUF(4);
675 READ32(open->op_claim_type);
676 switch (open->op_claim_type) {
677 case NFS4_OPEN_CLAIM_NULL:
678 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
679 READ_BUF(4);
680 READ32(open->op_fname.len);
681 READ_BUF(open->op_fname.len);
682 SAVEMEM(open->op_fname.data, open->op_fname.len);
683 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
684 return status;
685 break;
686 case NFS4_OPEN_CLAIM_PREVIOUS:
687 READ_BUF(4);
688 READ32(open->op_delegate_type);
689 break;
690 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300691 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
692 if (status)
693 return status;
694 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 READ32(open->op_fname.len);
696 READ_BUF(open->op_fname.len);
697 SAVEMEM(open->op_fname.data, open->op_fname.len);
698 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
699 return status;
700 break;
701 default:
702 goto xdr_error;
703 }
704
705 DECODE_TAIL;
706}
707
Al Virob37ad282006-10-19 23:28:59 -0700708static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
710{
711 DECODE_HEAD;
712
713 open_conf->oc_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300714 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
715 if (status)
716 return status;
717 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 READ32(open_conf->oc_seqid);
719
720 DECODE_TAIL;
721}
722
Al Virob37ad282006-10-19 23:28:59 -0700723static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
725{
726 DECODE_HEAD;
727
728 open_down->od_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300729 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
730 if (status)
731 return status;
732 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 READ32(open_down->od_seqid);
734 READ32(open_down->od_share_access);
735 READ32(open_down->od_share_deny);
736
737 DECODE_TAIL;
738}
739
Al Virob37ad282006-10-19 23:28:59 -0700740static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
742{
743 DECODE_HEAD;
744
745 READ_BUF(4);
746 READ32(putfh->pf_fhlen);
747 if (putfh->pf_fhlen > NFS4_FHSIZE)
748 goto xdr_error;
749 READ_BUF(putfh->pf_fhlen);
750 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
751
752 DECODE_TAIL;
753}
754
Al Virob37ad282006-10-19 23:28:59 -0700755static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
757{
758 DECODE_HEAD;
759
Benny Halevye31a1b62008-08-12 20:46:18 +0300760 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
761 if (status)
762 return status;
763 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 READ64(read->rd_offset);
765 READ32(read->rd_length);
766
767 DECODE_TAIL;
768}
769
Al Virob37ad282006-10-19 23:28:59 -0700770static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
772{
773 DECODE_HEAD;
774
775 READ_BUF(24);
776 READ64(readdir->rd_cookie);
777 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
778 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
779 READ32(readdir->rd_maxcount);
780 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
781 goto out;
782
783 DECODE_TAIL;
784}
785
Al Virob37ad282006-10-19 23:28:59 -0700786static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
788{
789 DECODE_HEAD;
790
791 READ_BUF(4);
792 READ32(remove->rm_namelen);
793 READ_BUF(remove->rm_namelen);
794 SAVEMEM(remove->rm_name, remove->rm_namelen);
795 if ((status = check_filename(remove->rm_name, remove->rm_namelen, nfserr_noent)))
796 return status;
797
798 DECODE_TAIL;
799}
800
Al Virob37ad282006-10-19 23:28:59 -0700801static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
803{
804 DECODE_HEAD;
805
806 READ_BUF(4);
807 READ32(rename->rn_snamelen);
808 READ_BUF(rename->rn_snamelen + 4);
809 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
810 READ32(rename->rn_tnamelen);
811 READ_BUF(rename->rn_tnamelen);
812 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
813 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen, nfserr_noent)))
814 return status;
815 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen, nfserr_inval)))
816 return status;
817
818 DECODE_TAIL;
819}
820
Al Virob37ad282006-10-19 23:28:59 -0700821static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
823{
824 DECODE_HEAD;
825
826 READ_BUF(sizeof(clientid_t));
827 COPYMEM(clientid, sizeof(clientid_t));
828
829 DECODE_TAIL;
830}
831
Al Virob37ad282006-10-19 23:28:59 -0700832static __be32
Andy Adamsondcb488a2007-07-17 04:04:51 -0700833nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
834 struct nfsd4_secinfo *secinfo)
835{
836 DECODE_HEAD;
837
838 READ_BUF(4);
839 READ32(secinfo->si_namelen);
840 READ_BUF(secinfo->si_namelen);
841 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
842 status = check_filename(secinfo->si_name, secinfo->si_namelen,
843 nfserr_noent);
844 if (status)
845 return status;
846 DECODE_TAIL;
847}
848
849static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500850nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
851 struct nfsd4_secinfo_no_name *sin)
852{
853 DECODE_HEAD;
854
855 READ_BUF(4);
856 READ32(sin->sin_style);
857 DECODE_TAIL;
858}
859
860static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
862{
Benny Halevye31a1b62008-08-12 20:46:18 +0300863 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Benny Halevye31a1b62008-08-12 20:46:18 +0300865 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
866 if (status)
867 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800868 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
869 &setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Al Virob37ad282006-10-19 23:28:59 -0700872static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
874{
875 DECODE_HEAD;
876
877 READ_BUF(12);
878 COPYMEM(setclientid->se_verf.data, 8);
879 READ32(setclientid->se_namelen);
880
881 READ_BUF(setclientid->se_namelen + 8);
882 SAVEMEM(setclientid->se_name, setclientid->se_namelen);
883 READ32(setclientid->se_callback_prog);
884 READ32(setclientid->se_callback_netid_len);
885
886 READ_BUF(setclientid->se_callback_netid_len + 4);
887 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
888 READ32(setclientid->se_callback_addr_len);
889
890 READ_BUF(setclientid->se_callback_addr_len + 4);
891 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
892 READ32(setclientid->se_callback_ident);
893
894 DECODE_TAIL;
895}
896
Al Virob37ad282006-10-19 23:28:59 -0700897static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
899{
900 DECODE_HEAD;
901
902 READ_BUF(8 + sizeof(nfs4_verifier));
903 COPYMEM(&scd_c->sc_clientid, 8);
904 COPYMEM(&scd_c->sc_confirm, sizeof(nfs4_verifier));
905
906 DECODE_TAIL;
907}
908
909/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -0700910static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
912{
913#if 0
914 struct nfsd4_compoundargs save = {
915 .p = argp->p,
916 .end = argp->end,
917 .rqstp = argp->rqstp,
918 };
919 u32 ve_bmval[2];
920 struct iattr ve_iattr; /* request */
921 struct nfs4_acl *ve_acl; /* request */
922#endif
923 DECODE_HEAD;
924
925 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
926 goto out;
927
928 /* For convenience's sake, we compare raw xdr'd attributes in
929 * nfsd4_proc_verify; however we still decode here just to return
930 * correct error in case of bad xdr. */
931#if 0
932 status = nfsd4_decode_fattr(ve_bmval, &ve_iattr, &ve_acl);
933 if (status == nfserr_inval) {
934 status = nfserrno(status);
935 goto out;
936 }
937#endif
938 READ_BUF(4);
939 READ32(verify->ve_attrlen);
940 READ_BUF(verify->ve_attrlen);
941 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
942
943 DECODE_TAIL;
944}
945
Al Virob37ad282006-10-19 23:28:59 -0700946static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
948{
949 int avail;
950 int v;
951 int len;
952 DECODE_HEAD;
953
Benny Halevye31a1b62008-08-12 20:46:18 +0300954 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
955 if (status)
956 return status;
957 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 READ64(write->wr_offset);
959 READ32(write->wr_stable_how);
960 if (write->wr_stable_how > 2)
961 goto xdr_error;
962 READ32(write->wr_buflen);
963
964 /* Sorry .. no magic macros for this.. *
965 * READ_BUF(write->wr_buflen);
966 * SAVEMEM(write->wr_buf, write->wr_buflen);
967 */
968 avail = (char*)argp->end - (char*)argp->p;
969 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -0400970 dprintk("NFSD: xdr error (%s:%d)\n",
971 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 goto xdr_error;
973 }
NeilBrown3cc03b12006-10-04 02:15:47 -0700974 argp->rqstp->rq_vec[0].iov_base = p;
975 argp->rqstp->rq_vec[0].iov_len = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 v = 0;
977 len = write->wr_buflen;
NeilBrown3cc03b12006-10-04 02:15:47 -0700978 while (len > argp->rqstp->rq_vec[v].iov_len) {
979 len -= argp->rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700981 argp->rqstp->rq_vec[v].iov_base = page_address(argp->pagelist[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 argp->pagelist++;
983 if (argp->pagelen >= PAGE_SIZE) {
NeilBrown3cc03b12006-10-04 02:15:47 -0700984 argp->rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 argp->pagelen -= PAGE_SIZE;
986 } else {
NeilBrown3cc03b12006-10-04 02:15:47 -0700987 argp->rqstp->rq_vec[v].iov_len = argp->pagelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 argp->pagelen -= len;
989 }
990 }
Al Viro2ebbc012006-10-19 23:28:58 -0700991 argp->end = (__be32*) (argp->rqstp->rq_vec[v].iov_base + argp->rqstp->rq_vec[v].iov_len);
992 argp->p = (__be32*) (argp->rqstp->rq_vec[v].iov_base + (XDR_QUADLEN(len) << 2));
NeilBrown3cc03b12006-10-04 02:15:47 -0700993 argp->rqstp->rq_vec[v].iov_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 write->wr_vlen = v+1;
995
996 DECODE_TAIL;
997}
998
Al Virob37ad282006-10-19 23:28:59 -0700999static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1001{
1002 DECODE_HEAD;
1003
1004 READ_BUF(12);
1005 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1006 READ32(rlockowner->rl_owner.len);
1007 READ_BUF(rlockowner->rl_owner.len);
1008 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1009
Andy Adamson60adfc52009-04-03 08:28:50 +03001010 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1011 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 DECODE_TAIL;
1013}
1014
Al Virob37ad282006-10-19 23:28:59 -07001015static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001016nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001017 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001018{
Mi Jinlong5afa0402010-11-09 09:39:23 +08001019 int dummy, tmp;
Andy Adamson0733d212009-04-03 08:28:01 +03001020 DECODE_HEAD;
1021
1022 READ_BUF(NFS4_VERIFIER_SIZE);
1023 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1024
1025 READ_BUF(4);
1026 READ32(exid->clname.len);
1027
1028 READ_BUF(exid->clname.len);
1029 SAVEMEM(exid->clname.data, exid->clname.len);
1030
1031 READ_BUF(4);
1032 READ32(exid->flags);
1033
1034 /* Ignore state_protect4_a */
1035 READ_BUF(4);
1036 READ32(exid->spa_how);
1037 switch (exid->spa_how) {
1038 case SP4_NONE:
1039 break;
1040 case SP4_MACH_CRED:
1041 /* spo_must_enforce */
1042 READ_BUF(4);
1043 READ32(dummy);
1044 READ_BUF(dummy * 4);
1045 p += dummy;
1046
1047 /* spo_must_allow */
1048 READ_BUF(4);
1049 READ32(dummy);
1050 READ_BUF(dummy * 4);
1051 p += dummy;
1052 break;
1053 case SP4_SSV:
1054 /* ssp_ops */
1055 READ_BUF(4);
1056 READ32(dummy);
1057 READ_BUF(dummy * 4);
1058 p += dummy;
1059
1060 READ_BUF(4);
1061 READ32(dummy);
1062 READ_BUF(dummy * 4);
1063 p += dummy;
1064
1065 /* ssp_hash_algs<> */
1066 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001067 READ32(tmp);
1068 while (tmp--) {
1069 READ_BUF(4);
1070 READ32(dummy);
1071 READ_BUF(dummy);
1072 p += XDR_QUADLEN(dummy);
1073 }
Andy Adamson0733d212009-04-03 08:28:01 +03001074
1075 /* ssp_encr_algs<> */
1076 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001077 READ32(tmp);
1078 while (tmp--) {
1079 READ_BUF(4);
1080 READ32(dummy);
1081 READ_BUF(dummy);
1082 p += XDR_QUADLEN(dummy);
1083 }
Andy Adamson0733d212009-04-03 08:28:01 +03001084
1085 /* ssp_window and ssp_num_gss_handles */
1086 READ_BUF(8);
1087 READ32(dummy);
1088 READ32(dummy);
1089 break;
1090 default:
1091 goto xdr_error;
1092 }
1093
1094 /* Ignore Implementation ID */
1095 READ_BUF(4); /* nfs_impl_id4 array length */
1096 READ32(dummy);
1097
1098 if (dummy > 1)
1099 goto xdr_error;
1100
1101 if (dummy == 1) {
1102 /* nii_domain */
1103 READ_BUF(4);
1104 READ32(dummy);
1105 READ_BUF(dummy);
1106 p += XDR_QUADLEN(dummy);
1107
1108 /* nii_name */
1109 READ_BUF(4);
1110 READ32(dummy);
1111 READ_BUF(dummy);
1112 p += XDR_QUADLEN(dummy);
1113
1114 /* nii_date */
1115 READ_BUF(12);
1116 p += 3;
1117 }
1118 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001119}
1120
1121static __be32
1122nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1123 struct nfsd4_create_session *sess)
1124{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001125 DECODE_HEAD;
1126
1127 u32 dummy;
1128 char *machine_name;
1129 int i;
1130 int nr_secflavs;
1131
1132 READ_BUF(16);
1133 COPYMEM(&sess->clientid, 8);
1134 READ32(sess->seqid);
1135 READ32(sess->flags);
1136
1137 /* Fore channel attrs */
1138 READ_BUF(28);
1139 READ32(dummy); /* headerpadsz is always 0 */
1140 READ32(sess->fore_channel.maxreq_sz);
1141 READ32(sess->fore_channel.maxresp_sz);
1142 READ32(sess->fore_channel.maxresp_cached);
1143 READ32(sess->fore_channel.maxops);
1144 READ32(sess->fore_channel.maxreqs);
1145 READ32(sess->fore_channel.nr_rdma_attrs);
1146 if (sess->fore_channel.nr_rdma_attrs == 1) {
1147 READ_BUF(4);
1148 READ32(sess->fore_channel.rdma_attrs);
1149 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1150 dprintk("Too many fore channel attr bitmaps!\n");
1151 goto xdr_error;
1152 }
1153
1154 /* Back channel attrs */
1155 READ_BUF(28);
1156 READ32(dummy); /* headerpadsz is always 0 */
1157 READ32(sess->back_channel.maxreq_sz);
1158 READ32(sess->back_channel.maxresp_sz);
1159 READ32(sess->back_channel.maxresp_cached);
1160 READ32(sess->back_channel.maxops);
1161 READ32(sess->back_channel.maxreqs);
1162 READ32(sess->back_channel.nr_rdma_attrs);
1163 if (sess->back_channel.nr_rdma_attrs == 1) {
1164 READ_BUF(4);
1165 READ32(sess->back_channel.rdma_attrs);
1166 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1167 dprintk("Too many back channel attr bitmaps!\n");
1168 goto xdr_error;
1169 }
1170
1171 READ_BUF(8);
1172 READ32(sess->callback_prog);
1173
1174 /* callback_sec_params4 */
1175 READ32(nr_secflavs);
1176 for (i = 0; i < nr_secflavs; ++i) {
1177 READ_BUF(4);
1178 READ32(dummy);
1179 switch (dummy) {
1180 case RPC_AUTH_NULL:
1181 /* Nothing to read */
1182 break;
1183 case RPC_AUTH_UNIX:
1184 READ_BUF(8);
1185 /* stamp */
1186 READ32(dummy);
1187
1188 /* machine name */
1189 READ32(dummy);
1190 READ_BUF(dummy);
1191 SAVEMEM(machine_name, dummy);
1192
1193 /* uid, gid */
1194 READ_BUF(8);
1195 READ32(sess->uid);
1196 READ32(sess->gid);
1197
1198 /* more gids */
1199 READ_BUF(4);
1200 READ32(dummy);
1201 READ_BUF(dummy * 4);
1202 for (i = 0; i < dummy; ++i)
1203 READ32(dummy);
1204 break;
1205 case RPC_AUTH_GSS:
1206 dprintk("RPC_AUTH_GSS callback secflavor "
1207 "not supported!\n");
1208 READ_BUF(8);
1209 /* gcbp_service */
1210 READ32(dummy);
1211 /* gcbp_handle_from_server */
1212 READ32(dummy);
1213 READ_BUF(dummy);
1214 p += XDR_QUADLEN(dummy);
1215 /* gcbp_handle_from_client */
1216 READ_BUF(4);
1217 READ32(dummy);
1218 READ_BUF(dummy);
1219 p += XDR_QUADLEN(dummy);
1220 break;
1221 default:
1222 dprintk("Illegal callback secflavor\n");
1223 return nfserr_inval;
1224 }
1225 }
1226 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001227}
1228
1229static __be32
1230nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1231 struct nfsd4_destroy_session *destroy_session)
1232{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001233 DECODE_HEAD;
1234 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1235 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1236
1237 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001238}
1239
1240static __be32
1241nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1242 struct nfsd4_sequence *seq)
1243{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001244 DECODE_HEAD;
1245
1246 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1247 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1248 READ32(seq->seqid);
1249 READ32(seq->slotid);
1250 READ32(seq->maxslots);
1251 READ32(seq->cachethis);
1252
1253 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001254}
1255
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001256static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1257{
1258 DECODE_HEAD;
1259
1260 READ_BUF(4);
1261 READ32(rc->rca_one_fs);
1262
1263 DECODE_TAIL;
1264}
1265
Andy Adamson2db134e2009-04-03 08:27:55 +03001266static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001267nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1268{
1269 return nfs_ok;
1270}
1271
Benny Halevy3c375c62008-07-02 11:14:01 +03001272static __be32
1273nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1274{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001275 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001276}
1277
Benny Halevy347e0ad2008-07-02 11:13:41 +03001278typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1279
1280static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001281 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1282 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1283 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1284 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1285 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1286 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1287 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1288 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1289 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1290 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1291 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1292 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1293 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1294 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1295 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1296 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1297 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1298 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1299 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1300 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001301 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001302 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1303 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1304 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1305 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1306 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1307 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1308 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1309 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1310 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1311 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1312 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1313 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1314 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1315 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1316 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1317 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Benny Halevy347e0ad2008-07-02 11:13:41 +03001318};
1319
Andy Adamson2db134e2009-04-03 08:27:55 +03001320static nfsd4_dec nfsd41_dec_ops[] = {
Randy Dunlap9064caa2009-04-28 16:48:25 -07001321 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1322 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1323 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1324 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1325 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1326 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1327 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1328 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1329 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1330 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1331 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1332 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1333 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1334 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1335 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1336 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1337 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1338 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp,
1339 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1340 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
1341 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp,
1342 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1343 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1344 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1345 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1346 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1347 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1348 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp,
1349 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1350 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1351 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1352 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1353 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1354 [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp,
1355 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1356 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1357 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001358
1359 /* new operations for NFSv4.1 */
Randy Dunlap9064caa2009-04-28 16:48:25 -07001360 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_notsupp,
1361 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_notsupp,
1362 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1363 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1364 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
1365 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_notsupp,
1366 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1367 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1368 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1369 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1370 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1371 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001372 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001373 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1374 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
1375 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_notsupp,
1376 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1377 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001378 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Andy Adamson2db134e2009-04-03 08:27:55 +03001379};
1380
Benny Halevyf2feb962008-07-02 11:14:22 +03001381struct nfsd4_minorversion_ops {
1382 nfsd4_dec *decoders;
1383 int nops;
1384};
1385
1386static struct nfsd4_minorversion_ops nfsd4_minorversion[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001387 [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) },
Andy Adamson2db134e2009-04-03 08:27:55 +03001388 [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Benny Halevyf2feb962008-07-02 11:14:22 +03001389};
1390
Benny Halevy347e0ad2008-07-02 11:13:41 +03001391static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1393{
1394 DECODE_HEAD;
1395 struct nfsd4_op *op;
Benny Halevyf2feb962008-07-02 11:14:22 +03001396 struct nfsd4_minorversion_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 int i;
1398
1399 /*
1400 * XXX: According to spec, we should check the tag
1401 * for UTF-8 compliance. I'm postponing this for
1402 * now because it seems that some clients do use
1403 * binary tags.
1404 */
1405 READ_BUF(4);
1406 READ32(argp->taglen);
1407 READ_BUF(argp->taglen + 8);
1408 SAVEMEM(argp->tag, argp->taglen);
1409 READ32(argp->minorversion);
1410 READ32(argp->opcnt);
1411
1412 if (argp->taglen > NFSD4_MAX_TAGLEN)
1413 goto xdr_error;
1414 if (argp->opcnt > 100)
1415 goto xdr_error;
1416
Tobias Klausere8c96f82006-03-24 03:15:34 -08001417 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1419 if (!argp->ops) {
1420 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001421 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 goto xdr_error;
1423 }
1424 }
1425
Benny Halevyf2feb962008-07-02 11:14:22 +03001426 if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion))
Benny Halevy30cff1f2008-07-02 11:13:18 +03001427 argp->opcnt = 0;
1428
Benny Halevyf2feb962008-07-02 11:14:22 +03001429 ops = &nfsd4_minorversion[argp->minorversion];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 for (i = 0; i < argp->opcnt; i++) {
1431 op = &argp->ops[i];
1432 op->replay = NULL;
1433
1434 /*
1435 * We can't use READ_BUF() here because we need to handle
1436 * a missing opcode as an OP_WRITE + 1. So we need to check
1437 * to see if we're truly at the end of our buffer or if there
1438 * is another page we need to flip to.
1439 */
1440
1441 if (argp->p == argp->end) {
1442 if (argp->pagelen < 4) {
1443 /* There isn't an opcode still on the wire */
1444 op->opnum = OP_WRITE + 1;
1445 op->status = nfserr_bad_xdr;
1446 argp->opcnt = i+1;
1447 break;
1448 }
1449
1450 /*
1451 * False alarm. We just hit a page boundary, but there
1452 * is still data available. Move pointer across page
1453 * boundary. *snip from READ_BUF*
1454 */
1455 argp->p = page_address(argp->pagelist[0]);
1456 argp->pagelist++;
1457 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +10001458 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 argp->pagelen = 0;
1460 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +10001461 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 argp->pagelen -= PAGE_SIZE;
1463 }
1464 }
1465 op->opnum = ntohl(*argp->p++);
1466
Ricardo Labiagade3cab72009-12-11 20:03:27 -08001467 if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP)
Benny Halevyf2feb962008-07-02 11:14:22 +03001468 op->status = ops->decoders[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001469 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 op->opnum = OP_ILLEGAL;
1471 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
1473
1474 if (op->status) {
1475 argp->opcnt = i+1;
1476 break;
1477 }
1478 }
1479
1480 DECODE_TAIL;
1481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483#define WRITE32(n) *p++ = htonl(n)
1484#define WRITE64(n) do { \
1485 *p++ = htonl((u32)((n) >> 32)); \
1486 *p++ = htonl((u32)(n)); \
1487} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001488#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1490 memcpy(p, ptr, nbytes); \
1491 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001492}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001493
1494static void write32(__be32 **p, u32 n)
1495{
1496 *(*p)++ = n;
1497}
1498
1499static void write64(__be32 **p, u64 n)
1500{
1501 write32(p, (u32)(n >> 32));
1502 write32(p, (u32)n);
1503}
1504
1505static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1506{
1507 if (IS_I_VERSION(inode)) {
1508 write64(p, inode->i_version);
1509 } else {
1510 write32(p, stat->ctime.tv_sec);
1511 write32(p, stat->ctime.tv_nsec);
1512 }
1513}
1514
1515static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1516{
1517 write32(p, c->atomic);
1518 if (c->change_supported) {
1519 write64(p, c->before_change);
1520 write64(p, c->after_change);
1521 } else {
1522 write32(p, c->before_ctime_sec);
1523 write32(p, c->before_ctime_nsec);
1524 write32(p, c->after_ctime_sec);
1525 write32(p, c->after_ctime_nsec);
1526 }
1527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529#define RESERVE_SPACE(nbytes) do { \
1530 p = resp->p; \
1531 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1532} while (0)
1533#define ADJUST_ARGS() resp->p = p
1534
1535/*
1536 * Header routine to setup seqid operation replay cache
1537 */
1538#define ENCODE_SEQID_OP_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -07001539 __be32 *save; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 \
1541 save = resp->p;
1542
1543/*
NeilBrown7fb64ce2005-07-07 17:59:20 -07001544 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1545 * is where sequence id's are incremented, and the replay cache is filled.
1546 * Note that we increment sequence id's here, at the last moment, so we're sure
1547 * we know whether the error to be returned is a sequence id mutating error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 */
1549
1550#define ENCODE_SEQID_OP_TAIL(stateowner) do { \
1551 if (seqid_mutating_err(nfserr) && stateowner) { \
NeilBrownbd9aac52005-07-07 17:59:19 -07001552 stateowner->so_seqid++; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 stateowner->so_replay.rp_status = nfserr; \
1554 stateowner->so_replay.rp_buflen = \
1555 (((char *)(resp)->p - (char *)save)); \
1556 memcpy(stateowner->so_replay.rp_buf, save, \
1557 stateowner->so_replay.rp_buflen); \
1558 } } while (0);
1559
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001560/* Encode as an array of strings the string given with components
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001561 * separated @sep.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001562 */
Al Virob37ad282006-10-19 23:28:59 -07001563static __be32 nfsd4_encode_components(char sep, char *components,
Al Viro2ebbc012006-10-19 23:28:58 -07001564 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001565{
Al Viro2ebbc012006-10-19 23:28:58 -07001566 __be32 *p = *pp;
1567 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001568 int strlen, count=0;
1569 char *str, *end;
1570
1571 dprintk("nfsd4_encode_components(%s)\n", components);
1572 if ((*buflen -= 4) < 0)
1573 return nfserr_resource;
1574 WRITE32(0); /* We will fill this in with @count later */
1575 end = str = components;
1576 while (*end) {
1577 for (; *end && (*end != sep); end++)
1578 ; /* Point to end of component */
1579 strlen = end - str;
1580 if (strlen) {
1581 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1582 return nfserr_resource;
1583 WRITE32(strlen);
1584 WRITEMEM(str, strlen);
1585 count++;
1586 }
1587 else
1588 end++;
1589 str = end;
1590 }
1591 *pp = p;
1592 p = countp;
1593 WRITE32(count);
1594 return 0;
1595}
1596
1597/*
1598 * encode a location element of a fs_locations structure
1599 */
Al Virob37ad282006-10-19 23:28:59 -07001600static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001601 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001602{
Al Virob37ad282006-10-19 23:28:59 -07001603 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001604 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001605
1606 status = nfsd4_encode_components(':', location->hosts, &p, buflen);
1607 if (status)
1608 return status;
1609 status = nfsd4_encode_components('/', location->path, &p, buflen);
1610 if (status)
1611 return status;
1612 *pp = p;
1613 return 0;
1614}
1615
1616/*
1617 * Return the path to an export point in the pseudo filesystem namespace
1618 * Returned string is safe to use as long as the caller holds a reference
1619 * to @exp.
1620 */
Al Virob37ad282006-10-19 23:28:59 -07001621static char *nfsd4_path(struct svc_rqst *rqstp, struct svc_export *exp, __be32 *stat)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001622{
1623 struct svc_fh tmp_fh;
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001624 char *path = NULL, *rootpath;
1625 size_t rootlen;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001626
1627 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -07001628 *stat = exp_pseudoroot(rqstp, &tmp_fh);
Al Virocc45f012006-10-19 23:28:44 -07001629 if (*stat)
1630 return NULL;
Jan Blunck54775492008-02-14 19:38:39 -08001631 rootpath = tmp_fh.fh_export->ex_pathname;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001632
Jan Blunck54775492008-02-14 19:38:39 -08001633 path = exp->ex_pathname;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001634
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001635 rootlen = strlen(rootpath);
1636 if (strncmp(path, rootpath, rootlen)) {
Chuck Lever817cb9d2007-09-11 18:01:20 -04001637 dprintk("nfsd: fs_locations failed;"
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001638 "%s is not contained in %s\n", path, rootpath);
Al Virocc45f012006-10-19 23:28:44 -07001639 *stat = nfserr_notsupp;
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001640 path = NULL;
1641 goto out;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001642 }
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001643 path += rootlen;
1644out:
1645 fh_put(&tmp_fh);
1646 return path;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001647}
1648
1649/*
1650 * encode a fs_locations structure
1651 */
Al Virob37ad282006-10-19 23:28:59 -07001652static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001653 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001654 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001655{
Al Virob37ad282006-10-19 23:28:59 -07001656 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001657 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001658 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001659 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
Al Virocc45f012006-10-19 23:28:44 -07001660 char *root = nfsd4_path(rqstp, exp, &status);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001661
Al Virocc45f012006-10-19 23:28:44 -07001662 if (status)
1663 return status;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001664 status = nfsd4_encode_components('/', root, &p, buflen);
1665 if (status)
1666 return status;
1667 if ((*buflen -= 4) < 0)
1668 return nfserr_resource;
1669 WRITE32(fslocs->locations_count);
1670 for (i=0; i<fslocs->locations_count; i++) {
1671 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1672 &p, buflen);
1673 if (status)
1674 return status;
1675 }
1676 *pp = p;
1677 return 0;
1678}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680static u32 nfs4_ftypes[16] = {
1681 NF4BAD, NF4FIFO, NF4CHR, NF4BAD,
1682 NF4DIR, NF4BAD, NF4BLK, NF4BAD,
1683 NF4REG, NF4BAD, NF4LNK, NF4BAD,
1684 NF4SOCK, NF4BAD, NF4LNK, NF4BAD,
1685};
1686
Al Virob37ad282006-10-19 23:28:59 -07001687static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001689 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
1691 int status;
1692
1693 if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1694 return nfserr_resource;
1695 if (whotype != NFS4_ACL_WHO_NAMED)
1696 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
1697 else if (group)
1698 status = nfsd_map_gid_to_name(rqstp, id, (u8 *)(*p + 1));
1699 else
1700 status = nfsd_map_uid_to_name(rqstp, id, (u8 *)(*p + 1));
1701 if (status < 0)
1702 return nfserrno(status);
1703 *p = xdr_encode_opaque(*p, NULL, status);
1704 *buflen -= (XDR_QUADLEN(status) << 2) + 4;
1705 BUG_ON(*buflen < 0);
1706 return 0;
1707}
1708
Al Virob37ad282006-10-19 23:28:59 -07001709static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001710nfsd4_encode_user(struct svc_rqst *rqstp, uid_t uid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
1712 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, uid, 0, p, buflen);
1713}
1714
Al Virob37ad282006-10-19 23:28:59 -07001715static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001716nfsd4_encode_group(struct svc_rqst *rqstp, uid_t gid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
1718 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, gid, 1, p, buflen);
1719}
1720
Al Virob37ad282006-10-19 23:28:59 -07001721static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722nfsd4_encode_aclname(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001723 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
1725 return nfsd4_encode_name(rqstp, whotype, id, group, p, buflen);
1726}
1727
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001728#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1729 FATTR4_WORD0_RDATTR_ERROR)
1730#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1731
Al Virob37ad282006-10-19 23:28:59 -07001732static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001733{
1734 /* As per referral draft: */
1735 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
1736 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
1737 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
1738 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
1739 *rdattr_err = NFSERR_MOVED;
1740 else
1741 return nfserr_moved;
1742 }
1743 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
1744 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
1745 return 0;
1746}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748/*
1749 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1750 * ourselves.
1751 *
1752 * @countp is the buffer size in _words_; upon successful return this becomes
1753 * replaced with the number of words written.
1754 */
Al Virob37ad282006-10-19 23:28:59 -07001755__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001757 struct dentry *dentry, __be32 *buffer, int *countp, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001758 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
1760 u32 bmval0 = bmval[0];
1761 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03001762 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 struct kstat stat;
1764 struct svc_fh tempfh;
1765 struct kstatfs statfs;
1766 int buflen = *countp << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07001767 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 u32 dummy;
1769 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001770 u32 rdattr_err = 0;
Al Viro2ebbc012006-10-19 23:28:58 -07001771 __be32 *p = buffer;
Al Virob37ad282006-10-19 23:28:59 -07001772 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07001773 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 int aclsupport = 0;
1775 struct nfs4_acl *acl = NULL;
Andy Adamson7e705702009-04-03 08:29:11 +03001776 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1777 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001778 struct path path = {
1779 .mnt = exp->ex_path.mnt,
1780 .dentry = dentry,
1781 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
1783 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03001784 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
1785 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
1786 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001788 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03001789 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001790 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
1791 if (status)
1792 goto out;
1793 }
1794
Jan Blunck54775492008-02-14 19:38:39 -08001795 err = vfs_getattr(exp->ex_path.mnt, dentry, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07001796 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04001798 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
1799 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
1801 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001802 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07001803 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 goto out_nfserr;
1805 }
1806 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
1807 fh_init(&tempfh, NFS4_FHSIZE);
1808 status = fh_compose(&tempfh, exp, dentry, NULL);
1809 if (status)
1810 goto out;
1811 fhp = &tempfh;
1812 }
1813 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
1814 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07001815 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
1816 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07001818 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07001820 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 status = nfserr_attrnotsupp;
1822 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07001823 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 goto out_nfserr;
1825 }
1826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001828 if (bmval2) {
1829 if ((buflen -= 16) < 0)
1830 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001831 WRITE32(3);
1832 WRITE32(bmval0);
1833 WRITE32(bmval1);
1834 WRITE32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001835 } else if (bmval1) {
1836 if ((buflen -= 12) < 0)
1837 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001838 WRITE32(2);
1839 WRITE32(bmval0);
1840 WRITE32(bmval1);
1841 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001842 if ((buflen -= 8) < 0)
1843 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001844 WRITE32(1);
1845 WRITE32(bmval0);
1846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 attrlenp = p++; /* to be backfilled later */
1848
1849 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03001850 u32 word0 = nfsd_suppattrs0(minorversion);
1851 u32 word1 = nfsd_suppattrs1(minorversion);
1852 u32 word2 = nfsd_suppattrs2(minorversion);
1853
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001854 if (!aclsupport)
1855 word0 &= ~FATTR4_WORD0_ACL;
Andy Adamson7e705702009-04-03 08:29:11 +03001856 if (!word2) {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001857 if ((buflen -= 12) < 0)
1858 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001859 WRITE32(2);
1860 WRITE32(word0);
1861 WRITE32(word1);
1862 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001863 if ((buflen -= 16) < 0)
1864 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001865 WRITE32(3);
1866 WRITE32(word0);
1867 WRITE32(word1);
1868 WRITE32(word2);
1869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 }
1871 if (bmval0 & FATTR4_WORD0_TYPE) {
1872 if ((buflen -= 4) < 0)
1873 goto out_resource;
1874 dummy = nfs4_ftypes[(stat.mode & S_IFMT) >> 12];
1875 if (dummy == NF4BAD)
1876 goto out_serverfault;
1877 WRITE32(dummy);
1878 }
1879 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
1880 if ((buflen -= 4) < 0)
1881 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07001882 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07001883 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07001884 else
NeilBrowne34ac862005-07-07 17:59:30 -07001885 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
1887 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 if ((buflen -= 8) < 0)
1889 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001890 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892 if (bmval0 & FATTR4_WORD0_SIZE) {
1893 if ((buflen -= 8) < 0)
1894 goto out_resource;
1895 WRITE64(stat.size);
1896 }
1897 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
1898 if ((buflen -= 4) < 0)
1899 goto out_resource;
1900 WRITE32(1);
1901 }
1902 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
1903 if ((buflen -= 4) < 0)
1904 goto out_resource;
1905 WRITE32(1);
1906 }
1907 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
1908 if ((buflen -= 4) < 0)
1909 goto out_resource;
1910 WRITE32(0);
1911 }
1912 if (bmval0 & FATTR4_WORD0_FSID) {
1913 if ((buflen -= 16) < 0)
1914 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001915 if (exp->ex_fslocs.migrated) {
1916 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
1917 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08001918 } else switch(fsid_source(fhp)) {
1919 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 WRITE64((u64)exp->ex_fsid);
1921 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08001922 break;
1923 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 WRITE32(0);
1925 WRITE32(MAJOR(stat.dev));
1926 WRITE32(0);
1927 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08001928 break;
1929 case FSIDSOURCE_UUID:
1930 WRITEMEM(exp->ex_uuid, 16);
1931 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
1933 }
1934 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
1935 if ((buflen -= 4) < 0)
1936 goto out_resource;
1937 WRITE32(0);
1938 }
1939 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
1940 if ((buflen -= 4) < 0)
1941 goto out_resource;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05001942 WRITE32(nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
1945 if ((buflen -= 4) < 0)
1946 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001947 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949 if (bmval0 & FATTR4_WORD0_ACL) {
1950 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 if (acl == NULL) {
1953 if ((buflen -= 4) < 0)
1954 goto out_resource;
1955
1956 WRITE32(0);
1957 goto out_acl;
1958 }
1959 if ((buflen -= 4) < 0)
1960 goto out_resource;
1961 WRITE32(acl->naces);
1962
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08001963 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 if ((buflen -= 4*3) < 0)
1965 goto out_resource;
1966 WRITE32(ace->type);
1967 WRITE32(ace->flag);
1968 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
1969 status = nfsd4_encode_aclname(rqstp, ace->whotype,
1970 ace->who, ace->flag & NFS4_ACE_IDENTIFIER_GROUP,
1971 &p, &buflen);
1972 if (status == nfserr_resource)
1973 goto out_resource;
1974 if (status)
1975 goto out;
1976 }
1977 }
1978out_acl:
1979 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
1980 if ((buflen -= 4) < 0)
1981 goto out_resource;
1982 WRITE32(aclsupport ?
1983 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
1984 }
1985 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
1986 if ((buflen -= 4) < 0)
1987 goto out_resource;
1988 WRITE32(1);
1989 }
1990 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
1991 if ((buflen -= 4) < 0)
1992 goto out_resource;
1993 WRITE32(1);
1994 }
1995 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
1996 if ((buflen -= 4) < 0)
1997 goto out_resource;
1998 WRITE32(1);
1999 }
2000 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2001 if ((buflen -= 4) < 0)
2002 goto out_resource;
2003 WRITE32(1);
2004 }
2005 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2006 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2007 if (buflen < 0)
2008 goto out_resource;
2009 WRITE32(fhp->fh_handle.fh_size);
2010 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2011 }
2012 if (bmval0 & FATTR4_WORD0_FILEID) {
2013 if ((buflen -= 8) < 0)
2014 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002015 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
2017 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2018 if ((buflen -= 8) < 0)
2019 goto out_resource;
2020 WRITE64((u64) statfs.f_ffree);
2021 }
2022 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2023 if ((buflen -= 8) < 0)
2024 goto out_resource;
2025 WRITE64((u64) statfs.f_ffree);
2026 }
2027 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2028 if ((buflen -= 8) < 0)
2029 goto out_resource;
2030 WRITE64((u64) statfs.f_files);
2031 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002032 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2033 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
2034 if (status == nfserr_resource)
2035 goto out_resource;
2036 if (status)
2037 goto out;
2038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2040 if ((buflen -= 4) < 0)
2041 goto out_resource;
2042 WRITE32(1);
2043 }
2044 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2045 if ((buflen -= 8) < 0)
2046 goto out_resource;
2047 WRITE64(~(u64)0);
2048 }
2049 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2050 if ((buflen -= 4) < 0)
2051 goto out_resource;
2052 WRITE32(255);
2053 }
2054 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2055 if ((buflen -= 4) < 0)
2056 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002057 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 }
2059 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2060 if ((buflen -= 8) < 0)
2061 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002062 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2065 if ((buflen -= 8) < 0)
2066 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002067 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
2069 if (bmval1 & FATTR4_WORD1_MODE) {
2070 if ((buflen -= 4) < 0)
2071 goto out_resource;
2072 WRITE32(stat.mode & S_IALLUGO);
2073 }
2074 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2075 if ((buflen -= 4) < 0)
2076 goto out_resource;
2077 WRITE32(1);
2078 }
2079 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2080 if ((buflen -= 4) < 0)
2081 goto out_resource;
2082 WRITE32(stat.nlink);
2083 }
2084 if (bmval1 & FATTR4_WORD1_OWNER) {
2085 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
2086 if (status == nfserr_resource)
2087 goto out_resource;
2088 if (status)
2089 goto out;
2090 }
2091 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2092 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
2093 if (status == nfserr_resource)
2094 goto out_resource;
2095 if (status)
2096 goto out;
2097 }
2098 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2099 if ((buflen -= 8) < 0)
2100 goto out_resource;
2101 WRITE32((u32) MAJOR(stat.rdev));
2102 WRITE32((u32) MINOR(stat.rdev));
2103 }
2104 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2105 if ((buflen -= 8) < 0)
2106 goto out_resource;
2107 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2108 WRITE64(dummy64);
2109 }
2110 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2111 if ((buflen -= 8) < 0)
2112 goto out_resource;
2113 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2114 WRITE64(dummy64);
2115 }
2116 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2117 if ((buflen -= 8) < 0)
2118 goto out_resource;
2119 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2120 WRITE64(dummy64);
2121 }
2122 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2123 if ((buflen -= 8) < 0)
2124 goto out_resource;
2125 dummy64 = (u64)stat.blocks << 9;
2126 WRITE64(dummy64);
2127 }
2128 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2129 if ((buflen -= 12) < 0)
2130 goto out_resource;
2131 WRITE32(0);
2132 WRITE32(stat.atime.tv_sec);
2133 WRITE32(stat.atime.tv_nsec);
2134 }
2135 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2136 if ((buflen -= 12) < 0)
2137 goto out_resource;
2138 WRITE32(0);
2139 WRITE32(1);
2140 WRITE32(0);
2141 }
2142 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2143 if ((buflen -= 12) < 0)
2144 goto out_resource;
2145 WRITE32(0);
2146 WRITE32(stat.ctime.tv_sec);
2147 WRITE32(stat.ctime.tv_nsec);
2148 }
2149 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2150 if ((buflen -= 12) < 0)
2151 goto out_resource;
2152 WRITE32(0);
2153 WRITE32(stat.mtime.tv_sec);
2154 WRITE32(stat.mtime.tv_nsec);
2155 }
2156 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 if ((buflen -= 8) < 0)
2158 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002159 /*
2160 * Get parent's attributes if not ignoring crossmount
2161 * and this is the root of a cross-mounted filesystem.
2162 */
2163 if (ignore_crossmnt == 0 &&
Al Viro462d6052010-01-30 16:11:21 -05002164 dentry == exp->ex_path.mnt->mnt_root) {
2165 struct path path = exp->ex_path;
2166 path_get(&path);
2167 while (follow_up(&path)) {
2168 if (path.dentry != path.mnt->mnt_root)
2169 break;
2170 }
2171 err = vfs_getattr(path.mnt, path.dentry, &stat);
2172 path_put(&path);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002173 if (err)
2174 goto out_nfserr;
2175 }
2176 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002178 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
2179 WRITE32(3);
2180 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2181 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2182 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2183 }
Andy Adamson7e705702009-04-03 08:29:11 +03002184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2186 *countp = p - buffer;
2187 status = nfs_ok;
2188
2189out:
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002190 kfree(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if (fhp == &tempfh)
2192 fh_put(&tempfh);
2193 return status;
2194out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002195 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 goto out;
2197out_resource:
2198 *countp = 0;
2199 status = nfserr_resource;
2200 goto out;
2201out_serverfault:
2202 status = nfserr_serverfault;
2203 goto out;
2204}
2205
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002206static inline int attributes_need_mount(u32 *bmval)
2207{
2208 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2209 return 1;
2210 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2211 return 1;
2212 return 0;
2213}
2214
Al Virob37ad282006-10-19 23:28:59 -07002215static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
Al Viro2ebbc012006-10-19 23:28:58 -07002217 const char *name, int namlen, __be32 *p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
2219 struct svc_export *exp = cd->rd_fhp->fh_export;
2220 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002221 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002222 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2225 if (IS_ERR(dentry))
2226 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002227 if (!dentry->d_inode) {
2228 /*
2229 * nfsd_buffered_readdir drops the i_mutex between
2230 * readdir and calling this callback, leaving a window
2231 * where this directory entry could have gone away.
2232 */
2233 dput(dentry);
2234 return nfserr_noent;
2235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
2237 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002238 /*
2239 * In the case of a mountpoint, the client may be asking for
2240 * attributes that are only properties of the underlying filesystem
2241 * as opposed to the cross-mounted file system. In such a case,
2242 * we will not follow the cross mount and will fill the attribtutes
2243 * directly from the mountpoint dentry.
2244 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002245 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002246 int err;
2247
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002248 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2249 && !attributes_need_mount(cd->rd_bmval)) {
2250 ignore_crossmnt = 1;
2251 goto out_encode;
2252 }
Andy Adamsondcb488a2007-07-17 04:04:51 -07002253 /*
2254 * Why the heck aren't we just using nfsd_lookup??
2255 * Different "."/".." handling? Something else?
2256 * At least, add a comment here to explain....
2257 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002258 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2259 if (err) {
2260 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 goto out_put;
2262 }
Andy Adamsondcb488a2007-07-17 04:04:51 -07002263 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2264 if (nfserr)
2265 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
2267 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002268out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002270 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271out_put:
2272 dput(dentry);
2273 exp_put(exp);
2274 return nfserr;
2275}
2276
Al Viro2ebbc012006-10-19 23:28:58 -07002277static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002278nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Al Viro2ebbc012006-10-19 23:28:58 -07002280 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 if (buflen < 6)
2283 return NULL;
2284 *p++ = htonl(2);
2285 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2286 *p++ = htonl(0); /* bmval1 */
2287
2288 attrlenp = p++;
2289 *p++ = nfserr; /* no htonl */
2290 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2291 return p;
2292}
2293
2294static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002295nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2296 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002298 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2300 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002301 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002302 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002303 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
2305 /* In nfsv4, "." and ".." never make it onto the wire.. */
2306 if (name && isdotent(name, namlen)) {
2307 cd->common.err = nfs_ok;
2308 return 0;
2309 }
2310
2311 if (cd->offset)
2312 xdr_encode_hyper(cd->offset, (u64) offset);
2313
2314 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2315 if (buflen < 0)
2316 goto fail;
2317
2318 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002319 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2321 p = xdr_encode_array(p, name, namlen); /* name length & name */
2322
2323 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, p, &buflen);
2324 switch (nfserr) {
2325 case nfs_ok:
2326 p += buflen;
2327 break;
2328 case nfserr_resource:
2329 nfserr = nfserr_toosmall;
2330 goto fail;
2331 case nfserr_dropit:
2332 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002333 case nfserr_noent:
2334 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 default:
2336 /*
2337 * If the client requested the RDATTR_ERROR attribute,
2338 * we stuff the error code into this attribute
2339 * and continue. If this attribute was not requested,
2340 * then in accordance with the spec, we fail the
2341 * entire READDIR operation(!)
2342 */
2343 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2344 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002346 if (p == NULL) {
2347 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
2351 cd->buflen -= (p - cd->buffer);
2352 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002353 cd->offset = cookiep;
2354skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 cd->common.err = nfs_ok;
2356 return 0;
2357fail:
2358 cd->common.err = nfserr;
2359 return -EINVAL;
2360}
2361
Benny Halevye2f282b2008-08-12 20:45:07 +03002362static void
2363nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2364{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002365 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002366
2367 RESERVE_SPACE(sizeof(stateid_t));
2368 WRITE32(sid->si_generation);
2369 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2370 ADJUST_ARGS();
2371}
2372
Benny Halevy695e12f2008-07-04 14:38:33 +03002373static __be32
Al Virob37ad282006-10-19 23:28:59 -07002374nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
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(8);
2380 WRITE32(access->ac_supported);
2381 WRITE32(access->ac_resp_access);
2382 ADJUST_ARGS();
2383 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002384 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386
Benny Halevy695e12f2008-07-04 14:38:33 +03002387static __be32
Al Virob37ad282006-10-19 23:28:59 -07002388nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
2390 ENCODE_SEQID_OP_HEAD;
2391
Benny Halevye2f282b2008-08-12 20:45:07 +03002392 if (!nfserr)
2393 nfsd4_encode_stateid(resp, &close->cl_stateid);
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 ENCODE_SEQID_OP_TAIL(close->cl_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002396 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397}
2398
2399
Benny Halevy695e12f2008-07-04 14:38:33 +03002400static __be32
Al Virob37ad282006-10-19 23:28:59 -07002401nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002403 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405 if (!nfserr) {
2406 RESERVE_SPACE(8);
2407 WRITEMEM(commit->co_verf.data, 8);
2408 ADJUST_ARGS();
2409 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002410 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411}
2412
Benny Halevy695e12f2008-07-04 14:38:33 +03002413static __be32
Al Virob37ad282006-10-19 23:28:59 -07002414nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002416 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
2418 if (!nfserr) {
2419 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002420 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 WRITE32(2);
2422 WRITE32(create->cr_bmval[0]);
2423 WRITE32(create->cr_bmval[1]);
2424 ADJUST_ARGS();
2425 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002426 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
Al Virob37ad282006-10-19 23:28:59 -07002429static __be32
2430nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
2432 struct svc_fh *fhp = getattr->ga_fhp;
2433 int buflen;
2434
2435 if (nfserr)
2436 return nfserr;
2437
2438 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2439 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
2440 resp->p, &buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002441 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (!nfserr)
2443 resp->p += buflen;
2444 return nfserr;
2445}
2446
Benny Halevy695e12f2008-07-04 14:38:33 +03002447static __be32
2448nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
Benny Halevy695e12f2008-07-04 14:38:33 +03002450 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002452 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
2454 if (!nfserr) {
2455 len = fhp->fh_handle.fh_size;
2456 RESERVE_SPACE(len + 4);
2457 WRITE32(len);
2458 WRITEMEM(&fhp->fh_handle.fh_base, len);
2459 ADJUST_ARGS();
2460 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002461 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462}
2463
2464/*
2465* Including all fields other than the name, a LOCK4denied structure requires
2466* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2467*/
2468static void
2469nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2470{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002471 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473 RESERVE_SPACE(32 + XDR_LEN(ld->ld_sop ? ld->ld_sop->so_owner.len : 0));
2474 WRITE64(ld->ld_start);
2475 WRITE64(ld->ld_length);
2476 WRITE32(ld->ld_type);
2477 if (ld->ld_sop) {
2478 WRITEMEM(&ld->ld_clientid, 8);
2479 WRITE32(ld->ld_sop->so_owner.len);
2480 WRITEMEM(ld->ld_sop->so_owner.data, ld->ld_sop->so_owner.len);
2481 kref_put(&ld->ld_sop->so_ref, nfs4_free_stateowner);
2482 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2483 WRITE64((u64)0); /* clientid */
2484 WRITE32(0); /* length of owner name */
2485 }
2486 ADJUST_ARGS();
2487}
2488
Benny Halevy695e12f2008-07-04 14:38:33 +03002489static __be32
Al Virob37ad282006-10-19 23:28:59 -07002490nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 ENCODE_SEQID_OP_HEAD;
2493
Benny Halevye2f282b2008-08-12 20:45:07 +03002494 if (!nfserr)
2495 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2496 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2498
J. Bruce Fields3a655882006-01-18 17:43:19 -08002499 ENCODE_SEQID_OP_TAIL(lock->lk_replay_owner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002500 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502
Benny Halevy695e12f2008-07-04 14:38:33 +03002503static __be32
Al Virob37ad282006-10-19 23:28:59 -07002504nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
2506 if (nfserr == nfserr_denied)
2507 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002508 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509}
2510
Benny Halevy695e12f2008-07-04 14:38:33 +03002511static __be32
Al Virob37ad282006-10-19 23:28:59 -07002512nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
2514 ENCODE_SEQID_OP_HEAD;
2515
Benny Halevye2f282b2008-08-12 20:45:07 +03002516 if (!nfserr)
2517 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 ENCODE_SEQID_OP_TAIL(locku->lu_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002520 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521}
2522
2523
Benny Halevy695e12f2008-07-04 14:38:33 +03002524static __be32
Al Virob37ad282006-10-19 23:28:59 -07002525nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002527 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 if (!nfserr) {
2530 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002531 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 ADJUST_ARGS();
2533 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002534 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535}
2536
2537
Benny Halevy695e12f2008-07-04 14:38:33 +03002538static __be32
Al Virob37ad282006-10-19 23:28:59 -07002539nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002541 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 ENCODE_SEQID_OP_HEAD;
2543
2544 if (nfserr)
2545 goto out;
2546
Benny Halevye2f282b2008-08-12 20:45:07 +03002547 nfsd4_encode_stateid(resp, &open->op_stateid);
2548 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002549 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 WRITE32(open->op_rflags);
2551 WRITE32(2);
2552 WRITE32(open->op_bmval[0]);
2553 WRITE32(open->op_bmval[1]);
2554 WRITE32(open->op_delegate_type);
2555 ADJUST_ARGS();
2556
2557 switch (open->op_delegate_type) {
2558 case NFS4_OPEN_DELEGATE_NONE:
2559 break;
2560 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002561 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2562 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002563 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565 /*
2566 * TODO: ACE's in delegations
2567 */
2568 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2569 WRITE32(0);
2570 WRITE32(0);
2571 WRITE32(0); /* XXX: is NULL principal ok? */
2572 ADJUST_ARGS();
2573 break;
2574 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002575 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2576 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 WRITE32(0);
2578
2579 /*
2580 * TODO: space_limit's in delegations
2581 */
2582 WRITE32(NFS4_LIMIT_SIZE);
2583 WRITE32(~(u32)0);
2584 WRITE32(~(u32)0);
2585
2586 /*
2587 * TODO: ACE's in delegations
2588 */
2589 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2590 WRITE32(0);
2591 WRITE32(0);
2592 WRITE32(0); /* XXX: is NULL principal ok? */
2593 ADJUST_ARGS();
2594 break;
2595 default:
2596 BUG();
2597 }
2598 /* XXX save filehandle here */
2599out:
2600 ENCODE_SEQID_OP_TAIL(open->op_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002601 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602}
2603
Benny Halevy695e12f2008-07-04 14:38:33 +03002604static __be32
Al Virob37ad282006-10-19 23:28:59 -07002605nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606{
2607 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002608
2609 if (!nfserr)
2610 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612 ENCODE_SEQID_OP_TAIL(oc->oc_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002613 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
Benny Halevy695e12f2008-07-04 14:38:33 +03002616static __be32
Al Virob37ad282006-10-19 23:28:59 -07002617nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
2619 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002620
2621 if (!nfserr)
2622 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 ENCODE_SEQID_OP_TAIL(od->od_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002625 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626}
2627
Al Virob37ad282006-10-19 23:28:59 -07002628static __be32
2629nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002630 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
2632 u32 eof;
2633 int v, pn;
2634 unsigned long maxcount;
2635 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002636 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 if (nfserr)
2639 return nfserr;
2640 if (resp->xbuf->page_len)
2641 return nfserr_resource;
2642
2643 RESERVE_SPACE(8); /* eof flag and byte count */
2644
Greg Banks7adae482006-10-04 02:15:47 -07002645 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 if (maxcount > read->rd_length)
2647 maxcount = read->rd_length;
2648
2649 len = maxcount;
2650 v = 0;
2651 while (len > 0) {
NeilBrown44524352006-10-04 02:15:46 -07002652 pn = resp->rqstp->rq_resused++;
NeilBrown3cc03b12006-10-04 02:15:47 -07002653 resp->rqstp->rq_vec[v].iov_base =
NeilBrown44524352006-10-04 02:15:46 -07002654 page_address(resp->rqstp->rq_respages[pn]);
NeilBrown3cc03b12006-10-04 02:15:47 -07002655 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002656 len < PAGE_SIZE ? len : PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 v++;
2658 len -= PAGE_SIZE;
2659 }
2660 read->rd_vlen = v;
2661
J. Bruce Fields039a87c2010-07-30 11:33:32 -04002662 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002663 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 &maxcount);
2665
2666 if (nfserr == nfserr_symlink)
2667 nfserr = nfserr_inval;
2668 if (nfserr)
2669 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002670 eof = (read->rd_offset + maxcount >=
2671 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 WRITE32(eof);
2674 WRITE32(maxcount);
2675 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002676 resp->xbuf->head[0].iov_len = (char*)p
2677 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 resp->xbuf->page_len = maxcount;
2679
NeilBrown6ed6dec2006-04-10 22:55:32 -07002680 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002681 resp->xbuf->tail[0].iov_base = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002684 RESERVE_SPACE(4);
2685 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 resp->xbuf->tail[0].iov_base += maxcount&3;
2687 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002688 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 }
2690 return 0;
2691}
2692
Al Virob37ad282006-10-19 23:28:59 -07002693static __be32
2694nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 int maxcount;
2697 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002698 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700 if (nfserr)
2701 return nfserr;
2702 if (resp->xbuf->page_len)
2703 return nfserr_resource;
2704
NeilBrown44524352006-10-04 02:15:46 -07002705 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
2707 maxcount = PAGE_SIZE;
2708 RESERVE_SPACE(4);
2709
2710 /*
2711 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2712 * if they would overflow the buffer. Is this kosher in NFSv4? If
2713 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2714 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2715 */
2716 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
2717 if (nfserr == nfserr_isdir)
2718 return nfserr_inval;
2719 if (nfserr)
2720 return nfserr;
2721
2722 WRITE32(maxcount);
2723 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002724 resp->xbuf->head[0].iov_len = (char*)p
2725 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 resp->xbuf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07002727
2728 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002729 resp->xbuf->tail[0].iov_base = p;
2730 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002732 RESERVE_SPACE(4);
2733 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 resp->xbuf->tail[0].iov_base += maxcount&3;
2735 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002736 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 }
2738 return 0;
2739}
2740
Al Virob37ad282006-10-19 23:28:59 -07002741static __be32
2742nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
2744 int maxcount;
2745 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07002746 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002747 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
2749 if (nfserr)
2750 return nfserr;
2751 if (resp->xbuf->page_len)
2752 return nfserr_resource;
2753
2754 RESERVE_SPACE(8); /* verifier */
2755 savep = p;
2756
2757 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2758 WRITE32(0);
2759 WRITE32(0);
2760 ADJUST_ARGS();
2761 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002762 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
2764 maxcount = PAGE_SIZE;
2765 if (maxcount > readdir->rd_maxcount)
2766 maxcount = readdir->rd_maxcount;
2767
2768 /*
2769 * Convert from bytes to words, account for the two words already
2770 * written, make sure to leave two words at the end for the next
2771 * pointer and eof field.
2772 */
2773 maxcount = (maxcount >> 2) - 4;
2774 if (maxcount < 0) {
2775 nfserr = nfserr_toosmall;
2776 goto err_no_verf;
2777 }
2778
NeilBrown44524352006-10-04 02:15:46 -07002779 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 readdir->common.err = 0;
2781 readdir->buflen = maxcount;
2782 readdir->buffer = page;
2783 readdir->offset = NULL;
2784
2785 offset = readdir->rd_cookie;
2786 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
2787 &offset,
2788 &readdir->common, nfsd4_encode_dirent);
2789 if (nfserr == nfs_ok &&
2790 readdir->common.err == nfserr_toosmall &&
2791 readdir->buffer == page)
2792 nfserr = nfserr_toosmall;
2793 if (nfserr == nfserr_symlink)
2794 nfserr = nfserr_notdir;
2795 if (nfserr)
2796 goto err_no_verf;
2797
2798 if (readdir->offset)
2799 xdr_encode_hyper(readdir->offset, offset);
2800
2801 p = readdir->buffer;
2802 *p++ = 0; /* no more entries */
2803 *p++ = htonl(readdir->common.err == nfserr_eof);
NeilBrown44524352006-10-04 02:15:46 -07002804 resp->xbuf->page_len = ((char*)p) - (char*)page_address(
2805 resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
NeilBrownbb6e8a92006-04-10 22:55:33 -07002807 /* Use rest of head for padding and remaining ops: */
NeilBrownbb6e8a92006-04-10 22:55:33 -07002808 resp->xbuf->tail[0].iov_base = tailbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 resp->xbuf->tail[0].iov_len = 0;
2810 resp->p = resp->xbuf->tail[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002811 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813 return 0;
2814err_no_verf:
2815 p = savep;
2816 ADJUST_ARGS();
2817 return nfserr;
2818}
2819
Benny Halevy695e12f2008-07-04 14:38:33 +03002820static __be32
Al Virob37ad282006-10-19 23:28:59 -07002821nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002823 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
2825 if (!nfserr) {
2826 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002827 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 ADJUST_ARGS();
2829 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002830 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831}
2832
Benny Halevy695e12f2008-07-04 14:38:33 +03002833static __be32
Al Virob37ad282006-10-19 23:28:59 -07002834nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002836 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838 if (!nfserr) {
2839 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002840 write_cinfo(&p, &rename->rn_sinfo);
2841 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 ADJUST_ARGS();
2843 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002844 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845}
2846
Benny Halevy695e12f2008-07-04 14:38:33 +03002847static __be32
Mi Jinlong22b6dee2010-12-27 14:29:57 +08002848nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
2849 __be32 nfserr,struct svc_export *exp)
Andy Adamsondcb488a2007-07-17 04:04:51 -07002850{
2851 int i = 0;
J. Bruce Fields4796f452007-07-17 04:04:51 -07002852 u32 nflavs;
2853 struct exp_flavor_info *flavs;
2854 struct exp_flavor_info def_flavs[2];
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002855 __be32 *p;
Andy Adamsondcb488a2007-07-17 04:04:51 -07002856
2857 if (nfserr)
2858 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07002859 if (exp->ex_nflavors) {
2860 flavs = exp->ex_flavors;
2861 nflavs = exp->ex_nflavors;
2862 } else { /* Handling of some defaults in absence of real secinfo: */
2863 flavs = def_flavs;
2864 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
2865 nflavs = 2;
2866 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
2867 flavs[1].pseudoflavor = RPC_AUTH_NULL;
2868 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
2869 nflavs = 1;
2870 flavs[0].pseudoflavor
2871 = svcauth_gss_flavor(exp->ex_client);
2872 } else {
2873 nflavs = 1;
2874 flavs[0].pseudoflavor
2875 = exp->ex_client->flavour->flavour;
2876 }
2877 }
2878
Andy Adamsondcb488a2007-07-17 04:04:51 -07002879 RESERVE_SPACE(4);
J. Bruce Fields4796f452007-07-17 04:04:51 -07002880 WRITE32(nflavs);
Andy Adamsondcb488a2007-07-17 04:04:51 -07002881 ADJUST_ARGS();
J. Bruce Fields4796f452007-07-17 04:04:51 -07002882 for (i = 0; i < nflavs; i++) {
2883 u32 flav = flavs[i].pseudoflavor;
Andy Adamsondcb488a2007-07-17 04:04:51 -07002884 struct gss_api_mech *gm = gss_mech_get_by_pseudoflavor(flav);
2885
2886 if (gm) {
2887 RESERVE_SPACE(4);
2888 WRITE32(RPC_AUTH_GSS);
2889 ADJUST_ARGS();
2890 RESERVE_SPACE(4 + gm->gm_oid.len);
2891 WRITE32(gm->gm_oid.len);
2892 WRITEMEM(gm->gm_oid.data, gm->gm_oid.len);
2893 ADJUST_ARGS();
2894 RESERVE_SPACE(4);
2895 WRITE32(0); /* qop */
2896 ADJUST_ARGS();
2897 RESERVE_SPACE(4);
2898 WRITE32(gss_pseudoflavor_to_service(gm, flav));
2899 ADJUST_ARGS();
2900 gss_mech_put(gm);
2901 } else {
2902 RESERVE_SPACE(4);
2903 WRITE32(flav);
2904 ADJUST_ARGS();
2905 }
2906 }
2907out:
2908 if (exp)
2909 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03002910 return nfserr;
Andy Adamsondcb488a2007-07-17 04:04:51 -07002911}
2912
Mi Jinlong22b6dee2010-12-27 14:29:57 +08002913static __be32
2914nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
2915 struct nfsd4_secinfo *secinfo)
2916{
2917 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
2918}
2919
2920static __be32
2921nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
2922 struct nfsd4_secinfo_no_name *secinfo)
2923{
2924 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
2925}
2926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927/*
2928 * The SETATTR encode routine is special -- it always encodes a bitmap,
2929 * regardless of the error status.
2930 */
Benny Halevy695e12f2008-07-04 14:38:33 +03002931static __be32
Al Virob37ad282006-10-19 23:28:59 -07002932nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002934 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
2936 RESERVE_SPACE(12);
2937 if (nfserr) {
2938 WRITE32(2);
2939 WRITE32(0);
2940 WRITE32(0);
2941 }
2942 else {
2943 WRITE32(2);
2944 WRITE32(setattr->sa_bmval[0]);
2945 WRITE32(setattr->sa_bmval[1]);
2946 }
2947 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03002948 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949}
2950
Benny Halevy695e12f2008-07-04 14:38:33 +03002951static __be32
Al Virob37ad282006-10-19 23:28:59 -07002952nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002954 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
2956 if (!nfserr) {
2957 RESERVE_SPACE(8 + sizeof(nfs4_verifier));
2958 WRITEMEM(&scd->se_clientid, 8);
2959 WRITEMEM(&scd->se_confirm, sizeof(nfs4_verifier));
2960 ADJUST_ARGS();
2961 }
2962 else if (nfserr == nfserr_clid_inuse) {
2963 RESERVE_SPACE(8);
2964 WRITE32(0);
2965 WRITE32(0);
2966 ADJUST_ARGS();
2967 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002968 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969}
2970
Benny Halevy695e12f2008-07-04 14:38:33 +03002971static __be32
Al Virob37ad282006-10-19 23:28:59 -07002972nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002974 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 if (!nfserr) {
2977 RESERVE_SPACE(16);
2978 WRITE32(write->wr_bytes_written);
2979 WRITE32(write->wr_how_written);
2980 WRITEMEM(write->wr_verifier.data, 8);
2981 ADJUST_ARGS();
2982 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002983 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984}
2985
Benny Halevy695e12f2008-07-04 14:38:33 +03002986static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03002987nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, int nfserr,
2988 struct nfsd4_exchange_id *exid)
2989{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002990 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03002991 char *major_id;
2992 char *server_scope;
2993 int major_id_sz;
2994 int server_scope_sz;
2995 uint64_t minor_id = 0;
2996
2997 if (nfserr)
2998 return nfserr;
2999
3000 major_id = utsname()->nodename;
3001 major_id_sz = strlen(major_id);
3002 server_scope = utsname()->nodename;
3003 server_scope_sz = strlen(server_scope);
3004
3005 RESERVE_SPACE(
3006 8 /* eir_clientid */ +
3007 4 /* eir_sequenceid */ +
3008 4 /* eir_flags */ +
3009 4 /* spr_how (SP4_NONE) */ +
3010 8 /* so_minor_id */ +
3011 4 /* so_major_id.len */ +
3012 (XDR_QUADLEN(major_id_sz) * 4) +
3013 4 /* eir_server_scope.len */ +
3014 (XDR_QUADLEN(server_scope_sz) * 4) +
3015 4 /* eir_server_impl_id.count (0) */);
3016
3017 WRITEMEM(&exid->clientid, 8);
3018 WRITE32(exid->seqid);
3019 WRITE32(exid->flags);
3020
3021 /* state_protect4_r. Currently only support SP4_NONE */
3022 BUG_ON(exid->spa_how != SP4_NONE);
3023 WRITE32(exid->spa_how);
3024
3025 /* The server_owner struct */
3026 WRITE64(minor_id); /* Minor id */
3027 /* major id */
3028 WRITE32(major_id_sz);
3029 WRITEMEM(major_id, major_id_sz);
3030
3031 /* Server scope */
3032 WRITE32(server_scope_sz);
3033 WRITEMEM(server_scope, server_scope_sz);
3034
3035 /* Implementation id */
3036 WRITE32(0); /* zero length nfs_impl_id4 array */
3037 ADJUST_ARGS();
3038 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003039}
3040
3041static __be32
3042nfsd4_encode_create_session(struct nfsd4_compoundres *resp, int nfserr,
3043 struct nfsd4_create_session *sess)
3044{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003045 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003046
3047 if (nfserr)
3048 return nfserr;
3049
3050 RESERVE_SPACE(24);
3051 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3052 WRITE32(sess->seqid);
3053 WRITE32(sess->flags);
3054 ADJUST_ARGS();
3055
3056 RESERVE_SPACE(28);
3057 WRITE32(0); /* headerpadsz */
3058 WRITE32(sess->fore_channel.maxreq_sz);
3059 WRITE32(sess->fore_channel.maxresp_sz);
3060 WRITE32(sess->fore_channel.maxresp_cached);
3061 WRITE32(sess->fore_channel.maxops);
3062 WRITE32(sess->fore_channel.maxreqs);
3063 WRITE32(sess->fore_channel.nr_rdma_attrs);
3064 ADJUST_ARGS();
3065
3066 if (sess->fore_channel.nr_rdma_attrs) {
3067 RESERVE_SPACE(4);
3068 WRITE32(sess->fore_channel.rdma_attrs);
3069 ADJUST_ARGS();
3070 }
3071
3072 RESERVE_SPACE(28);
3073 WRITE32(0); /* headerpadsz */
3074 WRITE32(sess->back_channel.maxreq_sz);
3075 WRITE32(sess->back_channel.maxresp_sz);
3076 WRITE32(sess->back_channel.maxresp_cached);
3077 WRITE32(sess->back_channel.maxops);
3078 WRITE32(sess->back_channel.maxreqs);
3079 WRITE32(sess->back_channel.nr_rdma_attrs);
3080 ADJUST_ARGS();
3081
3082 if (sess->back_channel.nr_rdma_attrs) {
3083 RESERVE_SPACE(4);
3084 WRITE32(sess->back_channel.rdma_attrs);
3085 ADJUST_ARGS();
3086 }
3087 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003088}
3089
3090static __be32
3091nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, int nfserr,
3092 struct nfsd4_destroy_session *destroy_session)
3093{
Andy Adamson2db134e2009-04-03 08:27:55 +03003094 return nfserr;
3095}
3096
Andy Adamsonbf864a32009-04-03 08:28:35 +03003097__be32
Andy Adamson2db134e2009-04-03 08:27:55 +03003098nfsd4_encode_sequence(struct nfsd4_compoundres *resp, int nfserr,
3099 struct nfsd4_sequence *seq)
3100{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003101 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003102
3103 if (nfserr)
3104 return nfserr;
3105
3106 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3107 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3108 WRITE32(seq->seqid);
3109 WRITE32(seq->slotid);
3110 WRITE32(seq->maxslots);
3111 /*
3112 * FIXME: for now:
3113 * target_maxslots = maxslots
3114 * status_flags = 0
3115 */
3116 WRITE32(seq->maxslots);
3117 WRITE32(0);
3118
3119 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003120 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003121 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003122}
3123
3124static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003125nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3126{
3127 return nfserr;
3128}
3129
3130typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3131
Andy Adamson2db134e2009-04-03 08:27:55 +03003132/*
3133 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3134 * since we don't need to filter out obsolete ops as this is
3135 * done in the decoding phase.
3136 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003137static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003138 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3139 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3140 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3141 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3142 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3143 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3144 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3145 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3146 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3147 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3148 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3149 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3150 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3151 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3152 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3153 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003154 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003155 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3156 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3157 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3158 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3159 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3160 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3161 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3162 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3163 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3164 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3165 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3166 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3167 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3168 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3169 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3170 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3171 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3172 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3173 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3174 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003175
3176 /* NFSv4.1 operations */
3177 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
3178 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
3179 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3180 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3181 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session,
3182 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3183 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3184 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3185 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3186 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3187 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3188 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003189 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003190 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3191 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
3192 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3193 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3194 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3195 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003196};
3197
Andy Adamson496c2622009-04-03 08:28:48 +03003198/*
3199 * Calculate the total amount of memory that the compound response has taken
3200 * after encoding the current operation.
3201 *
3202 * pad: add on 8 bytes for the next operation's op_code and status so that
3203 * there is room to cache a failure on the next operation.
3204 *
3205 * Compare this length to the session se_fmaxresp_cached.
3206 *
3207 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3208 * will be at least a page and will therefore hold the xdr_buf head.
3209 */
3210static int nfsd4_check_drc_limit(struct nfsd4_compoundres *resp)
3211{
3212 int status = 0;
3213 struct xdr_buf *xb = &resp->rqstp->rq_res;
3214 struct nfsd4_compoundargs *args = resp->rqstp->rq_argp;
3215 struct nfsd4_session *session = NULL;
3216 struct nfsd4_slot *slot = resp->cstate.slot;
3217 u32 length, tlen = 0, pad = 8;
3218
3219 if (!nfsd4_has_session(&resp->cstate))
3220 return status;
3221
3222 session = resp->cstate.session;
Andy Adamson557ce262009-08-28 08:45:04 -04003223 if (session == NULL || slot->sl_cachethis == 0)
Andy Adamson496c2622009-04-03 08:28:48 +03003224 return status;
3225
3226 if (resp->opcnt >= args->opcnt)
3227 pad = 0; /* this is the last operation */
3228
3229 if (xb->page_len == 0) {
3230 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3231 } else {
3232 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3233 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3234
3235 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3236 }
3237 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3238 length, xb->page_len, tlen, pad);
3239
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003240 if (length <= session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003241 return status;
3242 else
3243 return nfserr_rep_too_big_to_cache;
3244}
3245
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246void
3247nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3248{
Al Viro2ebbc012006-10-19 23:28:58 -07003249 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003250 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
3252 RESERVE_SPACE(8);
3253 WRITE32(op->opnum);
3254 statp = p++; /* to be backfilled at the end */
3255 ADJUST_ARGS();
3256
Benny Halevy695e12f2008-07-04 14:38:33 +03003257 if (op->opnum == OP_ILLEGAL)
3258 goto status;
3259 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3260 !nfsd4_enc_ops[op->opnum]);
3261 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
Andy Adamson496c2622009-04-03 08:28:48 +03003262 /* nfsd4_check_drc_limit guarantees enough room for error status */
3263 if (!op->status && nfsd4_check_drc_limit(resp))
3264 op->status = nfserr_rep_too_big_to_cache;
Benny Halevy695e12f2008-07-04 14:38:33 +03003265status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 /*
3267 * Note: We write the status directly, instead of using WRITE32(),
3268 * since it is already in network byte order.
3269 */
3270 *statp = op->status;
3271}
3272
3273/*
3274 * Encode the reply stored in the stateowner reply cache
3275 *
3276 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3277 * previously sent already encoded operation.
3278 *
3279 * called with nfs4_lock_state() held
3280 */
3281void
3282nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3283{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003284 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 struct nfs4_replay *rp = op->replay;
3286
3287 BUG_ON(!rp);
3288
3289 RESERVE_SPACE(8);
3290 WRITE32(op->opnum);
3291 *p++ = rp->rp_status; /* already xdr'ed */
3292 ADJUST_ARGS();
3293
3294 RESERVE_SPACE(rp->rp_buflen);
3295 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3296 ADJUST_ARGS();
3297}
3298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299int
Al Viro2ebbc012006-10-19 23:28:58 -07003300nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301{
3302 return xdr_ressize_check(rqstp, p);
3303}
3304
3305void nfsd4_release_compoundargs(struct nfsd4_compoundargs *args)
3306{
3307 if (args->ops != args->iops) {
3308 kfree(args->ops);
3309 args->ops = args->iops;
3310 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003311 kfree(args->tmpp);
3312 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 while (args->to_free) {
3314 struct tmpbuf *tb = args->to_free;
3315 args->to_free = tb->next;
3316 tb->release(tb->buf);
3317 kfree(tb);
3318 }
3319}
3320
3321int
Al Viro2ebbc012006-10-19 23:28:58 -07003322nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323{
Al Virob37ad282006-10-19 23:28:59 -07003324 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
3326 args->p = p;
3327 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3328 args->pagelist = rqstp->rq_arg.pages;
3329 args->pagelen = rqstp->rq_arg.page_len;
3330 args->tmpp = NULL;
3331 args->to_free = NULL;
3332 args->ops = args->iops;
3333 args->rqstp = rqstp;
3334
3335 status = nfsd4_decode_compound(args);
3336 if (status) {
3337 nfsd4_release_compoundargs(args);
3338 }
3339 return !status;
3340}
3341
3342int
Al Viro2ebbc012006-10-19 23:28:58 -07003343nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344{
3345 /*
3346 * All that remains is to write the tag and operation count...
3347 */
Andy Adamson557ce262009-08-28 08:45:04 -04003348 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 struct kvec *iov;
3350 p = resp->tagp;
3351 *p++ = htonl(resp->taglen);
3352 memcpy(p, resp->tag, resp->taglen);
3353 p += XDR_QUADLEN(resp->taglen);
3354 *p++ = htonl(resp->opcnt);
3355
3356 if (rqstp->rq_res.page_len)
3357 iov = &rqstp->rq_res.tail[0];
3358 else
3359 iov = &rqstp->rq_res.head[0];
3360 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3361 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003362 if (nfsd4_has_session(cs)) {
3363 if (cs->status != nfserr_replay_cache) {
3364 nfsd4_store_cache_entry(resp);
3365 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__);
Benny Halevydbd65a72010-05-03 19:31:33 +03003366 cs->slot->sl_inuse = false;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003367 }
Benny Halevyd7682982010-05-12 00:13:54 +03003368 /* Renew the clientid on success and on replay */
3369 release_session_client(cs->session);
J. Bruce Fields76407f72010-06-22 14:10:14 -04003370 nfsd4_put_session(cs->session);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 return 1;
3373}
3374
3375/*
3376 * Local variables:
3377 * c-basic-offset: 8
3378 * End:
3379 */