blob: 7bd57c2dbc4dfca02b9f71b45109b7cdfac2601c [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>
Bryan Schumaker17456802011-07-13 10:50:48 -040047#include <linux/pagemap.h>
J. Bruce Fields4796f452007-07-17 04:04:51 -070048#include <linux/sunrpc/svcauth_gss.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020049
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050050#include "idmap.h"
51#include "acl.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020052#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050053#include "vfs.h"
Bryan Schumaker17456802011-07-13 10:50:48 -040054#include "state.h"
J. Bruce Fields10910062011-01-24 12:11:02 -050055#include "cache.h"
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define NFSDDBG_FACILITY NFSDDBG_XDR
58
J.Bruce Fields42ca0992006-10-04 02:16:20 -070059/*
60 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
61 * directory in order to indicate to the client that a filesystem boundary is present
62 * We use a fixed fsid for a referral
63 */
64#define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
65#define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
66
Al Virob37ad282006-10-19 23:28:59 -070067static __be32
68check_filename(char *str, int len, __be32 err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 int i;
71
72 if (len == 0)
73 return nfserr_inval;
74 if (isdotent(str, len))
75 return err;
76 for (i = 0; i < len; i++)
77 if (str[i] == '/')
78 return err;
79 return 0;
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#define DECODE_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -070083 __be32 *p; \
Al Virob37ad282006-10-19 23:28:59 -070084 __be32 status
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define DECODE_TAIL \
86 status = 0; \
87out: \
88 return status; \
89xdr_error: \
Chuck Lever817cb9d2007-09-11 18:01:20 -040090 dprintk("NFSD: xdr error (%s:%d)\n", \
91 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 status = nfserr_bad_xdr; \
93 goto out
94
95#define READ32(x) (x) = ntohl(*p++)
96#define READ64(x) do { \
97 (x) = (u64)ntohl(*p++) << 32; \
98 (x) |= ntohl(*p++); \
99} while (0)
100#define READTIME(x) do { \
101 p++; \
102 (x) = ntohl(*p++); \
103 p++; \
104} while (0)
105#define READMEM(x,nbytes) do { \
106 x = (char *)p; \
107 p += XDR_QUADLEN(nbytes); \
108} while (0)
109#define SAVEMEM(x,nbytes) do { \
110 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
111 savemem(argp, p, nbytes) : \
112 (char *)p)) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400113 dprintk("NFSD: xdr error (%s:%d)\n", \
114 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 goto xdr_error; \
116 } \
117 p += XDR_QUADLEN(nbytes); \
118} while (0)
119#define COPYMEM(x,nbytes) do { \
120 memcpy((x), p, nbytes); \
121 p += XDR_QUADLEN(nbytes); \
122} while (0)
123
124/* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
125#define READ_BUF(nbytes) do { \
126 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
127 p = argp->p; \
128 argp->p += XDR_QUADLEN(nbytes); \
129 } else if (!(p = read_buf(argp, nbytes))) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400130 dprintk("NFSD: xdr error (%s:%d)\n", \
131 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 goto xdr_error; \
133 } \
134} while (0)
135
Bryan Schumaker17456802011-07-13 10:50:48 -0400136static void save_buf(struct nfsd4_compoundargs *argp, struct nfsd4_saved_compoundargs *savep)
137{
138 savep->p = argp->p;
139 savep->end = argp->end;
140 savep->pagelen = argp->pagelen;
141 savep->pagelist = argp->pagelist;
142}
143
144static void restore_buf(struct nfsd4_compoundargs *argp, struct nfsd4_saved_compoundargs *savep)
145{
146 argp->p = savep->p;
147 argp->end = savep->end;
148 argp->pagelen = savep->pagelen;
149 argp->pagelist = savep->pagelist;
150}
151
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500152static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 /* We want more bytes than seem to be available.
155 * Maybe we need a new page, maybe we have just run out
156 */
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500157 unsigned int avail = (char *)argp->end - (char *)argp->p;
Al Viro2ebbc012006-10-19 23:28:58 -0700158 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (avail + argp->pagelen < nbytes)
160 return NULL;
161 if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */
162 return NULL;
163 /* ok, we can do it with the current plus the next page */
164 if (nbytes <= sizeof(argp->tmp))
165 p = argp->tmp;
166 else {
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800167 kfree(argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
169 if (!p)
170 return NULL;
171
172 }
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500173 /*
174 * The following memcpy is safe because read_buf is always
175 * called with nbytes > avail, and the two cases above both
176 * guarantee p points to at least nbytes bytes.
177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 memcpy(p, argp->p, avail);
179 /* step to next page */
180 argp->p = page_address(argp->pagelist[0]);
181 argp->pagelist++;
182 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +1000183 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 argp->pagelen = 0;
185 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +1000186 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 argp->pagelen -= PAGE_SIZE;
188 }
189 memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
190 argp->p += XDR_QUADLEN(nbytes - avail);
191 return p;
192}
193
Andy Adamson60adfc52009-04-03 08:28:50 +0300194static int zero_clientid(clientid_t *clid)
195{
196 return (clid->cl_boot == 0) && (clid->cl_id == 0);
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static int
200defer_free(struct nfsd4_compoundargs *argp,
201 void (*release)(const void *), void *p)
202{
203 struct tmpbuf *tb;
204
205 tb = kmalloc(sizeof(*tb), GFP_KERNEL);
206 if (!tb)
207 return -ENOMEM;
208 tb->buf = p;
209 tb->release = release;
210 tb->next = argp->to_free;
211 argp->to_free = tb;
212 return 0;
213}
214
Al Viro2ebbc012006-10-19 23:28:58 -0700215static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (p == argp->tmp) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800218 p = kmalloc(nbytes, GFP_KERNEL);
219 if (!p)
220 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 memcpy(p, argp->tmp, nbytes);
222 } else {
Eric Sesterhenn73dff8b2006-10-03 23:37:14 +0200223 BUG_ON(p != argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 argp->tmpp = NULL;
225 }
226 if (defer_free(argp, kfree, p)) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800227 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return NULL;
229 } else
230 return (char *)p;
231}
232
Al Virob37ad282006-10-19 23:28:59 -0700233static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
235{
236 u32 bmlen;
237 DECODE_HEAD;
238
239 bmval[0] = 0;
240 bmval[1] = 0;
Andy Adamson7e705702009-04-03 08:29:11 +0300241 bmval[2] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 READ_BUF(4);
244 READ32(bmlen);
245 if (bmlen > 1000)
246 goto xdr_error;
247
248 READ_BUF(bmlen << 2);
249 if (bmlen > 0)
250 READ32(bmval[0]);
251 if (bmlen > 1)
252 READ32(bmval[1]);
Andy Adamson7e705702009-04-03 08:29:11 +0300253 if (bmlen > 2)
254 READ32(bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 DECODE_TAIL;
257}
258
Al Virob37ad282006-10-19 23:28:59 -0700259static __be32
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800260nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300261 struct iattr *iattr, struct nfs4_acl **acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 int expected_len, len = 0;
264 u32 dummy32;
265 char *buf;
Al Virob8dd7b92006-10-19 23:29:01 -0700266 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 DECODE_HEAD;
269 iattr->ia_valid = 0;
270 if ((status = nfsd4_decode_bitmap(argp, bmval)))
271 return status;
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 READ_BUF(4);
274 READ32(expected_len);
275
276 if (bmval[0] & FATTR4_WORD0_SIZE) {
277 READ_BUF(8);
278 len += 8;
279 READ64(iattr->ia_size);
280 iattr->ia_valid |= ATTR_SIZE;
281 }
282 if (bmval[0] & FATTR4_WORD0_ACL) {
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800283 int nace;
284 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 READ_BUF(4); len += 4;
287 READ32(nace);
288
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800289 if (nace > NFS4_ACL_MAX)
290 return nfserr_resource;
291
292 *acl = nfs4_acl_new(nace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (*acl == NULL) {
Al Virob8dd7b92006-10-19 23:29:01 -0700294 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 goto out_nfserr;
296 }
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800297 defer_free(argp, kfree, *acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800299 (*acl)->naces = nace;
300 for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 READ_BUF(16); len += 16;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800302 READ32(ace->type);
303 READ32(ace->flag);
304 READ32(ace->access_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 READ32(dummy32);
306 READ_BUF(dummy32);
307 len += XDR_QUADLEN(dummy32) << 2;
308 READMEM(buf, dummy32);
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800309 ace->whotype = nfs4_acl_get_whotype(buf, dummy32);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500310 status = nfs_ok;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800311 if (ace->whotype != NFS4_ACL_WHO_NAMED)
312 ace->who = 0;
313 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
J. Bruce Fields3c726022011-01-04 17:53:52 -0500314 status = nfsd_map_name_to_gid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800315 buf, dummy32, &ace->who);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 else
J. Bruce Fields3c726022011-01-04 17:53:52 -0500317 status = nfsd_map_name_to_uid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800318 buf, dummy32, &ace->who);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500319 if (status)
320 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322 } else
323 *acl = NULL;
324 if (bmval[1] & FATTR4_WORD1_MODE) {
325 READ_BUF(4);
326 len += 4;
327 READ32(iattr->ia_mode);
328 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
329 iattr->ia_valid |= ATTR_MODE;
330 }
331 if (bmval[1] & FATTR4_WORD1_OWNER) {
332 READ_BUF(4);
333 len += 4;
334 READ32(dummy32);
335 READ_BUF(dummy32);
336 len += (XDR_QUADLEN(dummy32) << 2);
337 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100338 if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
339 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 iattr->ia_valid |= ATTR_UID;
341 }
342 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
343 READ_BUF(4);
344 len += 4;
345 READ32(dummy32);
346 READ_BUF(dummy32);
347 len += (XDR_QUADLEN(dummy32) << 2);
348 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100349 if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
350 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 iattr->ia_valid |= ATTR_GID;
352 }
353 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
354 READ_BUF(4);
355 len += 4;
356 READ32(dummy32);
357 switch (dummy32) {
358 case NFS4_SET_TO_CLIENT_TIME:
359 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
360 all 32 bits of 'nseconds'. */
361 READ_BUF(12);
362 len += 12;
363 READ32(dummy32);
364 if (dummy32)
365 return nfserr_inval;
366 READ32(iattr->ia_atime.tv_sec);
367 READ32(iattr->ia_atime.tv_nsec);
368 if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
369 return nfserr_inval;
370 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
371 break;
372 case NFS4_SET_TO_SERVER_TIME:
373 iattr->ia_valid |= ATTR_ATIME;
374 break;
375 default:
376 goto xdr_error;
377 }
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
380 READ_BUF(4);
381 len += 4;
382 READ32(dummy32);
383 switch (dummy32) {
384 case NFS4_SET_TO_CLIENT_TIME:
385 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
386 all 32 bits of 'nseconds'. */
387 READ_BUF(12);
388 len += 12;
389 READ32(dummy32);
390 if (dummy32)
391 return nfserr_inval;
392 READ32(iattr->ia_mtime.tv_sec);
393 READ32(iattr->ia_mtime.tv_nsec);
394 if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
395 return nfserr_inval;
396 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
397 break;
398 case NFS4_SET_TO_SERVER_TIME:
399 iattr->ia_valid |= ATTR_MTIME;
400 break;
401 default:
402 goto xdr_error;
403 }
404 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800405 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
406 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
407 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2)
408 READ_BUF(expected_len - len);
409 else if (len != expected_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 goto xdr_error;
411
412 DECODE_TAIL;
413
414out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -0700415 status = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 goto out;
417}
418
Al Virob37ad282006-10-19 23:28:59 -0700419static __be32
Benny Halevye31a1b62008-08-12 20:46:18 +0300420nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
421{
422 DECODE_HEAD;
423
424 READ_BUF(sizeof(stateid_t));
425 READ32(sid->si_generation);
426 COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
427
428 DECODE_TAIL;
429}
430
431static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
433{
434 DECODE_HEAD;
435
436 READ_BUF(4);
437 READ32(access->ac_req_access);
438
439 DECODE_TAIL;
440}
441
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400442static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
443{
444 DECODE_HEAD;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400445
446 READ_BUF(NFS4_MAX_SESSIONID_LEN + 8);
447 COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
448 READ32(bcts->dir);
Bryan Schumaker6ce23572011-04-27 15:47:16 -0400449 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
450 * could help us figure out we should be using it. */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400451 DECODE_TAIL;
452}
453
Al Virob37ad282006-10-19 23:28:59 -0700454static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
456{
457 DECODE_HEAD;
458
Benny Halevye31a1b62008-08-12 20:46:18 +0300459 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300461 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 DECODE_TAIL;
464}
465
466
Al Virob37ad282006-10-19 23:28:59 -0700467static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
469{
470 DECODE_HEAD;
471
472 READ_BUF(12);
473 READ64(commit->co_offset);
474 READ32(commit->co_count);
475
476 DECODE_TAIL;
477}
478
Al Virob37ad282006-10-19 23:28:59 -0700479static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
481{
482 DECODE_HEAD;
483
484 READ_BUF(4);
485 READ32(create->cr_type);
486 switch (create->cr_type) {
487 case NF4LNK:
488 READ_BUF(4);
489 READ32(create->cr_linklen);
490 READ_BUF(create->cr_linklen);
491 SAVEMEM(create->cr_linkname, create->cr_linklen);
492 break;
493 case NF4BLK:
494 case NF4CHR:
495 READ_BUF(8);
496 READ32(create->cr_specdata1);
497 READ32(create->cr_specdata2);
498 break;
499 case NF4SOCK:
500 case NF4FIFO:
501 case NF4DIR:
502 default:
503 break;
504 }
505
506 READ_BUF(4);
507 READ32(create->cr_namelen);
508 READ_BUF(create->cr_namelen);
509 SAVEMEM(create->cr_name, create->cr_namelen);
510 if ((status = check_filename(create->cr_name, create->cr_namelen, nfserr_inval)))
511 return status;
512
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800513 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
514 &create->cr_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300515 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto out;
517
518 DECODE_TAIL;
519}
520
Al Virob37ad282006-10-19 23:28:59 -0700521static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
523{
Benny Halevye31a1b62008-08-12 20:46:18 +0300524 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Al Virob37ad282006-10-19 23:28:59 -0700527static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
529{
530 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
531}
532
Al Virob37ad282006-10-19 23:28:59 -0700533static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
535{
536 DECODE_HEAD;
537
538 READ_BUF(4);
539 READ32(link->li_namelen);
540 READ_BUF(link->li_namelen);
541 SAVEMEM(link->li_name, link->li_namelen);
542 if ((status = check_filename(link->li_name, link->li_namelen, nfserr_inval)))
543 return status;
544
545 DECODE_TAIL;
546}
547
Al Virob37ad282006-10-19 23:28:59 -0700548static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
550{
551 DECODE_HEAD;
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /*
554 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
555 */
556 READ_BUF(28);
557 READ32(lock->lk_type);
558 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
559 goto xdr_error;
560 READ32(lock->lk_reclaim);
561 READ64(lock->lk_offset);
562 READ64(lock->lk_length);
563 READ32(lock->lk_is_new);
564
565 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300566 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300568 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
569 if (status)
570 return status;
571 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 READ32(lock->lk_new_lock_seqid);
573 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
574 READ32(lock->lk_new_owner.len);
575 READ_BUF(lock->lk_new_owner.len);
576 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
577 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300578 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
579 if (status)
580 return status;
581 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 READ32(lock->lk_old_lock_seqid);
583 }
584
585 DECODE_TAIL;
586}
587
Al Virob37ad282006-10-19 23:28:59 -0700588static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
590{
591 DECODE_HEAD;
592
593 READ_BUF(32);
594 READ32(lockt->lt_type);
595 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
596 goto xdr_error;
597 READ64(lockt->lt_offset);
598 READ64(lockt->lt_length);
599 COPYMEM(&lockt->lt_clientid, 8);
600 READ32(lockt->lt_owner.len);
601 READ_BUF(lockt->lt_owner.len);
602 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
603
604 DECODE_TAIL;
605}
606
Al Virob37ad282006-10-19 23:28:59 -0700607static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
609{
610 DECODE_HEAD;
611
Benny Halevye31a1b62008-08-12 20:46:18 +0300612 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 READ32(locku->lu_type);
614 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
615 goto xdr_error;
616 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300617 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
618 if (status)
619 return status;
620 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 READ64(locku->lu_offset);
622 READ64(locku->lu_length);
623
624 DECODE_TAIL;
625}
626
Al Virob37ad282006-10-19 23:28:59 -0700627static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
629{
630 DECODE_HEAD;
631
632 READ_BUF(4);
633 READ32(lookup->lo_len);
634 READ_BUF(lookup->lo_len);
635 SAVEMEM(lookup->lo_name, lookup->lo_len);
636 if ((status = check_filename(lookup->lo_name, lookup->lo_len, nfserr_noent)))
637 return status;
638
639 DECODE_TAIL;
640}
641
Al Virob37ad282006-10-19 23:28:59 -0700642static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
644{
645 DECODE_HEAD;
646
647 memset(open->op_bmval, 0, sizeof(open->op_bmval));
648 open->op_iattr.ia_valid = 0;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400649 open->op_openowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651 /* seqid, share_access, share_deny, clientid, ownerlen */
652 READ_BUF(16 + sizeof(clientid_t));
653 READ32(open->op_seqid);
654 READ32(open->op_share_access);
655 READ32(open->op_share_deny);
656 COPYMEM(&open->op_clientid, sizeof(clientid_t));
657 READ32(open->op_owner.len);
658
659 /* owner, open_flag */
660 READ_BUF(open->op_owner.len + 4);
661 SAVEMEM(open->op_owner.data, open->op_owner.len);
662 READ32(open->op_create);
663 switch (open->op_create) {
664 case NFS4_OPEN_NOCREATE:
665 break;
666 case NFS4_OPEN_CREATE:
667 READ_BUF(4);
668 READ32(open->op_createmode);
669 switch (open->op_createmode) {
670 case NFS4_CREATE_UNCHECKED:
671 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300672 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800673 &open->op_iattr, &open->op_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300674 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 goto out;
676 break;
677 case NFS4_CREATE_EXCLUSIVE:
678 READ_BUF(8);
679 COPYMEM(open->op_verf.data, 8);
680 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300681 case NFS4_CREATE_EXCLUSIVE4_1:
682 if (argp->minorversion < 1)
683 goto xdr_error;
684 READ_BUF(8);
685 COPYMEM(open->op_verf.data, 8);
686 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800687 &open->op_iattr, &open->op_acl);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300688 if (status)
689 goto out;
690 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 default:
692 goto xdr_error;
693 }
694 break;
695 default:
696 goto xdr_error;
697 }
698
699 /* open_claim */
700 READ_BUF(4);
701 READ32(open->op_claim_type);
702 switch (open->op_claim_type) {
703 case NFS4_OPEN_CLAIM_NULL:
704 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
705 READ_BUF(4);
706 READ32(open->op_fname.len);
707 READ_BUF(open->op_fname.len);
708 SAVEMEM(open->op_fname.data, open->op_fname.len);
709 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
710 return status;
711 break;
712 case NFS4_OPEN_CLAIM_PREVIOUS:
713 READ_BUF(4);
714 READ32(open->op_delegate_type);
715 break;
716 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300717 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
718 if (status)
719 return status;
720 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 READ32(open->op_fname.len);
722 READ_BUF(open->op_fname.len);
723 SAVEMEM(open->op_fname.data, open->op_fname.len);
724 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
725 return status;
726 break;
727 default:
728 goto xdr_error;
729 }
730
731 DECODE_TAIL;
732}
733
Al Virob37ad282006-10-19 23:28:59 -0700734static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
736{
737 DECODE_HEAD;
738
Benny Halevye31a1b62008-08-12 20:46:18 +0300739 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
740 if (status)
741 return status;
742 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 READ32(open_conf->oc_seqid);
744
745 DECODE_TAIL;
746}
747
Al Virob37ad282006-10-19 23:28:59 -0700748static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
750{
751 DECODE_HEAD;
752
Benny Halevye31a1b62008-08-12 20:46:18 +0300753 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
754 if (status)
755 return status;
756 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 READ32(open_down->od_seqid);
758 READ32(open_down->od_share_access);
759 READ32(open_down->od_share_deny);
760
761 DECODE_TAIL;
762}
763
Al Virob37ad282006-10-19 23:28:59 -0700764static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
766{
767 DECODE_HEAD;
768
769 READ_BUF(4);
770 READ32(putfh->pf_fhlen);
771 if (putfh->pf_fhlen > NFS4_FHSIZE)
772 goto xdr_error;
773 READ_BUF(putfh->pf_fhlen);
774 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
775
776 DECODE_TAIL;
777}
778
Al Virob37ad282006-10-19 23:28:59 -0700779static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
781{
782 DECODE_HEAD;
783
Benny Halevye31a1b62008-08-12 20:46:18 +0300784 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
785 if (status)
786 return status;
787 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 READ64(read->rd_offset);
789 READ32(read->rd_length);
790
791 DECODE_TAIL;
792}
793
Al Virob37ad282006-10-19 23:28:59 -0700794static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
796{
797 DECODE_HEAD;
798
799 READ_BUF(24);
800 READ64(readdir->rd_cookie);
801 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
802 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
803 READ32(readdir->rd_maxcount);
804 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
805 goto out;
806
807 DECODE_TAIL;
808}
809
Al Virob37ad282006-10-19 23:28:59 -0700810static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
812{
813 DECODE_HEAD;
814
815 READ_BUF(4);
816 READ32(remove->rm_namelen);
817 READ_BUF(remove->rm_namelen);
818 SAVEMEM(remove->rm_name, remove->rm_namelen);
819 if ((status = check_filename(remove->rm_name, remove->rm_namelen, nfserr_noent)))
820 return status;
821
822 DECODE_TAIL;
823}
824
Al Virob37ad282006-10-19 23:28:59 -0700825static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
827{
828 DECODE_HEAD;
829
830 READ_BUF(4);
831 READ32(rename->rn_snamelen);
832 READ_BUF(rename->rn_snamelen + 4);
833 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
834 READ32(rename->rn_tnamelen);
835 READ_BUF(rename->rn_tnamelen);
836 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
837 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen, nfserr_noent)))
838 return status;
839 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen, nfserr_inval)))
840 return status;
841
842 DECODE_TAIL;
843}
844
Al Virob37ad282006-10-19 23:28:59 -0700845static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
847{
848 DECODE_HEAD;
849
850 READ_BUF(sizeof(clientid_t));
851 COPYMEM(clientid, sizeof(clientid_t));
852
853 DECODE_TAIL;
854}
855
Al Virob37ad282006-10-19 23:28:59 -0700856static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700857nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
858 struct nfsd4_secinfo *secinfo)
859{
860 DECODE_HEAD;
861
862 READ_BUF(4);
863 READ32(secinfo->si_namelen);
864 READ_BUF(secinfo->si_namelen);
865 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
866 status = check_filename(secinfo->si_name, secinfo->si_namelen,
867 nfserr_noent);
868 if (status)
869 return status;
870 DECODE_TAIL;
871}
872
873static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500874nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
875 struct nfsd4_secinfo_no_name *sin)
876{
877 DECODE_HEAD;
878
879 READ_BUF(4);
880 READ32(sin->sin_style);
881 DECODE_TAIL;
882}
883
884static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
886{
Benny Halevye31a1b62008-08-12 20:46:18 +0300887 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Benny Halevye31a1b62008-08-12 20:46:18 +0300889 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
890 if (status)
891 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800892 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
893 &setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Al Virob37ad282006-10-19 23:28:59 -0700896static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
898{
899 DECODE_HEAD;
900
901 READ_BUF(12);
902 COPYMEM(setclientid->se_verf.data, 8);
903 READ32(setclientid->se_namelen);
904
905 READ_BUF(setclientid->se_namelen + 8);
906 SAVEMEM(setclientid->se_name, setclientid->se_namelen);
907 READ32(setclientid->se_callback_prog);
908 READ32(setclientid->se_callback_netid_len);
909
910 READ_BUF(setclientid->se_callback_netid_len + 4);
911 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
912 READ32(setclientid->se_callback_addr_len);
913
914 READ_BUF(setclientid->se_callback_addr_len + 4);
915 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
916 READ32(setclientid->se_callback_ident);
917
918 DECODE_TAIL;
919}
920
Al Virob37ad282006-10-19 23:28:59 -0700921static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
923{
924 DECODE_HEAD;
925
926 READ_BUF(8 + sizeof(nfs4_verifier));
927 COPYMEM(&scd_c->sc_clientid, 8);
928 COPYMEM(&scd_c->sc_confirm, sizeof(nfs4_verifier));
929
930 DECODE_TAIL;
931}
932
933/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -0700934static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
936{
937#if 0
938 struct nfsd4_compoundargs save = {
939 .p = argp->p,
940 .end = argp->end,
941 .rqstp = argp->rqstp,
942 };
943 u32 ve_bmval[2];
944 struct iattr ve_iattr; /* request */
945 struct nfs4_acl *ve_acl; /* request */
946#endif
947 DECODE_HEAD;
948
949 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
950 goto out;
951
952 /* For convenience's sake, we compare raw xdr'd attributes in
953 * nfsd4_proc_verify; however we still decode here just to return
954 * correct error in case of bad xdr. */
955#if 0
956 status = nfsd4_decode_fattr(ve_bmval, &ve_iattr, &ve_acl);
957 if (status == nfserr_inval) {
958 status = nfserrno(status);
959 goto out;
960 }
961#endif
962 READ_BUF(4);
963 READ32(verify->ve_attrlen);
964 READ_BUF(verify->ve_attrlen);
965 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
966
967 DECODE_TAIL;
968}
969
Al Virob37ad282006-10-19 23:28:59 -0700970static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
972{
973 int avail;
974 int v;
975 int len;
976 DECODE_HEAD;
977
Benny Halevye31a1b62008-08-12 20:46:18 +0300978 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
979 if (status)
980 return status;
981 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 READ64(write->wr_offset);
983 READ32(write->wr_stable_how);
984 if (write->wr_stable_how > 2)
985 goto xdr_error;
986 READ32(write->wr_buflen);
987
988 /* Sorry .. no magic macros for this.. *
989 * READ_BUF(write->wr_buflen);
990 * SAVEMEM(write->wr_buf, write->wr_buflen);
991 */
992 avail = (char*)argp->end - (char*)argp->p;
993 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -0400994 dprintk("NFSD: xdr error (%s:%d)\n",
995 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 goto xdr_error;
997 }
NeilBrown3cc03b12006-10-04 02:15:47 -0700998 argp->rqstp->rq_vec[0].iov_base = p;
999 argp->rqstp->rq_vec[0].iov_len = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 v = 0;
1001 len = write->wr_buflen;
NeilBrown3cc03b12006-10-04 02:15:47 -07001002 while (len > argp->rqstp->rq_vec[v].iov_len) {
1003 len -= argp->rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -07001005 argp->rqstp->rq_vec[v].iov_base = page_address(argp->pagelist[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 argp->pagelist++;
1007 if (argp->pagelen >= PAGE_SIZE) {
NeilBrown3cc03b12006-10-04 02:15:47 -07001008 argp->rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 argp->pagelen -= PAGE_SIZE;
1010 } else {
NeilBrown3cc03b12006-10-04 02:15:47 -07001011 argp->rqstp->rq_vec[v].iov_len = argp->pagelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 argp->pagelen -= len;
1013 }
1014 }
Al Viro2ebbc012006-10-19 23:28:58 -07001015 argp->end = (__be32*) (argp->rqstp->rq_vec[v].iov_base + argp->rqstp->rq_vec[v].iov_len);
1016 argp->p = (__be32*) (argp->rqstp->rq_vec[v].iov_base + (XDR_QUADLEN(len) << 2));
NeilBrown3cc03b12006-10-04 02:15:47 -07001017 argp->rqstp->rq_vec[v].iov_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 write->wr_vlen = v+1;
1019
1020 DECODE_TAIL;
1021}
1022
Al Virob37ad282006-10-19 23:28:59 -07001023static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1025{
1026 DECODE_HEAD;
1027
1028 READ_BUF(12);
1029 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1030 READ32(rlockowner->rl_owner.len);
1031 READ_BUF(rlockowner->rl_owner.len);
1032 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1033
Andy Adamson60adfc52009-04-03 08:28:50 +03001034 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1035 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 DECODE_TAIL;
1037}
1038
Al Virob37ad282006-10-19 23:28:59 -07001039static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001040nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001041 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001042{
Mi Jinlong5afa0402010-11-09 09:39:23 +08001043 int dummy, tmp;
Andy Adamson0733d212009-04-03 08:28:01 +03001044 DECODE_HEAD;
1045
1046 READ_BUF(NFS4_VERIFIER_SIZE);
1047 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1048
1049 READ_BUF(4);
1050 READ32(exid->clname.len);
1051
1052 READ_BUF(exid->clname.len);
1053 SAVEMEM(exid->clname.data, exid->clname.len);
1054
1055 READ_BUF(4);
1056 READ32(exid->flags);
1057
1058 /* Ignore state_protect4_a */
1059 READ_BUF(4);
1060 READ32(exid->spa_how);
1061 switch (exid->spa_how) {
1062 case SP4_NONE:
1063 break;
1064 case SP4_MACH_CRED:
1065 /* spo_must_enforce */
1066 READ_BUF(4);
1067 READ32(dummy);
1068 READ_BUF(dummy * 4);
1069 p += dummy;
1070
1071 /* spo_must_allow */
1072 READ_BUF(4);
1073 READ32(dummy);
1074 READ_BUF(dummy * 4);
1075 p += dummy;
1076 break;
1077 case SP4_SSV:
1078 /* ssp_ops */
1079 READ_BUF(4);
1080 READ32(dummy);
1081 READ_BUF(dummy * 4);
1082 p += dummy;
1083
1084 READ_BUF(4);
1085 READ32(dummy);
1086 READ_BUF(dummy * 4);
1087 p += dummy;
1088
1089 /* ssp_hash_algs<> */
1090 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001091 READ32(tmp);
1092 while (tmp--) {
1093 READ_BUF(4);
1094 READ32(dummy);
1095 READ_BUF(dummy);
1096 p += XDR_QUADLEN(dummy);
1097 }
Andy Adamson0733d212009-04-03 08:28:01 +03001098
1099 /* ssp_encr_algs<> */
1100 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001101 READ32(tmp);
1102 while (tmp--) {
1103 READ_BUF(4);
1104 READ32(dummy);
1105 READ_BUF(dummy);
1106 p += XDR_QUADLEN(dummy);
1107 }
Andy Adamson0733d212009-04-03 08:28:01 +03001108
1109 /* ssp_window and ssp_num_gss_handles */
1110 READ_BUF(8);
1111 READ32(dummy);
1112 READ32(dummy);
1113 break;
1114 default:
1115 goto xdr_error;
1116 }
1117
1118 /* Ignore Implementation ID */
1119 READ_BUF(4); /* nfs_impl_id4 array length */
1120 READ32(dummy);
1121
1122 if (dummy > 1)
1123 goto xdr_error;
1124
1125 if (dummy == 1) {
1126 /* nii_domain */
1127 READ_BUF(4);
1128 READ32(dummy);
1129 READ_BUF(dummy);
1130 p += XDR_QUADLEN(dummy);
1131
1132 /* nii_name */
1133 READ_BUF(4);
1134 READ32(dummy);
1135 READ_BUF(dummy);
1136 p += XDR_QUADLEN(dummy);
1137
1138 /* nii_date */
1139 READ_BUF(12);
1140 p += 3;
1141 }
1142 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001143}
1144
1145static __be32
1146nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1147 struct nfsd4_create_session *sess)
1148{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001149 DECODE_HEAD;
1150
1151 u32 dummy;
1152 char *machine_name;
Mi Jinlong5a02ab72011-03-11 12:13:55 +08001153 int i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001154 int nr_secflavs;
1155
1156 READ_BUF(16);
1157 COPYMEM(&sess->clientid, 8);
1158 READ32(sess->seqid);
1159 READ32(sess->flags);
1160
1161 /* Fore channel attrs */
1162 READ_BUF(28);
1163 READ32(dummy); /* headerpadsz is always 0 */
1164 READ32(sess->fore_channel.maxreq_sz);
1165 READ32(sess->fore_channel.maxresp_sz);
1166 READ32(sess->fore_channel.maxresp_cached);
1167 READ32(sess->fore_channel.maxops);
1168 READ32(sess->fore_channel.maxreqs);
1169 READ32(sess->fore_channel.nr_rdma_attrs);
1170 if (sess->fore_channel.nr_rdma_attrs == 1) {
1171 READ_BUF(4);
1172 READ32(sess->fore_channel.rdma_attrs);
1173 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1174 dprintk("Too many fore channel attr bitmaps!\n");
1175 goto xdr_error;
1176 }
1177
1178 /* Back channel attrs */
1179 READ_BUF(28);
1180 READ32(dummy); /* headerpadsz is always 0 */
1181 READ32(sess->back_channel.maxreq_sz);
1182 READ32(sess->back_channel.maxresp_sz);
1183 READ32(sess->back_channel.maxresp_cached);
1184 READ32(sess->back_channel.maxops);
1185 READ32(sess->back_channel.maxreqs);
1186 READ32(sess->back_channel.nr_rdma_attrs);
1187 if (sess->back_channel.nr_rdma_attrs == 1) {
1188 READ_BUF(4);
1189 READ32(sess->back_channel.rdma_attrs);
1190 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1191 dprintk("Too many back channel attr bitmaps!\n");
1192 goto xdr_error;
1193 }
1194
1195 READ_BUF(8);
1196 READ32(sess->callback_prog);
1197
1198 /* callback_sec_params4 */
1199 READ32(nr_secflavs);
1200 for (i = 0; i < nr_secflavs; ++i) {
1201 READ_BUF(4);
1202 READ32(dummy);
1203 switch (dummy) {
1204 case RPC_AUTH_NULL:
1205 /* Nothing to read */
1206 break;
1207 case RPC_AUTH_UNIX:
1208 READ_BUF(8);
1209 /* stamp */
1210 READ32(dummy);
1211
1212 /* machine name */
1213 READ32(dummy);
1214 READ_BUF(dummy);
1215 SAVEMEM(machine_name, dummy);
1216
1217 /* uid, gid */
1218 READ_BUF(8);
1219 READ32(sess->uid);
1220 READ32(sess->gid);
1221
1222 /* more gids */
1223 READ_BUF(4);
1224 READ32(dummy);
1225 READ_BUF(dummy * 4);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001226 break;
1227 case RPC_AUTH_GSS:
1228 dprintk("RPC_AUTH_GSS callback secflavor "
1229 "not supported!\n");
1230 READ_BUF(8);
1231 /* gcbp_service */
1232 READ32(dummy);
1233 /* gcbp_handle_from_server */
1234 READ32(dummy);
1235 READ_BUF(dummy);
1236 p += XDR_QUADLEN(dummy);
1237 /* gcbp_handle_from_client */
1238 READ_BUF(4);
1239 READ32(dummy);
1240 READ_BUF(dummy);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001241 break;
1242 default:
1243 dprintk("Illegal callback secflavor\n");
1244 return nfserr_inval;
1245 }
1246 }
1247 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001248}
1249
1250static __be32
1251nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1252 struct nfsd4_destroy_session *destroy_session)
1253{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001254 DECODE_HEAD;
1255 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1256 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1257
1258 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001259}
1260
1261static __be32
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001262nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp,
1263 struct nfsd4_free_stateid *free_stateid)
1264{
1265 DECODE_HEAD;
1266
1267 READ_BUF(sizeof(stateid_t));
1268 READ32(free_stateid->fr_stateid.si_generation);
1269 COPYMEM(&free_stateid->fr_stateid.si_opaque, sizeof(stateid_opaque_t));
1270
1271 DECODE_TAIL;
1272}
1273
1274static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001275nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1276 struct nfsd4_sequence *seq)
1277{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001278 DECODE_HEAD;
1279
1280 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1281 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1282 READ32(seq->seqid);
1283 READ32(seq->slotid);
1284 READ32(seq->maxslots);
1285 READ32(seq->cachethis);
1286
1287 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001288}
1289
Bryan Schumaker17456802011-07-13 10:50:48 -04001290static __be32
1291nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid)
1292{
1293 unsigned int nbytes;
1294 stateid_t si;
1295 int i;
1296 __be32 *p;
1297 __be32 status;
1298
1299 READ_BUF(4);
1300 test_stateid->ts_num_ids = ntohl(*p++);
1301
1302 nbytes = test_stateid->ts_num_ids * sizeof(stateid_t);
1303 if (nbytes > (u32)((char *)argp->end - (char *)argp->p))
1304 goto xdr_error;
1305
1306 test_stateid->ts_saved_args = argp;
1307 save_buf(argp, &test_stateid->ts_savedp);
1308
1309 for (i = 0; i < test_stateid->ts_num_ids; i++) {
1310 status = nfsd4_decode_stateid(argp, &si);
1311 if (status)
1312 return status;
1313 }
1314
1315 status = 0;
1316out:
1317 return status;
1318xdr_error:
1319 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__, __LINE__);
1320 status = nfserr_bad_xdr;
1321 goto out;
1322}
1323
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001324static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1325{
1326 DECODE_HEAD;
1327
1328 READ_BUF(4);
1329 READ32(rc->rca_one_fs);
1330
1331 DECODE_TAIL;
1332}
1333
Andy Adamson2db134e2009-04-03 08:27:55 +03001334static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001335nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1336{
1337 return nfs_ok;
1338}
1339
Benny Halevy3c375c62008-07-02 11:14:01 +03001340static __be32
1341nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1342{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001343 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001344}
1345
Benny Halevy347e0ad2008-07-02 11:13:41 +03001346typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1347
1348static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001349 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1350 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1351 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1352 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1353 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1354 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1355 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1356 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1357 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1358 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1359 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1360 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1361 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1362 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1363 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1364 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1365 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1366 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1367 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1368 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001369 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001370 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1371 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1372 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1373 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1374 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1375 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1376 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1377 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1378 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1379 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1380 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1381 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1382 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1383 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1384 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1385 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Benny Halevy347e0ad2008-07-02 11:13:41 +03001386};
1387
Andy Adamson2db134e2009-04-03 08:27:55 +03001388static nfsd4_dec nfsd41_dec_ops[] = {
Randy Dunlap9064caa2009-04-28 16:48:25 -07001389 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1390 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1391 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1392 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1393 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1394 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1395 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1396 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1397 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1398 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1399 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1400 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1401 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1402 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1403 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1404 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1405 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1406 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp,
1407 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1408 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
1409 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp,
1410 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1411 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1412 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1413 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1414 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1415 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1416 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp,
1417 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1418 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1419 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1420 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1421 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1422 [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp,
1423 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1424 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1425 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001426
1427 /* new operations for NFSv4.1 */
Randy Dunlap9064caa2009-04-28 16:48:25 -07001428 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001429 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001430 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1431 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1432 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001433 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001434 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1435 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1436 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1437 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1438 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1439 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001440 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001441 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1442 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
Bryan Schumaker17456802011-07-13 10:50:48 -04001443 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001444 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1445 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001446 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Andy Adamson2db134e2009-04-03 08:27:55 +03001447};
1448
Benny Halevyf2feb962008-07-02 11:14:22 +03001449struct nfsd4_minorversion_ops {
1450 nfsd4_dec *decoders;
1451 int nops;
1452};
1453
1454static struct nfsd4_minorversion_ops nfsd4_minorversion[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001455 [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) },
Andy Adamson2db134e2009-04-03 08:27:55 +03001456 [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Benny Halevyf2feb962008-07-02 11:14:22 +03001457};
1458
Benny Halevy347e0ad2008-07-02 11:13:41 +03001459static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1461{
1462 DECODE_HEAD;
1463 struct nfsd4_op *op;
Benny Halevyf2feb962008-07-02 11:14:22 +03001464 struct nfsd4_minorversion_ops *ops;
J. Bruce Fields10910062011-01-24 12:11:02 -05001465 bool cachethis = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 int i;
1467
1468 /*
1469 * XXX: According to spec, we should check the tag
1470 * for UTF-8 compliance. I'm postponing this for
1471 * now because it seems that some clients do use
1472 * binary tags.
1473 */
1474 READ_BUF(4);
1475 READ32(argp->taglen);
1476 READ_BUF(argp->taglen + 8);
1477 SAVEMEM(argp->tag, argp->taglen);
1478 READ32(argp->minorversion);
1479 READ32(argp->opcnt);
1480
1481 if (argp->taglen > NFSD4_MAX_TAGLEN)
1482 goto xdr_error;
1483 if (argp->opcnt > 100)
1484 goto xdr_error;
1485
Tobias Klausere8c96f82006-03-24 03:15:34 -08001486 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1488 if (!argp->ops) {
1489 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001490 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 goto xdr_error;
1492 }
1493 }
1494
Benny Halevyf2feb962008-07-02 11:14:22 +03001495 if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion))
Benny Halevy30cff1f2008-07-02 11:13:18 +03001496 argp->opcnt = 0;
1497
Benny Halevyf2feb962008-07-02 11:14:22 +03001498 ops = &nfsd4_minorversion[argp->minorversion];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 for (i = 0; i < argp->opcnt; i++) {
1500 op = &argp->ops[i];
1501 op->replay = NULL;
1502
1503 /*
1504 * We can't use READ_BUF() here because we need to handle
1505 * a missing opcode as an OP_WRITE + 1. So we need to check
1506 * to see if we're truly at the end of our buffer or if there
1507 * is another page we need to flip to.
1508 */
1509
1510 if (argp->p == argp->end) {
1511 if (argp->pagelen < 4) {
1512 /* There isn't an opcode still on the wire */
1513 op->opnum = OP_WRITE + 1;
1514 op->status = nfserr_bad_xdr;
1515 argp->opcnt = i+1;
1516 break;
1517 }
1518
1519 /*
1520 * False alarm. We just hit a page boundary, but there
1521 * is still data available. Move pointer across page
1522 * boundary. *snip from READ_BUF*
1523 */
1524 argp->p = page_address(argp->pagelist[0]);
1525 argp->pagelist++;
1526 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +10001527 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 argp->pagelen = 0;
1529 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +10001530 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 argp->pagelen -= PAGE_SIZE;
1532 }
1533 }
1534 op->opnum = ntohl(*argp->p++);
1535
Ricardo Labiagade3cab72009-12-11 20:03:27 -08001536 if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP)
Benny Halevyf2feb962008-07-02 11:14:22 +03001537 op->status = ops->decoders[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001538 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 op->opnum = OP_ILLEGAL;
1540 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542
1543 if (op->status) {
1544 argp->opcnt = i+1;
1545 break;
1546 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001547 /*
1548 * We'll try to cache the result in the DRC if any one
1549 * op in the compound wants to be cached:
1550 */
1551 cachethis |= nfsd4_cache_this_op(op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001553 /* Sessions make the DRC unnecessary: */
1554 if (argp->minorversion)
1555 cachethis = false;
1556 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 DECODE_TAIL;
1559}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561#define WRITE32(n) *p++ = htonl(n)
1562#define WRITE64(n) do { \
1563 *p++ = htonl((u32)((n) >> 32)); \
1564 *p++ = htonl((u32)(n)); \
1565} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001566#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1568 memcpy(p, ptr, nbytes); \
1569 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001570}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001571
1572static void write32(__be32 **p, u32 n)
1573{
1574 *(*p)++ = n;
1575}
1576
1577static void write64(__be32 **p, u64 n)
1578{
1579 write32(p, (u32)(n >> 32));
1580 write32(p, (u32)n);
1581}
1582
1583static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1584{
1585 if (IS_I_VERSION(inode)) {
1586 write64(p, inode->i_version);
1587 } else {
1588 write32(p, stat->ctime.tv_sec);
1589 write32(p, stat->ctime.tv_nsec);
1590 }
1591}
1592
1593static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1594{
1595 write32(p, c->atomic);
1596 if (c->change_supported) {
1597 write64(p, c->before_change);
1598 write64(p, c->after_change);
1599 } else {
1600 write32(p, c->before_ctime_sec);
1601 write32(p, c->before_ctime_nsec);
1602 write32(p, c->after_ctime_sec);
1603 write32(p, c->after_ctime_nsec);
1604 }
1605}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607#define RESERVE_SPACE(nbytes) do { \
1608 p = resp->p; \
1609 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1610} while (0)
1611#define ADJUST_ARGS() resp->p = p
1612
1613/*
1614 * Header routine to setup seqid operation replay cache
1615 */
1616#define ENCODE_SEQID_OP_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -07001617 __be32 *save; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 \
1619 save = resp->p;
1620
1621/*
NeilBrown7fb64ce2005-07-07 17:59:20 -07001622 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1623 * is where sequence id's are incremented, and the replay cache is filled.
1624 * Note that we increment sequence id's here, at the last moment, so we're sure
1625 * we know whether the error to be returned is a sequence id mutating error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 */
1627
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04001628static void encode_seqid_op_tail(struct nfsd4_compoundres *resp, __be32 *save, __be32 nfserr)
1629{
1630 struct nfs4_stateowner *stateowner = resp->cstate.replay_owner;
1631
1632 if (seqid_mutating_err(ntohl(nfserr)) && stateowner) {
1633 stateowner->so_seqid++;
1634 stateowner->so_replay.rp_status = nfserr;
1635 stateowner->so_replay.rp_buflen =
1636 (char *)resp->p - (char *)save;
1637 memcpy(stateowner->so_replay.rp_buf, save,
1638 stateowner->so_replay.rp_buflen);
J. Bruce Fields38c387b2011-09-16 17:42:48 -04001639 nfsd4_purge_closed_stateid(stateowner);
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04001640 }
1641}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001643/* Encode as an array of strings the string given with components
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001644 * separated @sep.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001645 */
Al Virob37ad282006-10-19 23:28:59 -07001646static __be32 nfsd4_encode_components(char sep, char *components,
Al Viro2ebbc012006-10-19 23:28:58 -07001647 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001648{
Al Viro2ebbc012006-10-19 23:28:58 -07001649 __be32 *p = *pp;
1650 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001651 int strlen, count=0;
1652 char *str, *end;
1653
1654 dprintk("nfsd4_encode_components(%s)\n", components);
1655 if ((*buflen -= 4) < 0)
1656 return nfserr_resource;
1657 WRITE32(0); /* We will fill this in with @count later */
1658 end = str = components;
1659 while (*end) {
1660 for (; *end && (*end != sep); end++)
1661 ; /* Point to end of component */
1662 strlen = end - str;
1663 if (strlen) {
1664 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1665 return nfserr_resource;
1666 WRITE32(strlen);
1667 WRITEMEM(str, strlen);
1668 count++;
1669 }
1670 else
1671 end++;
1672 str = end;
1673 }
1674 *pp = p;
1675 p = countp;
1676 WRITE32(count);
1677 return 0;
1678}
1679
1680/*
1681 * encode a location element of a fs_locations structure
1682 */
Al Virob37ad282006-10-19 23:28:59 -07001683static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001684 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001685{
Al Virob37ad282006-10-19 23:28:59 -07001686 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001687 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001688
1689 status = nfsd4_encode_components(':', location->hosts, &p, buflen);
1690 if (status)
1691 return status;
1692 status = nfsd4_encode_components('/', location->path, &p, buflen);
1693 if (status)
1694 return status;
1695 *pp = p;
1696 return 0;
1697}
1698
1699/*
Trond Myklebusted748aa2011-09-12 19:37:06 -04001700 * Encode a path in RFC3530 'pathname4' format
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001701 */
Trond Myklebusted748aa2011-09-12 19:37:06 -04001702static __be32 nfsd4_encode_path(const struct path *root,
1703 const struct path *path, __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001704{
Trond Myklebusted748aa2011-09-12 19:37:06 -04001705 struct path cur = {
1706 .mnt = path->mnt,
1707 .dentry = path->dentry,
1708 };
1709 __be32 *p = *pp;
1710 struct dentry **components = NULL;
1711 unsigned int ncomponents = 0;
1712 __be32 err = nfserr_jukebox;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001713
Trond Myklebusted748aa2011-09-12 19:37:06 -04001714 dprintk("nfsd4_encode_components(");
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001715
Trond Myklebusted748aa2011-09-12 19:37:06 -04001716 path_get(&cur);
1717 /* First walk the path up to the nfsd root, and store the
1718 * dentries/path components in an array.
1719 */
1720 for (;;) {
1721 if (cur.dentry == root->dentry && cur.mnt == root->mnt)
1722 break;
1723 if (cur.dentry == cur.mnt->mnt_root) {
1724 if (follow_up(&cur))
1725 continue;
1726 goto out_free;
1727 }
1728 if ((ncomponents & 15) == 0) {
1729 struct dentry **new;
1730 new = krealloc(components,
1731 sizeof(*new) * (ncomponents + 16),
1732 GFP_KERNEL);
1733 if (!new)
1734 goto out_free;
1735 components = new;
1736 }
1737 components[ncomponents++] = cur.dentry;
1738 cur.dentry = dget_parent(cur.dentry);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001739 }
Trond Myklebusted748aa2011-09-12 19:37:06 -04001740
1741 *buflen -= 4;
1742 if (*buflen < 0)
1743 goto out_free;
1744 WRITE32(ncomponents);
1745
1746 while (ncomponents) {
1747 struct dentry *dentry = components[ncomponents - 1];
1748 unsigned int len = dentry->d_name.len;
1749
1750 *buflen -= 4 + (XDR_QUADLEN(len) << 2);
1751 if (*buflen < 0)
1752 goto out_free;
1753 WRITE32(len);
1754 WRITEMEM(dentry->d_name.name, len);
1755 dprintk("/%s", dentry->d_name.name);
1756 dput(dentry);
1757 ncomponents--;
1758 }
1759
1760 *pp = p;
1761 err = 0;
1762out_free:
1763 dprintk(")\n");
1764 while (ncomponents)
1765 dput(components[--ncomponents]);
1766 kfree(components);
1767 path_put(&cur);
1768 return err;
1769}
1770
1771static __be32 nfsd4_encode_fsloc_fsroot(struct svc_rqst *rqstp,
1772 const struct path *path, __be32 **pp, int *buflen)
1773{
1774 struct svc_export *exp_ps;
1775 __be32 res;
1776
1777 exp_ps = rqst_find_fsidzero_export(rqstp);
1778 if (IS_ERR(exp_ps))
1779 return nfserrno(PTR_ERR(exp_ps));
1780 res = nfsd4_encode_path(&exp_ps->ex_path, path, pp, buflen);
1781 exp_put(exp_ps);
1782 return res;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001783}
1784
1785/*
1786 * encode a fs_locations structure
1787 */
Al Virob37ad282006-10-19 23:28:59 -07001788static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001789 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001790 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001791{
Al Virob37ad282006-10-19 23:28:59 -07001792 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001793 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001794 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001795 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001796
Trond Myklebusted748aa2011-09-12 19:37:06 -04001797 status = nfsd4_encode_fsloc_fsroot(rqstp, &exp->ex_path, &p, buflen);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001798 if (status)
1799 return status;
1800 if ((*buflen -= 4) < 0)
1801 return nfserr_resource;
1802 WRITE32(fslocs->locations_count);
1803 for (i=0; i<fslocs->locations_count; i++) {
1804 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1805 &p, buflen);
1806 if (status)
1807 return status;
1808 }
1809 *pp = p;
1810 return 0;
1811}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04001813static u32 nfs4_file_type(umode_t mode)
1814{
1815 switch (mode & S_IFMT) {
1816 case S_IFIFO: return NF4FIFO;
1817 case S_IFCHR: return NF4CHR;
1818 case S_IFDIR: return NF4DIR;
1819 case S_IFBLK: return NF4BLK;
1820 case S_IFLNK: return NF4LNK;
1821 case S_IFREG: return NF4REG;
1822 case S_IFSOCK: return NF4SOCK;
1823 default: return NF4BAD;
1824 };
1825}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Al Virob37ad282006-10-19 23:28:59 -07001827static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001829 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830{
1831 int status;
1832
1833 if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1834 return nfserr_resource;
1835 if (whotype != NFS4_ACL_WHO_NAMED)
1836 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
1837 else if (group)
1838 status = nfsd_map_gid_to_name(rqstp, id, (u8 *)(*p + 1));
1839 else
1840 status = nfsd_map_uid_to_name(rqstp, id, (u8 *)(*p + 1));
1841 if (status < 0)
1842 return nfserrno(status);
1843 *p = xdr_encode_opaque(*p, NULL, status);
1844 *buflen -= (XDR_QUADLEN(status) << 2) + 4;
1845 BUG_ON(*buflen < 0);
1846 return 0;
1847}
1848
Al Virob37ad282006-10-19 23:28:59 -07001849static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001850nfsd4_encode_user(struct svc_rqst *rqstp, uid_t uid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
1852 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, uid, 0, p, buflen);
1853}
1854
Al Virob37ad282006-10-19 23:28:59 -07001855static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001856nfsd4_encode_group(struct svc_rqst *rqstp, uid_t gid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
1858 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, gid, 1, p, buflen);
1859}
1860
Al Virob37ad282006-10-19 23:28:59 -07001861static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862nfsd4_encode_aclname(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001863 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
1865 return nfsd4_encode_name(rqstp, whotype, id, group, p, buflen);
1866}
1867
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001868#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1869 FATTR4_WORD0_RDATTR_ERROR)
1870#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1871
Al Virob37ad282006-10-19 23:28:59 -07001872static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001873{
1874 /* As per referral draft: */
1875 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
1876 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
1877 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
1878 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
1879 *rdattr_err = NFSERR_MOVED;
1880 else
1881 return nfserr_moved;
1882 }
1883 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
1884 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
1885 return 0;
1886}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888/*
1889 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1890 * ourselves.
1891 *
1892 * @countp is the buffer size in _words_; upon successful return this becomes
1893 * replaced with the number of words written.
1894 */
Al Virob37ad282006-10-19 23:28:59 -07001895__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001897 struct dentry *dentry, __be32 *buffer, int *countp, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001898 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 u32 bmval0 = bmval[0];
1901 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03001902 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 struct kstat stat;
1904 struct svc_fh tempfh;
1905 struct kstatfs statfs;
1906 int buflen = *countp << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07001907 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 u32 dummy;
1909 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001910 u32 rdattr_err = 0;
Al Viro2ebbc012006-10-19 23:28:58 -07001911 __be32 *p = buffer;
Al Virob37ad282006-10-19 23:28:59 -07001912 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07001913 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 int aclsupport = 0;
1915 struct nfs4_acl *acl = NULL;
Andy Adamson7e705702009-04-03 08:29:11 +03001916 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1917 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001918 struct path path = {
1919 .mnt = exp->ex_path.mnt,
1920 .dentry = dentry,
1921 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03001924 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
1925 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
1926 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001928 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03001929 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001930 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
1931 if (status)
1932 goto out;
1933 }
1934
Jan Blunck54775492008-02-14 19:38:39 -08001935 err = vfs_getattr(exp->ex_path.mnt, dentry, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07001936 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04001938 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
1939 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
1941 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001942 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07001943 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 goto out_nfserr;
1945 }
1946 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
1947 fh_init(&tempfh, NFS4_FHSIZE);
1948 status = fh_compose(&tempfh, exp, dentry, NULL);
1949 if (status)
1950 goto out;
1951 fhp = &tempfh;
1952 }
1953 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
1954 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07001955 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
1956 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07001958 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07001960 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 status = nfserr_attrnotsupp;
1962 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07001963 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 goto out_nfserr;
1965 }
1966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001968 if (bmval2) {
1969 if ((buflen -= 16) < 0)
1970 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001971 WRITE32(3);
1972 WRITE32(bmval0);
1973 WRITE32(bmval1);
1974 WRITE32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001975 } else if (bmval1) {
1976 if ((buflen -= 12) < 0)
1977 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001978 WRITE32(2);
1979 WRITE32(bmval0);
1980 WRITE32(bmval1);
1981 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001982 if ((buflen -= 8) < 0)
1983 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001984 WRITE32(1);
1985 WRITE32(bmval0);
1986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 attrlenp = p++; /* to be backfilled later */
1988
1989 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03001990 u32 word0 = nfsd_suppattrs0(minorversion);
1991 u32 word1 = nfsd_suppattrs1(minorversion);
1992 u32 word2 = nfsd_suppattrs2(minorversion);
1993
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001994 if (!aclsupport)
1995 word0 &= ~FATTR4_WORD0_ACL;
Andy Adamson7e705702009-04-03 08:29:11 +03001996 if (!word2) {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001997 if ((buflen -= 12) < 0)
1998 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001999 WRITE32(2);
2000 WRITE32(word0);
2001 WRITE32(word1);
2002 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002003 if ((buflen -= 16) < 0)
2004 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002005 WRITE32(3);
2006 WRITE32(word0);
2007 WRITE32(word1);
2008 WRITE32(word2);
2009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
2011 if (bmval0 & FATTR4_WORD0_TYPE) {
2012 if ((buflen -= 4) < 0)
2013 goto out_resource;
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002014 dummy = nfs4_file_type(stat.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 if (dummy == NF4BAD)
2016 goto out_serverfault;
2017 WRITE32(dummy);
2018 }
2019 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
2020 if ((buflen -= 4) < 0)
2021 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07002022 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07002023 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07002024 else
NeilBrowne34ac862005-07-07 17:59:30 -07002025 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 }
2027 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 if ((buflen -= 8) < 0)
2029 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002030 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 }
2032 if (bmval0 & FATTR4_WORD0_SIZE) {
2033 if ((buflen -= 8) < 0)
2034 goto out_resource;
2035 WRITE64(stat.size);
2036 }
2037 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
2038 if ((buflen -= 4) < 0)
2039 goto out_resource;
2040 WRITE32(1);
2041 }
2042 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
2043 if ((buflen -= 4) < 0)
2044 goto out_resource;
2045 WRITE32(1);
2046 }
2047 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
2048 if ((buflen -= 4) < 0)
2049 goto out_resource;
2050 WRITE32(0);
2051 }
2052 if (bmval0 & FATTR4_WORD0_FSID) {
2053 if ((buflen -= 16) < 0)
2054 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002055 if (exp->ex_fslocs.migrated) {
2056 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
2057 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002058 } else switch(fsid_source(fhp)) {
2059 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 WRITE64((u64)exp->ex_fsid);
2061 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002062 break;
2063 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 WRITE32(0);
2065 WRITE32(MAJOR(stat.dev));
2066 WRITE32(0);
2067 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08002068 break;
2069 case FSIDSOURCE_UUID:
2070 WRITEMEM(exp->ex_uuid, 16);
2071 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
2073 }
2074 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
2075 if ((buflen -= 4) < 0)
2076 goto out_resource;
2077 WRITE32(0);
2078 }
2079 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
2080 if ((buflen -= 4) < 0)
2081 goto out_resource;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05002082 WRITE32(nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
2085 if ((buflen -= 4) < 0)
2086 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002087 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
2089 if (bmval0 & FATTR4_WORD0_ACL) {
2090 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 if (acl == NULL) {
2093 if ((buflen -= 4) < 0)
2094 goto out_resource;
2095
2096 WRITE32(0);
2097 goto out_acl;
2098 }
2099 if ((buflen -= 4) < 0)
2100 goto out_resource;
2101 WRITE32(acl->naces);
2102
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002103 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if ((buflen -= 4*3) < 0)
2105 goto out_resource;
2106 WRITE32(ace->type);
2107 WRITE32(ace->flag);
2108 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
2109 status = nfsd4_encode_aclname(rqstp, ace->whotype,
2110 ace->who, ace->flag & NFS4_ACE_IDENTIFIER_GROUP,
2111 &p, &buflen);
2112 if (status == nfserr_resource)
2113 goto out_resource;
2114 if (status)
2115 goto out;
2116 }
2117 }
2118out_acl:
2119 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
2120 if ((buflen -= 4) < 0)
2121 goto out_resource;
2122 WRITE32(aclsupport ?
2123 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
2124 }
2125 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
2126 if ((buflen -= 4) < 0)
2127 goto out_resource;
2128 WRITE32(1);
2129 }
2130 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
2131 if ((buflen -= 4) < 0)
2132 goto out_resource;
2133 WRITE32(1);
2134 }
2135 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
2136 if ((buflen -= 4) < 0)
2137 goto out_resource;
2138 WRITE32(1);
2139 }
2140 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2141 if ((buflen -= 4) < 0)
2142 goto out_resource;
2143 WRITE32(1);
2144 }
2145 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2146 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2147 if (buflen < 0)
2148 goto out_resource;
2149 WRITE32(fhp->fh_handle.fh_size);
2150 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2151 }
2152 if (bmval0 & FATTR4_WORD0_FILEID) {
2153 if ((buflen -= 8) < 0)
2154 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002155 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 }
2157 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2158 if ((buflen -= 8) < 0)
2159 goto out_resource;
2160 WRITE64((u64) statfs.f_ffree);
2161 }
2162 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2163 if ((buflen -= 8) < 0)
2164 goto out_resource;
2165 WRITE64((u64) statfs.f_ffree);
2166 }
2167 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2168 if ((buflen -= 8) < 0)
2169 goto out_resource;
2170 WRITE64((u64) statfs.f_files);
2171 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002172 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2173 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
2174 if (status == nfserr_resource)
2175 goto out_resource;
2176 if (status)
2177 goto out;
2178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2180 if ((buflen -= 4) < 0)
2181 goto out_resource;
2182 WRITE32(1);
2183 }
2184 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2185 if ((buflen -= 8) < 0)
2186 goto out_resource;
2187 WRITE64(~(u64)0);
2188 }
2189 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2190 if ((buflen -= 4) < 0)
2191 goto out_resource;
2192 WRITE32(255);
2193 }
2194 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2195 if ((buflen -= 4) < 0)
2196 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002197 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2200 if ((buflen -= 8) < 0)
2201 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002202 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
2204 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2205 if ((buflen -= 8) < 0)
2206 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002207 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 }
2209 if (bmval1 & FATTR4_WORD1_MODE) {
2210 if ((buflen -= 4) < 0)
2211 goto out_resource;
2212 WRITE32(stat.mode & S_IALLUGO);
2213 }
2214 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2215 if ((buflen -= 4) < 0)
2216 goto out_resource;
2217 WRITE32(1);
2218 }
2219 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2220 if ((buflen -= 4) < 0)
2221 goto out_resource;
2222 WRITE32(stat.nlink);
2223 }
2224 if (bmval1 & FATTR4_WORD1_OWNER) {
2225 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
2226 if (status == nfserr_resource)
2227 goto out_resource;
2228 if (status)
2229 goto out;
2230 }
2231 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2232 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
2233 if (status == nfserr_resource)
2234 goto out_resource;
2235 if (status)
2236 goto out;
2237 }
2238 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2239 if ((buflen -= 8) < 0)
2240 goto out_resource;
2241 WRITE32((u32) MAJOR(stat.rdev));
2242 WRITE32((u32) MINOR(stat.rdev));
2243 }
2244 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2245 if ((buflen -= 8) < 0)
2246 goto out_resource;
2247 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2248 WRITE64(dummy64);
2249 }
2250 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2251 if ((buflen -= 8) < 0)
2252 goto out_resource;
2253 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2254 WRITE64(dummy64);
2255 }
2256 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2257 if ((buflen -= 8) < 0)
2258 goto out_resource;
2259 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2260 WRITE64(dummy64);
2261 }
2262 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2263 if ((buflen -= 8) < 0)
2264 goto out_resource;
2265 dummy64 = (u64)stat.blocks << 9;
2266 WRITE64(dummy64);
2267 }
2268 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2269 if ((buflen -= 12) < 0)
2270 goto out_resource;
2271 WRITE32(0);
2272 WRITE32(stat.atime.tv_sec);
2273 WRITE32(stat.atime.tv_nsec);
2274 }
2275 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2276 if ((buflen -= 12) < 0)
2277 goto out_resource;
2278 WRITE32(0);
2279 WRITE32(1);
2280 WRITE32(0);
2281 }
2282 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2283 if ((buflen -= 12) < 0)
2284 goto out_resource;
2285 WRITE32(0);
2286 WRITE32(stat.ctime.tv_sec);
2287 WRITE32(stat.ctime.tv_nsec);
2288 }
2289 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2290 if ((buflen -= 12) < 0)
2291 goto out_resource;
2292 WRITE32(0);
2293 WRITE32(stat.mtime.tv_sec);
2294 WRITE32(stat.mtime.tv_nsec);
2295 }
2296 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if ((buflen -= 8) < 0)
2298 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002299 /*
2300 * Get parent's attributes if not ignoring crossmount
2301 * and this is the root of a cross-mounted filesystem.
2302 */
2303 if (ignore_crossmnt == 0 &&
Al Viro462d6052010-01-30 16:11:21 -05002304 dentry == exp->ex_path.mnt->mnt_root) {
2305 struct path path = exp->ex_path;
2306 path_get(&path);
2307 while (follow_up(&path)) {
2308 if (path.dentry != path.mnt->mnt_root)
2309 break;
2310 }
2311 err = vfs_getattr(path.mnt, path.dentry, &stat);
2312 path_put(&path);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002313 if (err)
2314 goto out_nfserr;
2315 }
2316 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002318 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
2319 WRITE32(3);
2320 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2321 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2322 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2323 }
Andy Adamson7e705702009-04-03 08:29:11 +03002324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2326 *countp = p - buffer;
2327 status = nfs_ok;
2328
2329out:
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002330 kfree(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if (fhp == &tempfh)
2332 fh_put(&tempfh);
2333 return status;
2334out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002335 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 goto out;
2337out_resource:
2338 *countp = 0;
2339 status = nfserr_resource;
2340 goto out;
2341out_serverfault:
2342 status = nfserr_serverfault;
2343 goto out;
2344}
2345
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002346static inline int attributes_need_mount(u32 *bmval)
2347{
2348 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2349 return 1;
2350 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2351 return 1;
2352 return 0;
2353}
2354
Al Virob37ad282006-10-19 23:28:59 -07002355static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
Al Viro2ebbc012006-10-19 23:28:58 -07002357 const char *name, int namlen, __be32 *p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358{
2359 struct svc_export *exp = cd->rd_fhp->fh_export;
2360 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002361 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002362 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2365 if (IS_ERR(dentry))
2366 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002367 if (!dentry->d_inode) {
2368 /*
2369 * nfsd_buffered_readdir drops the i_mutex between
2370 * readdir and calling this callback, leaving a window
2371 * where this directory entry could have gone away.
2372 */
2373 dput(dentry);
2374 return nfserr_noent;
2375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002378 /*
2379 * In the case of a mountpoint, the client may be asking for
2380 * attributes that are only properties of the underlying filesystem
2381 * as opposed to the cross-mounted file system. In such a case,
2382 * we will not follow the cross mount and will fill the attribtutes
2383 * directly from the mountpoint dentry.
2384 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002385 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002386 int err;
2387
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002388 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2389 && !attributes_need_mount(cd->rd_bmval)) {
2390 ignore_crossmnt = 1;
2391 goto out_encode;
2392 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002393 /*
2394 * Why the heck aren't we just using nfsd_lookup??
2395 * Different "."/".." handling? Something else?
2396 * At least, add a comment here to explain....
2397 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002398 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2399 if (err) {
2400 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 goto out_put;
2402 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002403 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2404 if (nfserr)
2405 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002408out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002410 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411out_put:
2412 dput(dentry);
2413 exp_put(exp);
2414 return nfserr;
2415}
2416
Al Viro2ebbc012006-10-19 23:28:58 -07002417static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002418nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
Al Viro2ebbc012006-10-19 23:28:58 -07002420 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421
2422 if (buflen < 6)
2423 return NULL;
2424 *p++ = htonl(2);
2425 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2426 *p++ = htonl(0); /* bmval1 */
2427
2428 attrlenp = p++;
2429 *p++ = nfserr; /* no htonl */
2430 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2431 return p;
2432}
2433
2434static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002435nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2436 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002438 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2440 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002441 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002442 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002443 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 /* In nfsv4, "." and ".." never make it onto the wire.. */
2446 if (name && isdotent(name, namlen)) {
2447 cd->common.err = nfs_ok;
2448 return 0;
2449 }
2450
2451 if (cd->offset)
2452 xdr_encode_hyper(cd->offset, (u64) offset);
2453
2454 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2455 if (buflen < 0)
2456 goto fail;
2457
2458 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002459 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2461 p = xdr_encode_array(p, name, namlen); /* name length & name */
2462
2463 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, p, &buflen);
2464 switch (nfserr) {
2465 case nfs_ok:
2466 p += buflen;
2467 break;
2468 case nfserr_resource:
2469 nfserr = nfserr_toosmall;
2470 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002471 case nfserr_noent:
2472 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 default:
2474 /*
2475 * If the client requested the RDATTR_ERROR attribute,
2476 * we stuff the error code into this attribute
2477 * and continue. If this attribute was not requested,
2478 * then in accordance with the spec, we fail the
2479 * entire READDIR operation(!)
2480 */
2481 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2482 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002484 if (p == NULL) {
2485 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 }
2489 cd->buflen -= (p - cd->buffer);
2490 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002491 cd->offset = cookiep;
2492skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 cd->common.err = nfs_ok;
2494 return 0;
2495fail:
2496 cd->common.err = nfserr;
2497 return -EINVAL;
2498}
2499
Benny Halevye2f282b2008-08-12 20:45:07 +03002500static void
2501nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2502{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002503 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002504
2505 RESERVE_SPACE(sizeof(stateid_t));
2506 WRITE32(sid->si_generation);
2507 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2508 ADJUST_ARGS();
2509}
2510
Benny Halevy695e12f2008-07-04 14:38:33 +03002511static __be32
Al Virob37ad282006-10-19 23:28:59 -07002512nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002514 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 if (!nfserr) {
2517 RESERVE_SPACE(8);
2518 WRITE32(access->ac_supported);
2519 WRITE32(access->ac_resp_access);
2520 ADJUST_ARGS();
2521 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002522 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523}
2524
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002525static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
2526{
2527 __be32 *p;
2528
2529 if (!nfserr) {
2530 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 8);
2531 WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
2532 WRITE32(bcts->dir);
2533 /* XXX: ? */
2534 WRITE32(0);
2535 ADJUST_ARGS();
2536 }
2537 return nfserr;
2538}
2539
Benny Halevy695e12f2008-07-04 14:38:33 +03002540static __be32
Al Virob37ad282006-10-19 23:28:59 -07002541nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
2543 ENCODE_SEQID_OP_HEAD;
2544
Benny Halevye2f282b2008-08-12 20:45:07 +03002545 if (!nfserr)
2546 nfsd4_encode_stateid(resp, &close->cl_stateid);
2547
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002548 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002549 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550}
2551
2552
Benny Halevy695e12f2008-07-04 14:38:33 +03002553static __be32
Al Virob37ad282006-10-19 23:28:59 -07002554nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002556 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558 if (!nfserr) {
2559 RESERVE_SPACE(8);
2560 WRITEMEM(commit->co_verf.data, 8);
2561 ADJUST_ARGS();
2562 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002563 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564}
2565
Benny Halevy695e12f2008-07-04 14:38:33 +03002566static __be32
Al Virob37ad282006-10-19 23:28:59 -07002567nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002569 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 if (!nfserr) {
2572 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002573 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 WRITE32(2);
2575 WRITE32(create->cr_bmval[0]);
2576 WRITE32(create->cr_bmval[1]);
2577 ADJUST_ARGS();
2578 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002579 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580}
2581
Al Virob37ad282006-10-19 23:28:59 -07002582static __be32
2583nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
2585 struct svc_fh *fhp = getattr->ga_fhp;
2586 int buflen;
2587
2588 if (nfserr)
2589 return nfserr;
2590
2591 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2592 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
2593 resp->p, &buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002594 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 if (!nfserr)
2596 resp->p += buflen;
2597 return nfserr;
2598}
2599
Benny Halevy695e12f2008-07-04 14:38:33 +03002600static __be32
2601nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602{
Benny Halevy695e12f2008-07-04 14:38:33 +03002603 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002605 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607 if (!nfserr) {
2608 len = fhp->fh_handle.fh_size;
2609 RESERVE_SPACE(len + 4);
2610 WRITE32(len);
2611 WRITEMEM(&fhp->fh_handle.fh_base, len);
2612 ADJUST_ARGS();
2613 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002614 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615}
2616
2617/*
2618* Including all fields other than the name, a LOCK4denied structure requires
2619* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2620*/
2621static void
2622nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2623{
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002624 struct xdr_netobj *conf = &ld->ld_owner;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002625 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002627 RESERVE_SPACE(32 + XDR_LEN(conf->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 WRITE64(ld->ld_start);
2629 WRITE64(ld->ld_length);
2630 WRITE32(ld->ld_type);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002631 if (conf->len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 WRITEMEM(&ld->ld_clientid, 8);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002633 WRITE32(conf->len);
2634 WRITEMEM(conf->data, conf->len);
2635 kfree(conf->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2637 WRITE64((u64)0); /* clientid */
2638 WRITE32(0); /* length of owner name */
2639 }
2640 ADJUST_ARGS();
2641}
2642
Benny Halevy695e12f2008-07-04 14:38:33 +03002643static __be32
Al Virob37ad282006-10-19 23:28:59 -07002644nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 ENCODE_SEQID_OP_HEAD;
2647
Benny Halevye2f282b2008-08-12 20:45:07 +03002648 if (!nfserr)
2649 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2650 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2652
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002653 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002654 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655}
2656
Benny Halevy695e12f2008-07-04 14:38:33 +03002657static __be32
Al Virob37ad282006-10-19 23:28:59 -07002658nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659{
2660 if (nfserr == nfserr_denied)
2661 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002662 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
Benny Halevy695e12f2008-07-04 14:38:33 +03002665static __be32
Al Virob37ad282006-10-19 23:28:59 -07002666nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
2668 ENCODE_SEQID_OP_HEAD;
2669
Benny Halevye2f282b2008-08-12 20:45:07 +03002670 if (!nfserr)
2671 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2672
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002673 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002674 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675}
2676
2677
Benny Halevy695e12f2008-07-04 14:38:33 +03002678static __be32
Al Virob37ad282006-10-19 23:28:59 -07002679nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002681 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683 if (!nfserr) {
2684 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002685 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 ADJUST_ARGS();
2687 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002688 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689}
2690
2691
Benny Halevy695e12f2008-07-04 14:38:33 +03002692static __be32
Al Virob37ad282006-10-19 23:28:59 -07002693nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002695 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 ENCODE_SEQID_OP_HEAD;
2697
2698 if (nfserr)
2699 goto out;
2700
Benny Halevye2f282b2008-08-12 20:45:07 +03002701 nfsd4_encode_stateid(resp, &open->op_stateid);
2702 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002703 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 WRITE32(open->op_rflags);
2705 WRITE32(2);
2706 WRITE32(open->op_bmval[0]);
2707 WRITE32(open->op_bmval[1]);
2708 WRITE32(open->op_delegate_type);
2709 ADJUST_ARGS();
2710
2711 switch (open->op_delegate_type) {
2712 case NFS4_OPEN_DELEGATE_NONE:
2713 break;
2714 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002715 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2716 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002717 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718
2719 /*
2720 * TODO: ACE's in delegations
2721 */
2722 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2723 WRITE32(0);
2724 WRITE32(0);
2725 WRITE32(0); /* XXX: is NULL principal ok? */
2726 ADJUST_ARGS();
2727 break;
2728 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002729 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2730 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 WRITE32(0);
2732
2733 /*
2734 * TODO: space_limit's in delegations
2735 */
2736 WRITE32(NFS4_LIMIT_SIZE);
2737 WRITE32(~(u32)0);
2738 WRITE32(~(u32)0);
2739
2740 /*
2741 * TODO: ACE's in delegations
2742 */
2743 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2744 WRITE32(0);
2745 WRITE32(0);
2746 WRITE32(0); /* XXX: is NULL principal ok? */
2747 ADJUST_ARGS();
2748 break;
2749 default:
2750 BUG();
2751 }
2752 /* XXX save filehandle here */
2753out:
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002754 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002755 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756}
2757
Benny Halevy695e12f2008-07-04 14:38:33 +03002758static __be32
Al Virob37ad282006-10-19 23:28:59 -07002759nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
2761 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002762
2763 if (!nfserr)
2764 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002766 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002767 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768}
2769
Benny Halevy695e12f2008-07-04 14:38:33 +03002770static __be32
Al Virob37ad282006-10-19 23:28:59 -07002771nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772{
2773 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002774
2775 if (!nfserr)
2776 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002778 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002779 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
Al Virob37ad282006-10-19 23:28:59 -07002782static __be32
2783nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002784 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785{
2786 u32 eof;
2787 int v, pn;
2788 unsigned long maxcount;
2789 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002790 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 if (nfserr)
2793 return nfserr;
2794 if (resp->xbuf->page_len)
2795 return nfserr_resource;
2796
2797 RESERVE_SPACE(8); /* eof flag and byte count */
2798
Greg Banks7adae482006-10-04 02:15:47 -07002799 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (maxcount > read->rd_length)
2801 maxcount = read->rd_length;
2802
2803 len = maxcount;
2804 v = 0;
2805 while (len > 0) {
NeilBrown44524352006-10-04 02:15:46 -07002806 pn = resp->rqstp->rq_resused++;
NeilBrown3cc03b12006-10-04 02:15:47 -07002807 resp->rqstp->rq_vec[v].iov_base =
NeilBrown44524352006-10-04 02:15:46 -07002808 page_address(resp->rqstp->rq_respages[pn]);
NeilBrown3cc03b12006-10-04 02:15:47 -07002809 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002810 len < PAGE_SIZE ? len : PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 v++;
2812 len -= PAGE_SIZE;
2813 }
2814 read->rd_vlen = v;
2815
J. Bruce Fields039a87c2010-07-30 11:33:32 -04002816 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002817 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 &maxcount);
2819
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 if (nfserr)
2821 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002822 eof = (read->rd_offset + maxcount >=
2823 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
2825 WRITE32(eof);
2826 WRITE32(maxcount);
2827 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002828 resp->xbuf->head[0].iov_len = (char*)p
2829 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 resp->xbuf->page_len = maxcount;
2831
NeilBrown6ed6dec2006-04-10 22:55:32 -07002832 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002833 resp->xbuf->tail[0].iov_base = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002836 RESERVE_SPACE(4);
2837 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 resp->xbuf->tail[0].iov_base += maxcount&3;
2839 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002840 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 }
2842 return 0;
2843}
2844
Al Virob37ad282006-10-19 23:28:59 -07002845static __be32
2846nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847{
2848 int maxcount;
2849 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002850 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
2852 if (nfserr)
2853 return nfserr;
2854 if (resp->xbuf->page_len)
2855 return nfserr_resource;
2856
NeilBrown44524352006-10-04 02:15:46 -07002857 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859 maxcount = PAGE_SIZE;
2860 RESERVE_SPACE(4);
2861
2862 /*
2863 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2864 * if they would overflow the buffer. Is this kosher in NFSv4? If
2865 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2866 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2867 */
2868 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
2869 if (nfserr == nfserr_isdir)
2870 return nfserr_inval;
2871 if (nfserr)
2872 return nfserr;
2873
2874 WRITE32(maxcount);
2875 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002876 resp->xbuf->head[0].iov_len = (char*)p
2877 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 resp->xbuf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07002879
2880 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002881 resp->xbuf->tail[0].iov_base = p;
2882 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002884 RESERVE_SPACE(4);
2885 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 resp->xbuf->tail[0].iov_base += maxcount&3;
2887 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002888 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 }
2890 return 0;
2891}
2892
Al Virob37ad282006-10-19 23:28:59 -07002893static __be32
2894nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895{
2896 int maxcount;
2897 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07002898 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002899 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
2901 if (nfserr)
2902 return nfserr;
2903 if (resp->xbuf->page_len)
2904 return nfserr_resource;
2905
2906 RESERVE_SPACE(8); /* verifier */
2907 savep = p;
2908
2909 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2910 WRITE32(0);
2911 WRITE32(0);
2912 ADJUST_ARGS();
2913 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002914 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
2916 maxcount = PAGE_SIZE;
2917 if (maxcount > readdir->rd_maxcount)
2918 maxcount = readdir->rd_maxcount;
2919
2920 /*
2921 * Convert from bytes to words, account for the two words already
2922 * written, make sure to leave two words at the end for the next
2923 * pointer and eof field.
2924 */
2925 maxcount = (maxcount >> 2) - 4;
2926 if (maxcount < 0) {
2927 nfserr = nfserr_toosmall;
2928 goto err_no_verf;
2929 }
2930
NeilBrown44524352006-10-04 02:15:46 -07002931 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 readdir->common.err = 0;
2933 readdir->buflen = maxcount;
2934 readdir->buffer = page;
2935 readdir->offset = NULL;
2936
2937 offset = readdir->rd_cookie;
2938 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
2939 &offset,
2940 &readdir->common, nfsd4_encode_dirent);
2941 if (nfserr == nfs_ok &&
2942 readdir->common.err == nfserr_toosmall &&
2943 readdir->buffer == page)
2944 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 if (nfserr)
2946 goto err_no_verf;
2947
2948 if (readdir->offset)
2949 xdr_encode_hyper(readdir->offset, offset);
2950
2951 p = readdir->buffer;
2952 *p++ = 0; /* no more entries */
2953 *p++ = htonl(readdir->common.err == nfserr_eof);
NeilBrown44524352006-10-04 02:15:46 -07002954 resp->xbuf->page_len = ((char*)p) - (char*)page_address(
2955 resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
NeilBrownbb6e8a92006-04-10 22:55:33 -07002957 /* Use rest of head for padding and remaining ops: */
NeilBrownbb6e8a92006-04-10 22:55:33 -07002958 resp->xbuf->tail[0].iov_base = tailbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 resp->xbuf->tail[0].iov_len = 0;
2960 resp->p = resp->xbuf->tail[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002961 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963 return 0;
2964err_no_verf:
2965 p = savep;
2966 ADJUST_ARGS();
2967 return nfserr;
2968}
2969
Benny Halevy695e12f2008-07-04 14:38:33 +03002970static __be32
Al Virob37ad282006-10-19 23:28:59 -07002971nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002973 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
2975 if (!nfserr) {
2976 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002977 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 ADJUST_ARGS();
2979 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002980 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
Benny Halevy695e12f2008-07-04 14:38:33 +03002983static __be32
Al Virob37ad282006-10-19 23:28:59 -07002984nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002986 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
2988 if (!nfserr) {
2989 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002990 write_cinfo(&p, &rename->rn_sinfo);
2991 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 ADJUST_ARGS();
2993 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002994 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995}
2996
Benny Halevy695e12f2008-07-04 14:38:33 +03002997static __be32
Mi Jinlong22b6dee2010-12-27 14:29:57 +08002998nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
2999 __be32 nfserr,struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07003000{
3001 int i = 0;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003002 u32 nflavs;
3003 struct exp_flavor_info *flavs;
3004 struct exp_flavor_info def_flavs[2];
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003005 __be32 *p;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003006
3007 if (nfserr)
3008 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003009 if (exp->ex_nflavors) {
3010 flavs = exp->ex_flavors;
3011 nflavs = exp->ex_nflavors;
3012 } else { /* Handling of some defaults in absence of real secinfo: */
3013 flavs = def_flavs;
3014 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
3015 nflavs = 2;
3016 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
3017 flavs[1].pseudoflavor = RPC_AUTH_NULL;
3018 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
3019 nflavs = 1;
3020 flavs[0].pseudoflavor
3021 = svcauth_gss_flavor(exp->ex_client);
3022 } else {
3023 nflavs = 1;
3024 flavs[0].pseudoflavor
3025 = exp->ex_client->flavour->flavour;
3026 }
3027 }
3028
Andy Adamsondcb488a32007-07-17 04:04:51 -07003029 RESERVE_SPACE(4);
J. Bruce Fields4796f452007-07-17 04:04:51 -07003030 WRITE32(nflavs);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003031 ADJUST_ARGS();
J. Bruce Fields4796f452007-07-17 04:04:51 -07003032 for (i = 0; i < nflavs; i++) {
3033 u32 flav = flavs[i].pseudoflavor;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003034 struct gss_api_mech *gm = gss_mech_get_by_pseudoflavor(flav);
3035
3036 if (gm) {
3037 RESERVE_SPACE(4);
3038 WRITE32(RPC_AUTH_GSS);
3039 ADJUST_ARGS();
3040 RESERVE_SPACE(4 + gm->gm_oid.len);
3041 WRITE32(gm->gm_oid.len);
3042 WRITEMEM(gm->gm_oid.data, gm->gm_oid.len);
3043 ADJUST_ARGS();
3044 RESERVE_SPACE(4);
3045 WRITE32(0); /* qop */
3046 ADJUST_ARGS();
3047 RESERVE_SPACE(4);
3048 WRITE32(gss_pseudoflavor_to_service(gm, flav));
3049 ADJUST_ARGS();
3050 gss_mech_put(gm);
3051 } else {
3052 RESERVE_SPACE(4);
3053 WRITE32(flav);
3054 ADJUST_ARGS();
3055 }
3056 }
3057out:
3058 if (exp)
3059 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03003060 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003061}
3062
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003063static __be32
3064nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
3065 struct nfsd4_secinfo *secinfo)
3066{
3067 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
3068}
3069
3070static __be32
3071nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
3072 struct nfsd4_secinfo_no_name *secinfo)
3073{
3074 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
3075}
3076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077/*
3078 * The SETATTR encode routine is special -- it always encodes a bitmap,
3079 * regardless of the error status.
3080 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003081static __be32
Al Virob37ad282006-10-19 23:28:59 -07003082nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003084 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
3086 RESERVE_SPACE(12);
3087 if (nfserr) {
3088 WRITE32(2);
3089 WRITE32(0);
3090 WRITE32(0);
3091 }
3092 else {
3093 WRITE32(2);
3094 WRITE32(setattr->sa_bmval[0]);
3095 WRITE32(setattr->sa_bmval[1]);
3096 }
3097 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03003098 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099}
3100
Benny Halevy695e12f2008-07-04 14:38:33 +03003101static __be32
Al Virob37ad282006-10-19 23:28:59 -07003102nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003104 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
3106 if (!nfserr) {
3107 RESERVE_SPACE(8 + sizeof(nfs4_verifier));
3108 WRITEMEM(&scd->se_clientid, 8);
3109 WRITEMEM(&scd->se_confirm, sizeof(nfs4_verifier));
3110 ADJUST_ARGS();
3111 }
3112 else if (nfserr == nfserr_clid_inuse) {
3113 RESERVE_SPACE(8);
3114 WRITE32(0);
3115 WRITE32(0);
3116 ADJUST_ARGS();
3117 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003118 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119}
3120
Benny Halevy695e12f2008-07-04 14:38:33 +03003121static __be32
Al Virob37ad282006-10-19 23:28:59 -07003122nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003124 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
3126 if (!nfserr) {
3127 RESERVE_SPACE(16);
3128 WRITE32(write->wr_bytes_written);
3129 WRITE32(write->wr_how_written);
3130 WRITEMEM(write->wr_verifier.data, 8);
3131 ADJUST_ARGS();
3132 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003133 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134}
3135
Benny Halevy695e12f2008-07-04 14:38:33 +03003136static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03003137nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, int nfserr,
3138 struct nfsd4_exchange_id *exid)
3139{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003140 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03003141 char *major_id;
3142 char *server_scope;
3143 int major_id_sz;
3144 int server_scope_sz;
3145 uint64_t minor_id = 0;
3146
3147 if (nfserr)
3148 return nfserr;
3149
3150 major_id = utsname()->nodename;
3151 major_id_sz = strlen(major_id);
3152 server_scope = utsname()->nodename;
3153 server_scope_sz = strlen(server_scope);
3154
3155 RESERVE_SPACE(
3156 8 /* eir_clientid */ +
3157 4 /* eir_sequenceid */ +
3158 4 /* eir_flags */ +
3159 4 /* spr_how (SP4_NONE) */ +
3160 8 /* so_minor_id */ +
3161 4 /* so_major_id.len */ +
3162 (XDR_QUADLEN(major_id_sz) * 4) +
3163 4 /* eir_server_scope.len */ +
3164 (XDR_QUADLEN(server_scope_sz) * 4) +
3165 4 /* eir_server_impl_id.count (0) */);
3166
3167 WRITEMEM(&exid->clientid, 8);
3168 WRITE32(exid->seqid);
3169 WRITE32(exid->flags);
3170
3171 /* state_protect4_r. Currently only support SP4_NONE */
3172 BUG_ON(exid->spa_how != SP4_NONE);
3173 WRITE32(exid->spa_how);
3174
3175 /* The server_owner struct */
3176 WRITE64(minor_id); /* Minor id */
3177 /* major id */
3178 WRITE32(major_id_sz);
3179 WRITEMEM(major_id, major_id_sz);
3180
3181 /* Server scope */
3182 WRITE32(server_scope_sz);
3183 WRITEMEM(server_scope, server_scope_sz);
3184
3185 /* Implementation id */
3186 WRITE32(0); /* zero length nfs_impl_id4 array */
3187 ADJUST_ARGS();
3188 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003189}
3190
3191static __be32
3192nfsd4_encode_create_session(struct nfsd4_compoundres *resp, int nfserr,
3193 struct nfsd4_create_session *sess)
3194{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003195 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003196
3197 if (nfserr)
3198 return nfserr;
3199
3200 RESERVE_SPACE(24);
3201 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3202 WRITE32(sess->seqid);
3203 WRITE32(sess->flags);
3204 ADJUST_ARGS();
3205
3206 RESERVE_SPACE(28);
3207 WRITE32(0); /* headerpadsz */
3208 WRITE32(sess->fore_channel.maxreq_sz);
3209 WRITE32(sess->fore_channel.maxresp_sz);
3210 WRITE32(sess->fore_channel.maxresp_cached);
3211 WRITE32(sess->fore_channel.maxops);
3212 WRITE32(sess->fore_channel.maxreqs);
3213 WRITE32(sess->fore_channel.nr_rdma_attrs);
3214 ADJUST_ARGS();
3215
3216 if (sess->fore_channel.nr_rdma_attrs) {
3217 RESERVE_SPACE(4);
3218 WRITE32(sess->fore_channel.rdma_attrs);
3219 ADJUST_ARGS();
3220 }
3221
3222 RESERVE_SPACE(28);
3223 WRITE32(0); /* headerpadsz */
3224 WRITE32(sess->back_channel.maxreq_sz);
3225 WRITE32(sess->back_channel.maxresp_sz);
3226 WRITE32(sess->back_channel.maxresp_cached);
3227 WRITE32(sess->back_channel.maxops);
3228 WRITE32(sess->back_channel.maxreqs);
3229 WRITE32(sess->back_channel.nr_rdma_attrs);
3230 ADJUST_ARGS();
3231
3232 if (sess->back_channel.nr_rdma_attrs) {
3233 RESERVE_SPACE(4);
3234 WRITE32(sess->back_channel.rdma_attrs);
3235 ADJUST_ARGS();
3236 }
3237 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003238}
3239
3240static __be32
3241nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, int nfserr,
3242 struct nfsd4_destroy_session *destroy_session)
3243{
Andy Adamson2db134e2009-04-03 08:27:55 +03003244 return nfserr;
3245}
3246
Daniel Mackc47d8322011-05-16 16:38:14 +02003247static __be32
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003248nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, int nfserr,
3249 struct nfsd4_free_stateid *free_stateid)
3250{
3251 __be32 *p;
3252
3253 if (nfserr)
3254 return nfserr;
3255
3256 RESERVE_SPACE(4);
3257 WRITE32(nfserr);
3258 ADJUST_ARGS();
3259 return nfserr;
3260}
3261
3262static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03003263nfsd4_encode_sequence(struct nfsd4_compoundres *resp, int nfserr,
3264 struct nfsd4_sequence *seq)
3265{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003266 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003267
3268 if (nfserr)
3269 return nfserr;
3270
3271 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3272 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3273 WRITE32(seq->seqid);
3274 WRITE32(seq->slotid);
J. Bruce Fieldsb7d7ca32011-08-31 15:39:30 -04003275 /* Note slotid's are numbered from zero: */
3276 WRITE32(seq->maxslots - 1); /* sr_highest_slotid */
3277 WRITE32(seq->maxslots - 1); /* sr_target_highest_slotid */
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05003278 WRITE32(seq->status_flags);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003279
3280 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003281 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003282 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003283}
3284
Bryan Schumaker17456802011-07-13 10:50:48 -04003285__be32
3286nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, int nfserr,
3287 struct nfsd4_test_stateid *test_stateid)
3288{
3289 struct nfsd4_compoundargs *argp;
3290 stateid_t si;
3291 __be32 *p;
3292 int i;
3293 int valid;
3294
3295 restore_buf(test_stateid->ts_saved_args, &test_stateid->ts_savedp);
3296 argp = test_stateid->ts_saved_args;
3297
3298 RESERVE_SPACE(4);
3299 *p++ = htonl(test_stateid->ts_num_ids);
3300 resp->p = p;
3301
3302 nfs4_lock_state();
3303 for (i = 0; i < test_stateid->ts_num_ids; i++) {
3304 nfsd4_decode_stateid(argp, &si);
3305 valid = nfs4_validate_stateid(&si, test_stateid->ts_has_session);
3306 RESERVE_SPACE(4);
3307 *p++ = htonl(valid);
3308 resp->p = p;
3309 }
3310 nfs4_unlock_state();
3311
3312 return nfserr;
3313}
3314
Andy Adamson2db134e2009-04-03 08:27:55 +03003315static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003316nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3317{
3318 return nfserr;
3319}
3320
3321typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3322
Andy Adamson2db134e2009-04-03 08:27:55 +03003323/*
3324 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3325 * since we don't need to filter out obsolete ops as this is
3326 * done in the decoding phase.
3327 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003328static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003329 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3330 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3331 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3332 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3333 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3334 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3335 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3336 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3337 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3338 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3339 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3340 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3341 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3342 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3343 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3344 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003345 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003346 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3347 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3348 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3349 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3350 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3351 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3352 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3353 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3354 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3355 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3356 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3357 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3358 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3359 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3360 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3361 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3362 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3363 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3364 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3365 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003366
3367 /* NFSv4.1 operations */
3368 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003369 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
Andy Adamson2db134e2009-04-03 08:27:55 +03003370 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3371 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3372 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003373 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_free_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003374 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3375 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3376 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3377 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3378 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3379 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003380 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003381 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3382 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
Bryan Schumaker17456802011-07-13 10:50:48 -04003383 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003384 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3385 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3386 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003387};
3388
Andy Adamson496c2622009-04-03 08:28:48 +03003389/*
3390 * Calculate the total amount of memory that the compound response has taken
Mi Jinlong58e7b332011-08-28 18:18:56 +08003391 * after encoding the current operation with pad.
Andy Adamson496c2622009-04-03 08:28:48 +03003392 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003393 * pad: if operation is non-idempotent, pad was calculate by op_rsize_bop()
3394 * which was specified at nfsd4_operation, else pad is zero.
Andy Adamson496c2622009-04-03 08:28:48 +03003395 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003396 * Compare this length to the session se_fmaxresp_sz and se_fmaxresp_cached.
Andy Adamson496c2622009-04-03 08:28:48 +03003397 *
3398 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3399 * will be at least a page and will therefore hold the xdr_buf head.
3400 */
Mi Jinlong58e7b332011-08-28 18:18:56 +08003401int nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 pad)
Andy Adamson496c2622009-04-03 08:28:48 +03003402{
Andy Adamson496c2622009-04-03 08:28:48 +03003403 struct xdr_buf *xb = &resp->rqstp->rq_res;
Andy Adamson496c2622009-04-03 08:28:48 +03003404 struct nfsd4_session *session = NULL;
3405 struct nfsd4_slot *slot = resp->cstate.slot;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003406 u32 length, tlen = 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003407
3408 if (!nfsd4_has_session(&resp->cstate))
Mi Jinlong58e7b332011-08-28 18:18:56 +08003409 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003410
3411 session = resp->cstate.session;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003412 if (session == NULL)
3413 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003414
3415 if (xb->page_len == 0) {
3416 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3417 } else {
3418 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3419 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3420
3421 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3422 }
3423 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3424 length, xb->page_len, tlen, pad);
3425
Mi Jinlong58e7b332011-08-28 18:18:56 +08003426 if (length > session->se_fchannel.maxresp_sz)
3427 return nfserr_rep_too_big;
3428
3429 if (slot->sl_cachethis == 1 &&
3430 length > session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003431 return nfserr_rep_too_big_to_cache;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003432
3433 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003434}
3435
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436void
3437nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3438{
Al Viro2ebbc012006-10-19 23:28:58 -07003439 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003440 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
3442 RESERVE_SPACE(8);
3443 WRITE32(op->opnum);
3444 statp = p++; /* to be backfilled at the end */
3445 ADJUST_ARGS();
3446
Benny Halevy695e12f2008-07-04 14:38:33 +03003447 if (op->opnum == OP_ILLEGAL)
3448 goto status;
3449 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3450 !nfsd4_enc_ops[op->opnum]);
3451 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
Andy Adamson496c2622009-04-03 08:28:48 +03003452 /* nfsd4_check_drc_limit guarantees enough room for error status */
Mi Jinlong58e7b332011-08-28 18:18:56 +08003453 if (!op->status)
3454 op->status = nfsd4_check_resp_size(resp, 0);
Benny Halevy695e12f2008-07-04 14:38:33 +03003455status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 /*
3457 * Note: We write the status directly, instead of using WRITE32(),
3458 * since it is already in network byte order.
3459 */
3460 *statp = op->status;
3461}
3462
3463/*
3464 * Encode the reply stored in the stateowner reply cache
3465 *
3466 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3467 * previously sent already encoded operation.
3468 *
3469 * called with nfs4_lock_state() held
3470 */
3471void
3472nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3473{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003474 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 struct nfs4_replay *rp = op->replay;
3476
3477 BUG_ON(!rp);
3478
3479 RESERVE_SPACE(8);
3480 WRITE32(op->opnum);
3481 *p++ = rp->rp_status; /* already xdr'ed */
3482 ADJUST_ARGS();
3483
3484 RESERVE_SPACE(rp->rp_buflen);
3485 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3486 ADJUST_ARGS();
3487}
3488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489int
Al Viro2ebbc012006-10-19 23:28:58 -07003490nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491{
3492 return xdr_ressize_check(rqstp, p);
3493}
3494
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003495int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496{
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003497 struct svc_rqst *rqstp = rq;
3498 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 if (args->ops != args->iops) {
3501 kfree(args->ops);
3502 args->ops = args->iops;
3503 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003504 kfree(args->tmpp);
3505 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 while (args->to_free) {
3507 struct tmpbuf *tb = args->to_free;
3508 args->to_free = tb->next;
3509 tb->release(tb->buf);
3510 kfree(tb);
3511 }
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003512 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513}
3514
3515int
Al Viro2ebbc012006-10-19 23:28:58 -07003516nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 args->p = p;
3519 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3520 args->pagelist = rqstp->rq_arg.pages;
3521 args->pagelen = rqstp->rq_arg.page_len;
3522 args->tmpp = NULL;
3523 args->to_free = NULL;
3524 args->ops = args->iops;
3525 args->rqstp = rqstp;
3526
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003527 return !nfsd4_decode_compound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528}
3529
3530int
Al Viro2ebbc012006-10-19 23:28:58 -07003531nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532{
3533 /*
3534 * All that remains is to write the tag and operation count...
3535 */
Andy Adamson557ce262009-08-28 08:45:04 -04003536 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 struct kvec *iov;
3538 p = resp->tagp;
3539 *p++ = htonl(resp->taglen);
3540 memcpy(p, resp->tag, resp->taglen);
3541 p += XDR_QUADLEN(resp->taglen);
3542 *p++ = htonl(resp->opcnt);
3543
3544 if (rqstp->rq_res.page_len)
3545 iov = &rqstp->rq_res.tail[0];
3546 else
3547 iov = &rqstp->rq_res.head[0];
3548 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3549 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003550 if (nfsd4_has_session(cs)) {
3551 if (cs->status != nfserr_replay_cache) {
3552 nfsd4_store_cache_entry(resp);
3553 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__);
Benny Halevydbd65a72010-05-03 19:31:33 +03003554 cs->slot->sl_inuse = false;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003555 }
Benny Halevyd7682982010-05-12 00:13:54 +03003556 /* Renew the clientid on success and on replay */
3557 release_session_client(cs->session);
J. Bruce Fields76407f72010-06-22 14:10:14 -04003558 nfsd4_put_session(cs->session);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 return 1;
3561}
3562
3563/*
3564 * Local variables:
3565 * c-basic-offset: 8
3566 * End:
3567 */