blob: 406d0c4620f61afb69030446804ec90186135935 [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
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500136static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 /* We want more bytes than seem to be available.
139 * Maybe we need a new page, maybe we have just run out
140 */
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500141 unsigned int avail = (char *)argp->end - (char *)argp->p;
Al Viro2ebbc012006-10-19 23:28:58 -0700142 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (avail + argp->pagelen < nbytes)
144 return NULL;
145 if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */
146 return NULL;
147 /* ok, we can do it with the current plus the next page */
148 if (nbytes <= sizeof(argp->tmp))
149 p = argp->tmp;
150 else {
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800151 kfree(argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
153 if (!p)
154 return NULL;
155
156 }
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500157 /*
158 * The following memcpy is safe because read_buf is always
159 * called with nbytes > avail, and the two cases above both
160 * guarantee p points to at least nbytes bytes.
161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 memcpy(p, argp->p, avail);
163 /* step to next page */
164 argp->p = page_address(argp->pagelist[0]);
165 argp->pagelist++;
166 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +1000167 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 argp->pagelen = 0;
169 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +1000170 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 argp->pagelen -= PAGE_SIZE;
172 }
173 memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
174 argp->p += XDR_QUADLEN(nbytes - avail);
175 return p;
176}
177
Andy Adamson60adfc52009-04-03 08:28:50 +0300178static int zero_clientid(clientid_t *clid)
179{
180 return (clid->cl_boot == 0) && (clid->cl_id == 0);
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static int
184defer_free(struct nfsd4_compoundargs *argp,
185 void (*release)(const void *), void *p)
186{
187 struct tmpbuf *tb;
188
189 tb = kmalloc(sizeof(*tb), GFP_KERNEL);
190 if (!tb)
191 return -ENOMEM;
192 tb->buf = p;
193 tb->release = release;
194 tb->next = argp->to_free;
195 argp->to_free = tb;
196 return 0;
197}
198
Al Viro2ebbc012006-10-19 23:28:58 -0700199static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (p == argp->tmp) {
Thomas Meyer67114fe2011-11-17 23:43:40 +0100202 p = kmemdup(argp->tmp, nbytes, GFP_KERNEL);
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800203 if (!p)
204 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 } else {
Eric Sesterhenn73dff8b2006-10-03 23:37:14 +0200206 BUG_ON(p != argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 argp->tmpp = NULL;
208 }
209 if (defer_free(argp, kfree, p)) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800210 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return NULL;
212 } else
213 return (char *)p;
214}
215
Al Virob37ad282006-10-19 23:28:59 -0700216static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
218{
219 u32 bmlen;
220 DECODE_HEAD;
221
222 bmval[0] = 0;
223 bmval[1] = 0;
Andy Adamson7e705702009-04-03 08:29:11 +0300224 bmval[2] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 READ_BUF(4);
227 READ32(bmlen);
228 if (bmlen > 1000)
229 goto xdr_error;
230
231 READ_BUF(bmlen << 2);
232 if (bmlen > 0)
233 READ32(bmval[0]);
234 if (bmlen > 1)
235 READ32(bmval[1]);
Andy Adamson7e705702009-04-03 08:29:11 +0300236 if (bmlen > 2)
237 READ32(bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 DECODE_TAIL;
240}
241
Al Virob37ad282006-10-19 23:28:59 -0700242static __be32
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800243nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300244 struct iattr *iattr, struct nfs4_acl **acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 int expected_len, len = 0;
247 u32 dummy32;
248 char *buf;
Al Virob8dd7b92006-10-19 23:29:01 -0700249 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 DECODE_HEAD;
252 iattr->ia_valid = 0;
253 if ((status = nfsd4_decode_bitmap(argp, bmval)))
254 return status;
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 READ_BUF(4);
257 READ32(expected_len);
258
259 if (bmval[0] & FATTR4_WORD0_SIZE) {
260 READ_BUF(8);
261 len += 8;
262 READ64(iattr->ia_size);
263 iattr->ia_valid |= ATTR_SIZE;
264 }
265 if (bmval[0] & FATTR4_WORD0_ACL) {
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800266 int nace;
267 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 READ_BUF(4); len += 4;
270 READ32(nace);
271
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800272 if (nace > NFS4_ACL_MAX)
273 return nfserr_resource;
274
275 *acl = nfs4_acl_new(nace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (*acl == NULL) {
Al Virob8dd7b92006-10-19 23:29:01 -0700277 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 goto out_nfserr;
279 }
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800280 defer_free(argp, kfree, *acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800282 (*acl)->naces = nace;
283 for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 READ_BUF(16); len += 16;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800285 READ32(ace->type);
286 READ32(ace->flag);
287 READ32(ace->access_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 READ32(dummy32);
289 READ_BUF(dummy32);
290 len += XDR_QUADLEN(dummy32) << 2;
291 READMEM(buf, dummy32);
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800292 ace->whotype = nfs4_acl_get_whotype(buf, dummy32);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500293 status = nfs_ok;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800294 if (ace->whotype != NFS4_ACL_WHO_NAMED)
295 ace->who = 0;
296 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
J. Bruce Fields3c726022011-01-04 17:53:52 -0500297 status = nfsd_map_name_to_gid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800298 buf, dummy32, &ace->who);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 else
J. Bruce Fields3c726022011-01-04 17:53:52 -0500300 status = nfsd_map_name_to_uid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800301 buf, dummy32, &ace->who);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500302 if (status)
303 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305 } else
306 *acl = NULL;
307 if (bmval[1] & FATTR4_WORD1_MODE) {
308 READ_BUF(4);
309 len += 4;
310 READ32(iattr->ia_mode);
311 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
312 iattr->ia_valid |= ATTR_MODE;
313 }
314 if (bmval[1] & FATTR4_WORD1_OWNER) {
315 READ_BUF(4);
316 len += 4;
317 READ32(dummy32);
318 READ_BUF(dummy32);
319 len += (XDR_QUADLEN(dummy32) << 2);
320 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100321 if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
322 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 iattr->ia_valid |= ATTR_UID;
324 }
325 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
326 READ_BUF(4);
327 len += 4;
328 READ32(dummy32);
329 READ_BUF(dummy32);
330 len += (XDR_QUADLEN(dummy32) << 2);
331 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100332 if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
333 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 iattr->ia_valid |= ATTR_GID;
335 }
336 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
337 READ_BUF(4);
338 len += 4;
339 READ32(dummy32);
340 switch (dummy32) {
341 case NFS4_SET_TO_CLIENT_TIME:
342 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
343 all 32 bits of 'nseconds'. */
344 READ_BUF(12);
345 len += 12;
346 READ32(dummy32);
347 if (dummy32)
348 return nfserr_inval;
349 READ32(iattr->ia_atime.tv_sec);
350 READ32(iattr->ia_atime.tv_nsec);
351 if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
352 return nfserr_inval;
353 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
354 break;
355 case NFS4_SET_TO_SERVER_TIME:
356 iattr->ia_valid |= ATTR_ATIME;
357 break;
358 default:
359 goto xdr_error;
360 }
361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
363 READ_BUF(4);
364 len += 4;
365 READ32(dummy32);
366 switch (dummy32) {
367 case NFS4_SET_TO_CLIENT_TIME:
368 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
369 all 32 bits of 'nseconds'. */
370 READ_BUF(12);
371 len += 12;
372 READ32(dummy32);
373 if (dummy32)
374 return nfserr_inval;
375 READ32(iattr->ia_mtime.tv_sec);
376 READ32(iattr->ia_mtime.tv_nsec);
377 if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
378 return nfserr_inval;
379 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
380 break;
381 case NFS4_SET_TO_SERVER_TIME:
382 iattr->ia_valid |= ATTR_MTIME;
383 break;
384 default:
385 goto xdr_error;
386 }
387 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800388 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
389 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
390 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2)
391 READ_BUF(expected_len - len);
392 else if (len != expected_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 goto xdr_error;
394
395 DECODE_TAIL;
396
397out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -0700398 status = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 goto out;
400}
401
Al Virob37ad282006-10-19 23:28:59 -0700402static __be32
Benny Halevye31a1b62008-08-12 20:46:18 +0300403nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
404{
405 DECODE_HEAD;
406
407 READ_BUF(sizeof(stateid_t));
408 READ32(sid->si_generation);
409 COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
410
411 DECODE_TAIL;
412}
413
414static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
416{
417 DECODE_HEAD;
418
419 READ_BUF(4);
420 READ32(access->ac_req_access);
421
422 DECODE_TAIL;
423}
424
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400425static __be32 nfsd4_decode_cb_sec(struct nfsd4_compoundargs *argp, struct nfsd4_cb_sec *cbs)
426{
427 DECODE_HEAD;
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500428 u32 dummy, uid, gid;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400429 char *machine_name;
430 int i;
431 int nr_secflavs;
432
433 /* callback_sec_params4 */
434 READ_BUF(4);
435 READ32(nr_secflavs);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500436 cbs->flavor = (u32)(-1);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400437 for (i = 0; i < nr_secflavs; ++i) {
438 READ_BUF(4);
439 READ32(dummy);
440 switch (dummy) {
441 case RPC_AUTH_NULL:
442 /* Nothing to read */
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500443 if (cbs->flavor == (u32)(-1))
444 cbs->flavor = RPC_AUTH_NULL;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400445 break;
446 case RPC_AUTH_UNIX:
447 READ_BUF(8);
448 /* stamp */
449 READ32(dummy);
450
451 /* machine name */
452 READ32(dummy);
453 READ_BUF(dummy);
454 SAVEMEM(machine_name, dummy);
455
456 /* uid, gid */
457 READ_BUF(8);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500458 READ32(uid);
459 READ32(gid);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400460
461 /* more gids */
462 READ_BUF(4);
463 READ32(dummy);
464 READ_BUF(dummy * 4);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500465 if (cbs->flavor == (u32)(-1)) {
466 cbs->uid = uid;
467 cbs->gid = gid;
468 cbs->flavor = RPC_AUTH_UNIX;
469 }
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400470 break;
471 case RPC_AUTH_GSS:
472 dprintk("RPC_AUTH_GSS callback secflavor "
473 "not supported!\n");
474 READ_BUF(8);
475 /* gcbp_service */
476 READ32(dummy);
477 /* gcbp_handle_from_server */
478 READ32(dummy);
479 READ_BUF(dummy);
480 p += XDR_QUADLEN(dummy);
481 /* gcbp_handle_from_client */
482 READ_BUF(4);
483 READ32(dummy);
484 READ_BUF(dummy);
485 break;
486 default:
487 dprintk("Illegal callback secflavor\n");
488 return nfserr_inval;
489 }
490 }
491 DECODE_TAIL;
492}
493
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -0400494static __be32 nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs *argp, struct nfsd4_backchannel_ctl *bc)
495{
496 DECODE_HEAD;
497
498 READ_BUF(4);
499 READ32(bc->bc_cb_program);
500 nfsd4_decode_cb_sec(argp, &bc->bc_cb_sec);
501
502 DECODE_TAIL;
503}
504
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400505static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
506{
507 DECODE_HEAD;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400508
509 READ_BUF(NFS4_MAX_SESSIONID_LEN + 8);
510 COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
511 READ32(bcts->dir);
Bryan Schumaker6ce23572011-04-27 15:47:16 -0400512 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
513 * could help us figure out we should be using it. */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400514 DECODE_TAIL;
515}
516
Al Virob37ad282006-10-19 23:28:59 -0700517static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
519{
520 DECODE_HEAD;
521
Benny Halevye31a1b62008-08-12 20:46:18 +0300522 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300524 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 DECODE_TAIL;
527}
528
529
Al Virob37ad282006-10-19 23:28:59 -0700530static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
532{
533 DECODE_HEAD;
534
535 READ_BUF(12);
536 READ64(commit->co_offset);
537 READ32(commit->co_count);
538
539 DECODE_TAIL;
540}
541
Al Virob37ad282006-10-19 23:28:59 -0700542static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
544{
545 DECODE_HEAD;
546
547 READ_BUF(4);
548 READ32(create->cr_type);
549 switch (create->cr_type) {
550 case NF4LNK:
551 READ_BUF(4);
552 READ32(create->cr_linklen);
553 READ_BUF(create->cr_linklen);
554 SAVEMEM(create->cr_linkname, create->cr_linklen);
555 break;
556 case NF4BLK:
557 case NF4CHR:
558 READ_BUF(8);
559 READ32(create->cr_specdata1);
560 READ32(create->cr_specdata2);
561 break;
562 case NF4SOCK:
563 case NF4FIFO:
564 case NF4DIR:
565 default:
566 break;
567 }
568
569 READ_BUF(4);
570 READ32(create->cr_namelen);
571 READ_BUF(create->cr_namelen);
572 SAVEMEM(create->cr_name, create->cr_namelen);
573 if ((status = check_filename(create->cr_name, create->cr_namelen, nfserr_inval)))
574 return status;
575
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800576 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
577 &create->cr_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300578 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 goto out;
580
581 DECODE_TAIL;
582}
583
Al Virob37ad282006-10-19 23:28:59 -0700584static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
586{
Benny Halevye31a1b62008-08-12 20:46:18 +0300587 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
Al Virob37ad282006-10-19 23:28:59 -0700590static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
592{
593 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
594}
595
Al Virob37ad282006-10-19 23:28:59 -0700596static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
598{
599 DECODE_HEAD;
600
601 READ_BUF(4);
602 READ32(link->li_namelen);
603 READ_BUF(link->li_namelen);
604 SAVEMEM(link->li_name, link->li_namelen);
605 if ((status = check_filename(link->li_name, link->li_namelen, nfserr_inval)))
606 return status;
607
608 DECODE_TAIL;
609}
610
Al Virob37ad282006-10-19 23:28:59 -0700611static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
613{
614 DECODE_HEAD;
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /*
617 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
618 */
619 READ_BUF(28);
620 READ32(lock->lk_type);
621 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
622 goto xdr_error;
623 READ32(lock->lk_reclaim);
624 READ64(lock->lk_offset);
625 READ64(lock->lk_length);
626 READ32(lock->lk_is_new);
627
628 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300629 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300631 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
632 if (status)
633 return status;
634 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 READ32(lock->lk_new_lock_seqid);
636 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
637 READ32(lock->lk_new_owner.len);
638 READ_BUF(lock->lk_new_owner.len);
639 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
640 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300641 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
642 if (status)
643 return status;
644 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 READ32(lock->lk_old_lock_seqid);
646 }
647
648 DECODE_TAIL;
649}
650
Al Virob37ad282006-10-19 23:28:59 -0700651static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
653{
654 DECODE_HEAD;
655
656 READ_BUF(32);
657 READ32(lockt->lt_type);
658 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
659 goto xdr_error;
660 READ64(lockt->lt_offset);
661 READ64(lockt->lt_length);
662 COPYMEM(&lockt->lt_clientid, 8);
663 READ32(lockt->lt_owner.len);
664 READ_BUF(lockt->lt_owner.len);
665 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
666
667 DECODE_TAIL;
668}
669
Al Virob37ad282006-10-19 23:28:59 -0700670static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
672{
673 DECODE_HEAD;
674
Benny Halevye31a1b62008-08-12 20:46:18 +0300675 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 READ32(locku->lu_type);
677 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
678 goto xdr_error;
679 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300680 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
681 if (status)
682 return status;
683 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 READ64(locku->lu_offset);
685 READ64(locku->lu_length);
686
687 DECODE_TAIL;
688}
689
Al Virob37ad282006-10-19 23:28:59 -0700690static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
692{
693 DECODE_HEAD;
694
695 READ_BUF(4);
696 READ32(lookup->lo_len);
697 READ_BUF(lookup->lo_len);
698 SAVEMEM(lookup->lo_name, lookup->lo_len);
699 if ((status = check_filename(lookup->lo_name, lookup->lo_len, nfserr_noent)))
700 return status;
701
702 DECODE_TAIL;
703}
704
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200705static __be32 nfsd4_decode_share_access(struct nfsd4_compoundargs *argp, u32 *share_access, u32 *deleg_want, u32 *deleg_when)
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400706{
707 __be32 *p;
708 u32 w;
709
710 READ_BUF(4);
711 READ32(w);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200712 *share_access = w & NFS4_SHARE_ACCESS_MASK;
713 *deleg_want = w & NFS4_SHARE_WANT_MASK;
714 if (deleg_when)
715 *deleg_when = w & NFS4_SHARE_WHEN_MASK;
716
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400717 switch (w & NFS4_SHARE_ACCESS_MASK) {
718 case NFS4_SHARE_ACCESS_READ:
719 case NFS4_SHARE_ACCESS_WRITE:
720 case NFS4_SHARE_ACCESS_BOTH:
721 break;
722 default:
723 return nfserr_bad_xdr;
724 }
Benny Halevyfc0d14f2011-10-27 20:43:01 +0200725 w &= ~NFS4_SHARE_ACCESS_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400726 if (!w)
727 return nfs_ok;
728 if (!argp->minorversion)
729 return nfserr_bad_xdr;
730 switch (w & NFS4_SHARE_WANT_MASK) {
731 case NFS4_SHARE_WANT_NO_PREFERENCE:
732 case NFS4_SHARE_WANT_READ_DELEG:
733 case NFS4_SHARE_WANT_WRITE_DELEG:
734 case NFS4_SHARE_WANT_ANY_DELEG:
735 case NFS4_SHARE_WANT_NO_DELEG:
736 case NFS4_SHARE_WANT_CANCEL:
737 break;
738 default:
739 return nfserr_bad_xdr;
740 }
Benny Halevy92bac8c2011-10-19 19:13:29 -0700741 w &= ~NFS4_SHARE_WANT_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400742 if (!w)
743 return nfs_ok;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200744
745 if (!deleg_when) /* open_downgrade */
746 return nfserr_inval;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400747 switch (w) {
748 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL:
749 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED:
Benny Halevyc668fc62011-10-19 19:13:13 -0700750 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL |
751 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED):
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400752 return nfs_ok;
753 }
754xdr_error:
755 return nfserr_bad_xdr;
756}
757
758static __be32 nfsd4_decode_share_deny(struct nfsd4_compoundargs *argp, u32 *x)
759{
760 __be32 *p;
761
762 READ_BUF(4);
763 READ32(*x);
764 /* Note: unlinke access bits, deny bits may be zero. */
Dan Carpenter01cd4af2011-10-17 10:41:17 +0300765 if (*x & ~NFS4_SHARE_DENY_BOTH)
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400766 return nfserr_bad_xdr;
767 return nfs_ok;
768xdr_error:
769 return nfserr_bad_xdr;
770}
771
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400772static __be32 nfsd4_decode_opaque(struct nfsd4_compoundargs *argp, struct xdr_netobj *o)
773{
774 __be32 *p;
775
776 READ_BUF(4);
777 READ32(o->len);
778
779 if (o->len == 0 || o->len > NFS4_OPAQUE_LIMIT)
780 return nfserr_bad_xdr;
781
782 READ_BUF(o->len);
783 SAVEMEM(o->data, o->len);
784 return nfs_ok;
785xdr_error:
786 return nfserr_bad_xdr;
787}
788
Al Virob37ad282006-10-19 23:28:59 -0700789static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
791{
792 DECODE_HEAD;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200793 u32 dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 memset(open->op_bmval, 0, sizeof(open->op_bmval));
796 open->op_iattr.ia_valid = 0;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400797 open->op_openowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /* seqid, share_access, share_deny, clientid, ownerlen */
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400800 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 READ32(open->op_seqid);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200802 /* decode, yet ignore deleg_when until supported */
803 status = nfsd4_decode_share_access(argp, &open->op_share_access,
804 &open->op_deleg_want, &dummy);
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400805 if (status)
806 goto xdr_error;
807 status = nfsd4_decode_share_deny(argp, &open->op_share_deny);
808 if (status)
809 goto xdr_error;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400810 READ_BUF(sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 COPYMEM(&open->op_clientid, sizeof(clientid_t));
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400812 status = nfsd4_decode_opaque(argp, &open->op_owner);
813 if (status)
814 goto xdr_error;
815 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 READ32(open->op_create);
817 switch (open->op_create) {
818 case NFS4_OPEN_NOCREATE:
819 break;
820 case NFS4_OPEN_CREATE:
821 READ_BUF(4);
822 READ32(open->op_createmode);
823 switch (open->op_createmode) {
824 case NFS4_CREATE_UNCHECKED:
825 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300826 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800827 &open->op_iattr, &open->op_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300828 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto out;
830 break;
831 case NFS4_CREATE_EXCLUSIVE:
Chuck Leverab4684d2012-03-02 17:13:50 -0500832 READ_BUF(NFS4_VERIFIER_SIZE);
833 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300835 case NFS4_CREATE_EXCLUSIVE4_1:
836 if (argp->minorversion < 1)
837 goto xdr_error;
Chuck Leverab4684d2012-03-02 17:13:50 -0500838 READ_BUF(NFS4_VERIFIER_SIZE);
839 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300840 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800841 &open->op_iattr, &open->op_acl);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300842 if (status)
843 goto out;
844 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 default:
846 goto xdr_error;
847 }
848 break;
849 default:
850 goto xdr_error;
851 }
852
853 /* open_claim */
854 READ_BUF(4);
855 READ32(open->op_claim_type);
856 switch (open->op_claim_type) {
857 case NFS4_OPEN_CLAIM_NULL:
858 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
859 READ_BUF(4);
860 READ32(open->op_fname.len);
861 READ_BUF(open->op_fname.len);
862 SAVEMEM(open->op_fname.data, open->op_fname.len);
863 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
864 return status;
865 break;
866 case NFS4_OPEN_CLAIM_PREVIOUS:
867 READ_BUF(4);
868 READ32(open->op_delegate_type);
869 break;
870 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300871 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
872 if (status)
873 return status;
874 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 READ32(open->op_fname.len);
876 READ_BUF(open->op_fname.len);
877 SAVEMEM(open->op_fname.data, open->op_fname.len);
878 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
879 return status;
880 break;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400881 case NFS4_OPEN_CLAIM_FH:
882 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
883 if (argp->minorversion < 1)
884 goto xdr_error;
885 /* void */
886 break;
887 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
888 if (argp->minorversion < 1)
889 goto xdr_error;
890 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
891 if (status)
892 return status;
893 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 default:
895 goto xdr_error;
896 }
897
898 DECODE_TAIL;
899}
900
Al Virob37ad282006-10-19 23:28:59 -0700901static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
903{
904 DECODE_HEAD;
905
Benny Halevye31a1b62008-08-12 20:46:18 +0300906 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
907 if (status)
908 return status;
909 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 READ32(open_conf->oc_seqid);
911
912 DECODE_TAIL;
913}
914
Al Virob37ad282006-10-19 23:28:59 -0700915static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
917{
918 DECODE_HEAD;
919
Benny Halevye31a1b62008-08-12 20:46:18 +0300920 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
921 if (status)
922 return status;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400923 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 READ32(open_down->od_seqid);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200925 status = nfsd4_decode_share_access(argp, &open_down->od_share_access,
926 &open_down->od_deleg_want, NULL);
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400927 if (status)
928 return status;
929 status = nfsd4_decode_share_deny(argp, &open_down->od_share_deny);
930 if (status)
931 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 DECODE_TAIL;
933}
934
Al Virob37ad282006-10-19 23:28:59 -0700935static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
937{
938 DECODE_HEAD;
939
940 READ_BUF(4);
941 READ32(putfh->pf_fhlen);
942 if (putfh->pf_fhlen > NFS4_FHSIZE)
943 goto xdr_error;
944 READ_BUF(putfh->pf_fhlen);
945 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
946
947 DECODE_TAIL;
948}
949
Al Virob37ad282006-10-19 23:28:59 -0700950static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
952{
953 DECODE_HEAD;
954
Benny Halevye31a1b62008-08-12 20:46:18 +0300955 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
956 if (status)
957 return status;
958 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 READ64(read->rd_offset);
960 READ32(read->rd_length);
961
962 DECODE_TAIL;
963}
964
Al Virob37ad282006-10-19 23:28:59 -0700965static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
967{
968 DECODE_HEAD;
969
970 READ_BUF(24);
971 READ64(readdir->rd_cookie);
972 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
973 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
974 READ32(readdir->rd_maxcount);
975 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
976 goto out;
977
978 DECODE_TAIL;
979}
980
Al Virob37ad282006-10-19 23:28:59 -0700981static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
983{
984 DECODE_HEAD;
985
986 READ_BUF(4);
987 READ32(remove->rm_namelen);
988 READ_BUF(remove->rm_namelen);
989 SAVEMEM(remove->rm_name, remove->rm_namelen);
990 if ((status = check_filename(remove->rm_name, remove->rm_namelen, nfserr_noent)))
991 return status;
992
993 DECODE_TAIL;
994}
995
Al Virob37ad282006-10-19 23:28:59 -0700996static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
998{
999 DECODE_HEAD;
1000
1001 READ_BUF(4);
1002 READ32(rename->rn_snamelen);
1003 READ_BUF(rename->rn_snamelen + 4);
1004 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
1005 READ32(rename->rn_tnamelen);
1006 READ_BUF(rename->rn_tnamelen);
1007 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
1008 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen, nfserr_noent)))
1009 return status;
1010 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen, nfserr_inval)))
1011 return status;
1012
1013 DECODE_TAIL;
1014}
1015
Al Virob37ad282006-10-19 23:28:59 -07001016static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
1018{
1019 DECODE_HEAD;
1020
1021 READ_BUF(sizeof(clientid_t));
1022 COPYMEM(clientid, sizeof(clientid_t));
1023
1024 DECODE_TAIL;
1025}
1026
Al Virob37ad282006-10-19 23:28:59 -07001027static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -07001028nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
1029 struct nfsd4_secinfo *secinfo)
1030{
1031 DECODE_HEAD;
1032
1033 READ_BUF(4);
1034 READ32(secinfo->si_namelen);
1035 READ_BUF(secinfo->si_namelen);
1036 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
1037 status = check_filename(secinfo->si_name, secinfo->si_namelen,
1038 nfserr_noent);
1039 if (status)
1040 return status;
1041 DECODE_TAIL;
1042}
1043
1044static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001045nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
1046 struct nfsd4_secinfo_no_name *sin)
1047{
1048 DECODE_HEAD;
1049
1050 READ_BUF(4);
1051 READ32(sin->sin_style);
1052 DECODE_TAIL;
1053}
1054
1055static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
1057{
Benny Halevye31a1b62008-08-12 20:46:18 +03001058 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Benny Halevye31a1b62008-08-12 20:46:18 +03001060 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
1061 if (status)
1062 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +08001063 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
1064 &setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
Al Virob37ad282006-10-19 23:28:59 -07001067static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
1069{
1070 DECODE_HEAD;
1071
Chuck Leverab4684d2012-03-02 17:13:50 -05001072 READ_BUF(NFS4_VERIFIER_SIZE);
1073 COPYMEM(setclientid->se_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001075 status = nfsd4_decode_opaque(argp, &setclientid->se_name);
1076 if (status)
1077 return nfserr_bad_xdr;
1078 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 READ32(setclientid->se_callback_prog);
1080 READ32(setclientid->se_callback_netid_len);
1081
1082 READ_BUF(setclientid->se_callback_netid_len + 4);
1083 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
1084 READ32(setclientid->se_callback_addr_len);
1085
1086 READ_BUF(setclientid->se_callback_addr_len + 4);
1087 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
1088 READ32(setclientid->se_callback_ident);
1089
1090 DECODE_TAIL;
1091}
1092
Al Virob37ad282006-10-19 23:28:59 -07001093static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
1095{
1096 DECODE_HEAD;
1097
Chuck Leverab4684d2012-03-02 17:13:50 -05001098 READ_BUF(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 COPYMEM(&scd_c->sc_clientid, 8);
Chuck Leverab4684d2012-03-02 17:13:50 -05001100 COPYMEM(&scd_c->sc_confirm, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
1102 DECODE_TAIL;
1103}
1104
1105/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -07001106static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
1108{
1109#if 0
1110 struct nfsd4_compoundargs save = {
1111 .p = argp->p,
1112 .end = argp->end,
1113 .rqstp = argp->rqstp,
1114 };
1115 u32 ve_bmval[2];
1116 struct iattr ve_iattr; /* request */
1117 struct nfs4_acl *ve_acl; /* request */
1118#endif
1119 DECODE_HEAD;
1120
1121 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
1122 goto out;
1123
1124 /* For convenience's sake, we compare raw xdr'd attributes in
1125 * nfsd4_proc_verify; however we still decode here just to return
1126 * correct error in case of bad xdr. */
1127#if 0
1128 status = nfsd4_decode_fattr(ve_bmval, &ve_iattr, &ve_acl);
1129 if (status == nfserr_inval) {
1130 status = nfserrno(status);
1131 goto out;
1132 }
1133#endif
1134 READ_BUF(4);
1135 READ32(verify->ve_attrlen);
1136 READ_BUF(verify->ve_attrlen);
1137 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
1138
1139 DECODE_TAIL;
1140}
1141
Al Virob37ad282006-10-19 23:28:59 -07001142static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
1144{
1145 int avail;
1146 int v;
1147 int len;
1148 DECODE_HEAD;
1149
Benny Halevye31a1b62008-08-12 20:46:18 +03001150 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
1151 if (status)
1152 return status;
1153 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 READ64(write->wr_offset);
1155 READ32(write->wr_stable_how);
1156 if (write->wr_stable_how > 2)
1157 goto xdr_error;
1158 READ32(write->wr_buflen);
1159
1160 /* Sorry .. no magic macros for this.. *
1161 * READ_BUF(write->wr_buflen);
1162 * SAVEMEM(write->wr_buf, write->wr_buflen);
1163 */
1164 avail = (char*)argp->end - (char*)argp->p;
1165 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -04001166 dprintk("NFSD: xdr error (%s:%d)\n",
1167 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 goto xdr_error;
1169 }
NeilBrown3cc03b12006-10-04 02:15:47 -07001170 argp->rqstp->rq_vec[0].iov_base = p;
1171 argp->rqstp->rq_vec[0].iov_len = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 v = 0;
1173 len = write->wr_buflen;
NeilBrown3cc03b12006-10-04 02:15:47 -07001174 while (len > argp->rqstp->rq_vec[v].iov_len) {
1175 len -= argp->rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -07001177 argp->rqstp->rq_vec[v].iov_base = page_address(argp->pagelist[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 argp->pagelist++;
1179 if (argp->pagelen >= PAGE_SIZE) {
NeilBrown3cc03b12006-10-04 02:15:47 -07001180 argp->rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 argp->pagelen -= PAGE_SIZE;
1182 } else {
NeilBrown3cc03b12006-10-04 02:15:47 -07001183 argp->rqstp->rq_vec[v].iov_len = argp->pagelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 argp->pagelen -= len;
1185 }
1186 }
Al Viro2ebbc012006-10-19 23:28:58 -07001187 argp->end = (__be32*) (argp->rqstp->rq_vec[v].iov_base + argp->rqstp->rq_vec[v].iov_len);
1188 argp->p = (__be32*) (argp->rqstp->rq_vec[v].iov_base + (XDR_QUADLEN(len) << 2));
NeilBrown3cc03b12006-10-04 02:15:47 -07001189 argp->rqstp->rq_vec[v].iov_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 write->wr_vlen = v+1;
1191
1192 DECODE_TAIL;
1193}
1194
Al Virob37ad282006-10-19 23:28:59 -07001195static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1197{
1198 DECODE_HEAD;
1199
1200 READ_BUF(12);
1201 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1202 READ32(rlockowner->rl_owner.len);
1203 READ_BUF(rlockowner->rl_owner.len);
1204 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1205
Andy Adamson60adfc52009-04-03 08:28:50 +03001206 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1207 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 DECODE_TAIL;
1209}
1210
Al Virob37ad282006-10-19 23:28:59 -07001211static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001212nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001213 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001214{
Mi Jinlong5afa0402010-11-09 09:39:23 +08001215 int dummy, tmp;
Andy Adamson0733d212009-04-03 08:28:01 +03001216 DECODE_HEAD;
1217
1218 READ_BUF(NFS4_VERIFIER_SIZE);
1219 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1220
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001221 status = nfsd4_decode_opaque(argp, &exid->clname);
1222 if (status)
1223 return nfserr_bad_xdr;
Andy Adamson0733d212009-04-03 08:28:01 +03001224
1225 READ_BUF(4);
1226 READ32(exid->flags);
1227
1228 /* Ignore state_protect4_a */
1229 READ_BUF(4);
1230 READ32(exid->spa_how);
1231 switch (exid->spa_how) {
1232 case SP4_NONE:
1233 break;
1234 case SP4_MACH_CRED:
1235 /* spo_must_enforce */
1236 READ_BUF(4);
1237 READ32(dummy);
1238 READ_BUF(dummy * 4);
1239 p += dummy;
1240
1241 /* spo_must_allow */
1242 READ_BUF(4);
1243 READ32(dummy);
1244 READ_BUF(dummy * 4);
1245 p += dummy;
1246 break;
1247 case SP4_SSV:
1248 /* ssp_ops */
1249 READ_BUF(4);
1250 READ32(dummy);
1251 READ_BUF(dummy * 4);
1252 p += dummy;
1253
1254 READ_BUF(4);
1255 READ32(dummy);
1256 READ_BUF(dummy * 4);
1257 p += dummy;
1258
1259 /* ssp_hash_algs<> */
1260 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001261 READ32(tmp);
1262 while (tmp--) {
1263 READ_BUF(4);
1264 READ32(dummy);
1265 READ_BUF(dummy);
1266 p += XDR_QUADLEN(dummy);
1267 }
Andy Adamson0733d212009-04-03 08:28:01 +03001268
1269 /* ssp_encr_algs<> */
1270 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001271 READ32(tmp);
1272 while (tmp--) {
1273 READ_BUF(4);
1274 READ32(dummy);
1275 READ_BUF(dummy);
1276 p += XDR_QUADLEN(dummy);
1277 }
Andy Adamson0733d212009-04-03 08:28:01 +03001278
1279 /* ssp_window and ssp_num_gss_handles */
1280 READ_BUF(8);
1281 READ32(dummy);
1282 READ32(dummy);
1283 break;
1284 default:
1285 goto xdr_error;
1286 }
1287
1288 /* Ignore Implementation ID */
1289 READ_BUF(4); /* nfs_impl_id4 array length */
1290 READ32(dummy);
1291
1292 if (dummy > 1)
1293 goto xdr_error;
1294
1295 if (dummy == 1) {
1296 /* nii_domain */
1297 READ_BUF(4);
1298 READ32(dummy);
1299 READ_BUF(dummy);
1300 p += XDR_QUADLEN(dummy);
1301
1302 /* nii_name */
1303 READ_BUF(4);
1304 READ32(dummy);
1305 READ_BUF(dummy);
1306 p += XDR_QUADLEN(dummy);
1307
1308 /* nii_date */
1309 READ_BUF(12);
1310 p += 3;
1311 }
1312 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001313}
1314
1315static __be32
1316nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1317 struct nfsd4_create_session *sess)
1318{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001319 DECODE_HEAD;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001320 u32 dummy;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001321
1322 READ_BUF(16);
1323 COPYMEM(&sess->clientid, 8);
1324 READ32(sess->seqid);
1325 READ32(sess->flags);
1326
1327 /* Fore channel attrs */
1328 READ_BUF(28);
1329 READ32(dummy); /* headerpadsz is always 0 */
1330 READ32(sess->fore_channel.maxreq_sz);
1331 READ32(sess->fore_channel.maxresp_sz);
1332 READ32(sess->fore_channel.maxresp_cached);
1333 READ32(sess->fore_channel.maxops);
1334 READ32(sess->fore_channel.maxreqs);
1335 READ32(sess->fore_channel.nr_rdma_attrs);
1336 if (sess->fore_channel.nr_rdma_attrs == 1) {
1337 READ_BUF(4);
1338 READ32(sess->fore_channel.rdma_attrs);
1339 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1340 dprintk("Too many fore channel attr bitmaps!\n");
1341 goto xdr_error;
1342 }
1343
1344 /* Back channel attrs */
1345 READ_BUF(28);
1346 READ32(dummy); /* headerpadsz is always 0 */
1347 READ32(sess->back_channel.maxreq_sz);
1348 READ32(sess->back_channel.maxresp_sz);
1349 READ32(sess->back_channel.maxresp_cached);
1350 READ32(sess->back_channel.maxops);
1351 READ32(sess->back_channel.maxreqs);
1352 READ32(sess->back_channel.nr_rdma_attrs);
1353 if (sess->back_channel.nr_rdma_attrs == 1) {
1354 READ_BUF(4);
1355 READ32(sess->back_channel.rdma_attrs);
1356 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1357 dprintk("Too many back channel attr bitmaps!\n");
1358 goto xdr_error;
1359 }
1360
J. Bruce Fieldsacb28872012-03-27 14:50:26 -04001361 READ_BUF(4);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001362 READ32(sess->callback_prog);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -04001363 nfsd4_decode_cb_sec(argp, &sess->cb_sec);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001364 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001365}
1366
1367static __be32
1368nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1369 struct nfsd4_destroy_session *destroy_session)
1370{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001371 DECODE_HEAD;
1372 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1373 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1374
1375 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001376}
1377
1378static __be32
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001379nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp,
1380 struct nfsd4_free_stateid *free_stateid)
1381{
1382 DECODE_HEAD;
1383
1384 READ_BUF(sizeof(stateid_t));
1385 READ32(free_stateid->fr_stateid.si_generation);
1386 COPYMEM(&free_stateid->fr_stateid.si_opaque, sizeof(stateid_opaque_t));
1387
1388 DECODE_TAIL;
1389}
1390
1391static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001392nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1393 struct nfsd4_sequence *seq)
1394{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001395 DECODE_HEAD;
1396
1397 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1398 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1399 READ32(seq->seqid);
1400 READ32(seq->slotid);
1401 READ32(seq->maxslots);
1402 READ32(seq->cachethis);
1403
1404 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001405}
1406
Bryan Schumaker17456802011-07-13 10:50:48 -04001407static __be32
1408nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid)
1409{
Bryan Schumaker17456802011-07-13 10:50:48 -04001410 int i;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001411 __be32 *p, status;
1412 struct nfsd4_test_stateid_id *stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04001413
1414 READ_BUF(4);
1415 test_stateid->ts_num_ids = ntohl(*p++);
1416
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001417 INIT_LIST_HEAD(&test_stateid->ts_stateid_list);
Bryan Schumaker17456802011-07-13 10:50:48 -04001418
1419 for (i = 0; i < test_stateid->ts_num_ids; i++) {
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001420 stateid = kmalloc(sizeof(struct nfsd4_test_stateid_id), GFP_KERNEL);
1421 if (!stateid) {
Al Viroafcf6792012-04-13 00:15:37 -04001422 status = nfserrno(-ENOMEM);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001423 goto out;
1424 }
1425
1426 defer_free(argp, kfree, stateid);
1427 INIT_LIST_HEAD(&stateid->ts_id_list);
1428 list_add_tail(&stateid->ts_id_list, &test_stateid->ts_stateid_list);
1429
1430 status = nfsd4_decode_stateid(argp, &stateid->ts_id_stateid);
Bryan Schumaker17456802011-07-13 10:50:48 -04001431 if (status)
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001432 goto out;
Bryan Schumaker17456802011-07-13 10:50:48 -04001433 }
1434
1435 status = 0;
1436out:
1437 return status;
1438xdr_error:
1439 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__, __LINE__);
1440 status = nfserr_bad_xdr;
1441 goto out;
1442}
1443
Mi Jinlong345c2842011-10-20 17:51:39 +08001444static __be32 nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs *argp, struct nfsd4_destroy_clientid *dc)
1445{
1446 DECODE_HEAD;
1447
1448 READ_BUF(8);
1449 COPYMEM(&dc->clientid, 8);
1450
1451 DECODE_TAIL;
1452}
1453
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001454static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1455{
1456 DECODE_HEAD;
1457
1458 READ_BUF(4);
1459 READ32(rc->rca_one_fs);
1460
1461 DECODE_TAIL;
1462}
1463
Andy Adamson2db134e2009-04-03 08:27:55 +03001464static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001465nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1466{
1467 return nfs_ok;
1468}
1469
Benny Halevy3c375c62008-07-02 11:14:01 +03001470static __be32
1471nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1472{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001473 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001474}
1475
Benny Halevy347e0ad2008-07-02 11:13:41 +03001476typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1477
1478static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001479 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1480 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1481 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1482 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1483 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1484 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1485 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1486 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1487 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1488 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1489 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1490 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1491 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1492 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1493 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1494 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1495 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1496 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1497 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1498 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001499 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001500 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1501 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1502 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1503 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1504 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1505 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1506 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1507 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1508 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1509 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1510 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1511 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1512 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1513 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1514 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1515 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Benny Halevy347e0ad2008-07-02 11:13:41 +03001516};
1517
Andy Adamson2db134e2009-04-03 08:27:55 +03001518static nfsd4_dec nfsd41_dec_ops[] = {
Randy Dunlap9064caa2009-04-28 16:48:25 -07001519 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1520 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1521 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1522 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1523 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1524 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1525 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1526 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1527 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1528 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1529 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1530 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1531 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1532 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1533 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1534 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1535 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1536 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp,
1537 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1538 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
1539 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp,
1540 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1541 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1542 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1543 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1544 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1545 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1546 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp,
1547 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1548 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1549 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1550 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1551 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1552 [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp,
1553 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1554 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1555 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001556
1557 /* new operations for NFSv4.1 */
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04001558 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_backchannel_ctl,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001559 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001560 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1561 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1562 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001563 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001564 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1565 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1566 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1567 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1568 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1569 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001570 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001571 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1572 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
Bryan Schumaker17456802011-07-13 10:50:48 -04001573 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001574 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
Mi Jinlong345c2842011-10-20 17:51:39 +08001575 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_destroy_clientid,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001576 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Andy Adamson2db134e2009-04-03 08:27:55 +03001577};
1578
Benny Halevyf2feb962008-07-02 11:14:22 +03001579struct nfsd4_minorversion_ops {
1580 nfsd4_dec *decoders;
1581 int nops;
1582};
1583
1584static struct nfsd4_minorversion_ops nfsd4_minorversion[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001585 [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) },
Andy Adamson2db134e2009-04-03 08:27:55 +03001586 [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Benny Halevyf2feb962008-07-02 11:14:22 +03001587};
1588
Benny Halevy347e0ad2008-07-02 11:13:41 +03001589static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1591{
1592 DECODE_HEAD;
1593 struct nfsd4_op *op;
Benny Halevyf2feb962008-07-02 11:14:22 +03001594 struct nfsd4_minorversion_ops *ops;
J. Bruce Fields10910062011-01-24 12:11:02 -05001595 bool cachethis = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 int i;
1597
1598 /*
1599 * XXX: According to spec, we should check the tag
1600 * for UTF-8 compliance. I'm postponing this for
1601 * now because it seems that some clients do use
1602 * binary tags.
1603 */
1604 READ_BUF(4);
1605 READ32(argp->taglen);
1606 READ_BUF(argp->taglen + 8);
1607 SAVEMEM(argp->tag, argp->taglen);
1608 READ32(argp->minorversion);
1609 READ32(argp->opcnt);
1610
1611 if (argp->taglen > NFSD4_MAX_TAGLEN)
1612 goto xdr_error;
1613 if (argp->opcnt > 100)
1614 goto xdr_error;
1615
Tobias Klausere8c96f82006-03-24 03:15:34 -08001616 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1618 if (!argp->ops) {
1619 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001620 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 goto xdr_error;
1622 }
1623 }
1624
Benny Halevyf2feb962008-07-02 11:14:22 +03001625 if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion))
Benny Halevy30cff1f2008-07-02 11:13:18 +03001626 argp->opcnt = 0;
1627
Benny Halevyf2feb962008-07-02 11:14:22 +03001628 ops = &nfsd4_minorversion[argp->minorversion];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 for (i = 0; i < argp->opcnt; i++) {
1630 op = &argp->ops[i];
1631 op->replay = NULL;
1632
1633 /*
1634 * We can't use READ_BUF() here because we need to handle
1635 * a missing opcode as an OP_WRITE + 1. So we need to check
1636 * to see if we're truly at the end of our buffer or if there
1637 * is another page we need to flip to.
1638 */
1639
1640 if (argp->p == argp->end) {
1641 if (argp->pagelen < 4) {
1642 /* There isn't an opcode still on the wire */
1643 op->opnum = OP_WRITE + 1;
1644 op->status = nfserr_bad_xdr;
1645 argp->opcnt = i+1;
1646 break;
1647 }
1648
1649 /*
1650 * False alarm. We just hit a page boundary, but there
1651 * is still data available. Move pointer across page
1652 * boundary. *snip from READ_BUF*
1653 */
1654 argp->p = page_address(argp->pagelist[0]);
1655 argp->pagelist++;
1656 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +10001657 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 argp->pagelen = 0;
1659 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +10001660 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 argp->pagelen -= PAGE_SIZE;
1662 }
1663 }
1664 op->opnum = ntohl(*argp->p++);
1665
Ricardo Labiagade3cab72009-12-11 20:03:27 -08001666 if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP)
Benny Halevyf2feb962008-07-02 11:14:22 +03001667 op->status = ops->decoders[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001668 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 op->opnum = OP_ILLEGAL;
1670 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
1672
1673 if (op->status) {
1674 argp->opcnt = i+1;
1675 break;
1676 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001677 /*
1678 * We'll try to cache the result in the DRC if any one
1679 * op in the compound wants to be cached:
1680 */
1681 cachethis |= nfsd4_cache_this_op(op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001683 /* Sessions make the DRC unnecessary: */
1684 if (argp->minorversion)
1685 cachethis = false;
1686 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 DECODE_TAIL;
1689}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691#define WRITE32(n) *p++ = htonl(n)
1692#define WRITE64(n) do { \
1693 *p++ = htonl((u32)((n) >> 32)); \
1694 *p++ = htonl((u32)(n)); \
1695} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001696#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1698 memcpy(p, ptr, nbytes); \
1699 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001700}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001701
1702static void write32(__be32 **p, u32 n)
1703{
J. Bruce Fields45eaa1c2012-04-25 18:11:04 -04001704 *(*p)++ = htonl(n);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001705}
1706
1707static void write64(__be32 **p, u64 n)
1708{
J. Bruce Fields45eaa1c2012-04-25 18:11:04 -04001709 write32(p, (n >> 32));
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001710 write32(p, (u32)n);
1711}
1712
1713static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1714{
1715 if (IS_I_VERSION(inode)) {
1716 write64(p, inode->i_version);
1717 } else {
1718 write32(p, stat->ctime.tv_sec);
1719 write32(p, stat->ctime.tv_nsec);
1720 }
1721}
1722
1723static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1724{
1725 write32(p, c->atomic);
1726 if (c->change_supported) {
1727 write64(p, c->before_change);
1728 write64(p, c->after_change);
1729 } else {
1730 write32(p, c->before_ctime_sec);
1731 write32(p, c->before_ctime_nsec);
1732 write32(p, c->after_ctime_sec);
1733 write32(p, c->after_ctime_nsec);
1734 }
1735}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737#define RESERVE_SPACE(nbytes) do { \
1738 p = resp->p; \
1739 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1740} while (0)
1741#define ADJUST_ARGS() resp->p = p
1742
1743/*
1744 * Header routine to setup seqid operation replay cache
1745 */
1746#define ENCODE_SEQID_OP_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -07001747 __be32 *save; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 \
1749 save = resp->p;
1750
1751/*
NeilBrown7fb64ce2005-07-07 17:59:20 -07001752 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1753 * is where sequence id's are incremented, and the replay cache is filled.
1754 * Note that we increment sequence id's here, at the last moment, so we're sure
1755 * we know whether the error to be returned is a sequence id mutating error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 */
1757
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04001758static void encode_seqid_op_tail(struct nfsd4_compoundres *resp, __be32 *save, __be32 nfserr)
1759{
1760 struct nfs4_stateowner *stateowner = resp->cstate.replay_owner;
1761
1762 if (seqid_mutating_err(ntohl(nfserr)) && stateowner) {
1763 stateowner->so_seqid++;
1764 stateowner->so_replay.rp_status = nfserr;
1765 stateowner->so_replay.rp_buflen =
1766 (char *)resp->p - (char *)save;
1767 memcpy(stateowner->so_replay.rp_buf, save,
1768 stateowner->so_replay.rp_buflen);
J. Bruce Fields38c387b2011-09-16 17:42:48 -04001769 nfsd4_purge_closed_stateid(stateowner);
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04001770 }
1771}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001773/* Encode as an array of strings the string given with components
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001774 * separated @sep, escaped with esc_enter and esc_exit.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001775 */
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001776static __be32 nfsd4_encode_components_esc(char sep, char *components,
1777 __be32 **pp, int *buflen,
1778 char esc_enter, char esc_exit)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001779{
Al Viro2ebbc012006-10-19 23:28:58 -07001780 __be32 *p = *pp;
1781 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001782 int strlen, count=0;
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001783 char *str, *end, *next;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001784
1785 dprintk("nfsd4_encode_components(%s)\n", components);
1786 if ((*buflen -= 4) < 0)
1787 return nfserr_resource;
1788 WRITE32(0); /* We will fill this in with @count later */
1789 end = str = components;
1790 while (*end) {
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001791 bool found_esc = false;
1792
1793 /* try to parse as esc_start, ..., esc_end, sep */
1794 if (*str == esc_enter) {
1795 for (; *end && (*end != esc_exit); end++)
1796 /* find esc_exit or end of string */;
1797 next = end + 1;
1798 if (*end && (!*next || *next == sep)) {
1799 str++;
1800 found_esc = true;
1801 }
1802 }
1803
1804 if (!found_esc)
1805 for (; *end && (*end != sep); end++)
1806 /* find sep or end of string */;
1807
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001808 strlen = end - str;
1809 if (strlen) {
1810 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1811 return nfserr_resource;
1812 WRITE32(strlen);
1813 WRITEMEM(str, strlen);
1814 count++;
1815 }
1816 else
1817 end++;
1818 str = end;
1819 }
1820 *pp = p;
1821 p = countp;
1822 WRITE32(count);
1823 return 0;
1824}
1825
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001826/* Encode as an array of strings the string given with components
1827 * separated @sep.
1828 */
1829static __be32 nfsd4_encode_components(char sep, char *components,
1830 __be32 **pp, int *buflen)
1831{
1832 return nfsd4_encode_components_esc(sep, components, pp, buflen, 0, 0);
1833}
1834
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001835/*
1836 * encode a location element of a fs_locations structure
1837 */
Al Virob37ad282006-10-19 23:28:59 -07001838static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001839 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001840{
Al Virob37ad282006-10-19 23:28:59 -07001841 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001842 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001843
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001844 status = nfsd4_encode_components_esc(':', location->hosts, &p, buflen,
1845 '[', ']');
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001846 if (status)
1847 return status;
1848 status = nfsd4_encode_components('/', location->path, &p, buflen);
1849 if (status)
1850 return status;
1851 *pp = p;
1852 return 0;
1853}
1854
1855/*
Trond Myklebusted748aa2011-09-12 19:37:06 -04001856 * Encode a path in RFC3530 'pathname4' format
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001857 */
Trond Myklebusted748aa2011-09-12 19:37:06 -04001858static __be32 nfsd4_encode_path(const struct path *root,
1859 const struct path *path, __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001860{
Trond Myklebusted748aa2011-09-12 19:37:06 -04001861 struct path cur = {
1862 .mnt = path->mnt,
1863 .dentry = path->dentry,
1864 };
1865 __be32 *p = *pp;
1866 struct dentry **components = NULL;
1867 unsigned int ncomponents = 0;
1868 __be32 err = nfserr_jukebox;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001869
Trond Myklebusted748aa2011-09-12 19:37:06 -04001870 dprintk("nfsd4_encode_components(");
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001871
Trond Myklebusted748aa2011-09-12 19:37:06 -04001872 path_get(&cur);
1873 /* First walk the path up to the nfsd root, and store the
1874 * dentries/path components in an array.
1875 */
1876 for (;;) {
1877 if (cur.dentry == root->dentry && cur.mnt == root->mnt)
1878 break;
1879 if (cur.dentry == cur.mnt->mnt_root) {
1880 if (follow_up(&cur))
1881 continue;
1882 goto out_free;
1883 }
1884 if ((ncomponents & 15) == 0) {
1885 struct dentry **new;
1886 new = krealloc(components,
1887 sizeof(*new) * (ncomponents + 16),
1888 GFP_KERNEL);
1889 if (!new)
1890 goto out_free;
1891 components = new;
1892 }
1893 components[ncomponents++] = cur.dentry;
1894 cur.dentry = dget_parent(cur.dentry);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001895 }
Trond Myklebusted748aa2011-09-12 19:37:06 -04001896
1897 *buflen -= 4;
1898 if (*buflen < 0)
1899 goto out_free;
1900 WRITE32(ncomponents);
1901
1902 while (ncomponents) {
1903 struct dentry *dentry = components[ncomponents - 1];
1904 unsigned int len = dentry->d_name.len;
1905
1906 *buflen -= 4 + (XDR_QUADLEN(len) << 2);
1907 if (*buflen < 0)
1908 goto out_free;
1909 WRITE32(len);
1910 WRITEMEM(dentry->d_name.name, len);
1911 dprintk("/%s", dentry->d_name.name);
1912 dput(dentry);
1913 ncomponents--;
1914 }
1915
1916 *pp = p;
1917 err = 0;
1918out_free:
1919 dprintk(")\n");
1920 while (ncomponents)
1921 dput(components[--ncomponents]);
1922 kfree(components);
1923 path_put(&cur);
1924 return err;
1925}
1926
1927static __be32 nfsd4_encode_fsloc_fsroot(struct svc_rqst *rqstp,
1928 const struct path *path, __be32 **pp, int *buflen)
1929{
1930 struct svc_export *exp_ps;
1931 __be32 res;
1932
1933 exp_ps = rqst_find_fsidzero_export(rqstp);
1934 if (IS_ERR(exp_ps))
1935 return nfserrno(PTR_ERR(exp_ps));
1936 res = nfsd4_encode_path(&exp_ps->ex_path, path, pp, buflen);
1937 exp_put(exp_ps);
1938 return res;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001939}
1940
1941/*
1942 * encode a fs_locations structure
1943 */
Al Virob37ad282006-10-19 23:28:59 -07001944static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001945 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001946 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001947{
Al Virob37ad282006-10-19 23:28:59 -07001948 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001949 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001950 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001951 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001952
Trond Myklebusted748aa2011-09-12 19:37:06 -04001953 status = nfsd4_encode_fsloc_fsroot(rqstp, &exp->ex_path, &p, buflen);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001954 if (status)
1955 return status;
1956 if ((*buflen -= 4) < 0)
1957 return nfserr_resource;
1958 WRITE32(fslocs->locations_count);
1959 for (i=0; i<fslocs->locations_count; i++) {
1960 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1961 &p, buflen);
1962 if (status)
1963 return status;
1964 }
1965 *pp = p;
1966 return 0;
1967}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04001969static u32 nfs4_file_type(umode_t mode)
1970{
1971 switch (mode & S_IFMT) {
1972 case S_IFIFO: return NF4FIFO;
1973 case S_IFCHR: return NF4CHR;
1974 case S_IFDIR: return NF4DIR;
1975 case S_IFBLK: return NF4BLK;
1976 case S_IFLNK: return NF4LNK;
1977 case S_IFREG: return NF4REG;
1978 case S_IFSOCK: return NF4SOCK;
1979 default: return NF4BAD;
1980 };
1981}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Al Virob37ad282006-10-19 23:28:59 -07001983static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001985 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
1987 int status;
1988
1989 if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1990 return nfserr_resource;
1991 if (whotype != NFS4_ACL_WHO_NAMED)
1992 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
1993 else if (group)
1994 status = nfsd_map_gid_to_name(rqstp, id, (u8 *)(*p + 1));
1995 else
1996 status = nfsd_map_uid_to_name(rqstp, id, (u8 *)(*p + 1));
1997 if (status < 0)
1998 return nfserrno(status);
1999 *p = xdr_encode_opaque(*p, NULL, status);
2000 *buflen -= (XDR_QUADLEN(status) << 2) + 4;
2001 BUG_ON(*buflen < 0);
2002 return 0;
2003}
2004
Al Virob37ad282006-10-19 23:28:59 -07002005static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07002006nfsd4_encode_user(struct svc_rqst *rqstp, uid_t uid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007{
2008 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, uid, 0, p, buflen);
2009}
2010
Al Virob37ad282006-10-19 23:28:59 -07002011static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07002012nfsd4_encode_group(struct svc_rqst *rqstp, uid_t gid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
2014 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, gid, 1, p, buflen);
2015}
2016
Al Virob37ad282006-10-19 23:28:59 -07002017static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018nfsd4_encode_aclname(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07002019 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
2021 return nfsd4_encode_name(rqstp, whotype, id, group, p, buflen);
2022}
2023
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002024#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
2025 FATTR4_WORD0_RDATTR_ERROR)
2026#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
2027
Al Virob37ad282006-10-19 23:28:59 -07002028static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002029{
2030 /* As per referral draft: */
2031 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
2032 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
2033 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
2034 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
2035 *rdattr_err = NFSERR_MOVED;
2036 else
2037 return nfserr_moved;
2038 }
2039 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
2040 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
2041 return 0;
2042}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002044
2045static int get_parent_attributes(struct svc_export *exp, struct kstat *stat)
2046{
2047 struct path path = exp->ex_path;
2048 int err;
2049
2050 path_get(&path);
2051 while (follow_up(&path)) {
2052 if (path.dentry != path.mnt->mnt_root)
2053 break;
2054 }
2055 err = vfs_getattr(path.mnt, path.dentry, stat);
2056 path_put(&path);
2057 return err;
2058}
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060/*
2061 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2062 * ourselves.
2063 *
2064 * @countp is the buffer size in _words_; upon successful return this becomes
2065 * replaced with the number of words written.
2066 */
Al Virob37ad282006-10-19 23:28:59 -07002067__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07002069 struct dentry *dentry, __be32 *buffer, int *countp, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002070 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
2072 u32 bmval0 = bmval[0];
2073 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03002074 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 struct kstat stat;
2076 struct svc_fh tempfh;
2077 struct kstatfs statfs;
2078 int buflen = *countp << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07002079 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 u32 dummy;
2081 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002082 u32 rdattr_err = 0;
Al Viro2ebbc012006-10-19 23:28:58 -07002083 __be32 *p = buffer;
Al Virob37ad282006-10-19 23:28:59 -07002084 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002085 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 int aclsupport = 0;
2087 struct nfs4_acl *acl = NULL;
Andy Adamson7e705702009-04-03 08:29:11 +03002088 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2089 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002090 struct path path = {
2091 .mnt = exp->ex_path.mnt,
2092 .dentry = dentry,
2093 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
2095 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03002096 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
2097 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
2098 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002100 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03002101 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002102 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
2103 if (status)
2104 goto out;
2105 }
2106
Jan Blunck54775492008-02-14 19:38:39 -08002107 err = vfs_getattr(exp->ex_path.mnt, dentry, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07002108 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002110 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
2111 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
2113 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002114 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07002115 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 goto out_nfserr;
2117 }
2118 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
2119 fh_init(&tempfh, NFS4_FHSIZE);
2120 status = fh_compose(&tempfh, exp, dentry, NULL);
2121 if (status)
2122 goto out;
2123 fhp = &tempfh;
2124 }
2125 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
2126 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07002127 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
2128 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07002130 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07002132 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 status = nfserr_attrnotsupp;
2134 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07002135 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 goto out_nfserr;
2137 }
2138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002140 if (bmval2) {
2141 if ((buflen -= 16) < 0)
2142 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002143 WRITE32(3);
2144 WRITE32(bmval0);
2145 WRITE32(bmval1);
2146 WRITE32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002147 } else if (bmval1) {
2148 if ((buflen -= 12) < 0)
2149 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002150 WRITE32(2);
2151 WRITE32(bmval0);
2152 WRITE32(bmval1);
2153 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002154 if ((buflen -= 8) < 0)
2155 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002156 WRITE32(1);
2157 WRITE32(bmval0);
2158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 attrlenp = p++; /* to be backfilled later */
2160
2161 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03002162 u32 word0 = nfsd_suppattrs0(minorversion);
2163 u32 word1 = nfsd_suppattrs1(minorversion);
2164 u32 word2 = nfsd_suppattrs2(minorversion);
2165
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002166 if (!aclsupport)
2167 word0 &= ~FATTR4_WORD0_ACL;
Andy Adamson7e705702009-04-03 08:29:11 +03002168 if (!word2) {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002169 if ((buflen -= 12) < 0)
2170 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002171 WRITE32(2);
2172 WRITE32(word0);
2173 WRITE32(word1);
2174 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002175 if ((buflen -= 16) < 0)
2176 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002177 WRITE32(3);
2178 WRITE32(word0);
2179 WRITE32(word1);
2180 WRITE32(word2);
2181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
2183 if (bmval0 & FATTR4_WORD0_TYPE) {
2184 if ((buflen -= 4) < 0)
2185 goto out_resource;
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002186 dummy = nfs4_file_type(stat.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 if (dummy == NF4BAD)
2188 goto out_serverfault;
2189 WRITE32(dummy);
2190 }
2191 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
2192 if ((buflen -= 4) < 0)
2193 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07002194 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07002195 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07002196 else
NeilBrowne34ac862005-07-07 17:59:30 -07002197 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 if ((buflen -= 8) < 0)
2201 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002202 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
2204 if (bmval0 & FATTR4_WORD0_SIZE) {
2205 if ((buflen -= 8) < 0)
2206 goto out_resource;
2207 WRITE64(stat.size);
2208 }
2209 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
2210 if ((buflen -= 4) < 0)
2211 goto out_resource;
2212 WRITE32(1);
2213 }
2214 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
2215 if ((buflen -= 4) < 0)
2216 goto out_resource;
2217 WRITE32(1);
2218 }
2219 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
2220 if ((buflen -= 4) < 0)
2221 goto out_resource;
2222 WRITE32(0);
2223 }
2224 if (bmval0 & FATTR4_WORD0_FSID) {
2225 if ((buflen -= 16) < 0)
2226 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002227 if (exp->ex_fslocs.migrated) {
2228 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
2229 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002230 } else switch(fsid_source(fhp)) {
2231 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 WRITE64((u64)exp->ex_fsid);
2233 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002234 break;
2235 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 WRITE32(0);
2237 WRITE32(MAJOR(stat.dev));
2238 WRITE32(0);
2239 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08002240 break;
2241 case FSIDSOURCE_UUID:
2242 WRITEMEM(exp->ex_uuid, 16);
2243 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
2245 }
2246 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
2247 if ((buflen -= 4) < 0)
2248 goto out_resource;
2249 WRITE32(0);
2250 }
2251 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
2252 if ((buflen -= 4) < 0)
2253 goto out_resource;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05002254 WRITE32(nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
2256 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
2257 if ((buflen -= 4) < 0)
2258 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002259 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 }
2261 if (bmval0 & FATTR4_WORD0_ACL) {
2262 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 if (acl == NULL) {
2265 if ((buflen -= 4) < 0)
2266 goto out_resource;
2267
2268 WRITE32(0);
2269 goto out_acl;
2270 }
2271 if ((buflen -= 4) < 0)
2272 goto out_resource;
2273 WRITE32(acl->naces);
2274
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002275 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if ((buflen -= 4*3) < 0)
2277 goto out_resource;
2278 WRITE32(ace->type);
2279 WRITE32(ace->flag);
2280 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
2281 status = nfsd4_encode_aclname(rqstp, ace->whotype,
2282 ace->who, ace->flag & NFS4_ACE_IDENTIFIER_GROUP,
2283 &p, &buflen);
2284 if (status == nfserr_resource)
2285 goto out_resource;
2286 if (status)
2287 goto out;
2288 }
2289 }
2290out_acl:
2291 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
2292 if ((buflen -= 4) < 0)
2293 goto out_resource;
2294 WRITE32(aclsupport ?
2295 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
2296 }
2297 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
2298 if ((buflen -= 4) < 0)
2299 goto out_resource;
2300 WRITE32(1);
2301 }
2302 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
2303 if ((buflen -= 4) < 0)
2304 goto out_resource;
J. Bruce Fields2930d382012-06-05 16:52:06 -04002305 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
2308 if ((buflen -= 4) < 0)
2309 goto out_resource;
2310 WRITE32(1);
2311 }
2312 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2313 if ((buflen -= 4) < 0)
2314 goto out_resource;
2315 WRITE32(1);
2316 }
2317 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2318 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2319 if (buflen < 0)
2320 goto out_resource;
2321 WRITE32(fhp->fh_handle.fh_size);
2322 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2323 }
2324 if (bmval0 & FATTR4_WORD0_FILEID) {
2325 if ((buflen -= 8) < 0)
2326 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002327 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
2329 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2330 if ((buflen -= 8) < 0)
2331 goto out_resource;
2332 WRITE64((u64) statfs.f_ffree);
2333 }
2334 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2335 if ((buflen -= 8) < 0)
2336 goto out_resource;
2337 WRITE64((u64) statfs.f_ffree);
2338 }
2339 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2340 if ((buflen -= 8) < 0)
2341 goto out_resource;
2342 WRITE64((u64) statfs.f_files);
2343 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002344 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2345 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
2346 if (status == nfserr_resource)
2347 goto out_resource;
2348 if (status)
2349 goto out;
2350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2352 if ((buflen -= 4) < 0)
2353 goto out_resource;
2354 WRITE32(1);
2355 }
2356 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2357 if ((buflen -= 8) < 0)
2358 goto out_resource;
2359 WRITE64(~(u64)0);
2360 }
2361 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2362 if ((buflen -= 4) < 0)
2363 goto out_resource;
2364 WRITE32(255);
2365 }
2366 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2367 if ((buflen -= 4) < 0)
2368 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002369 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 }
2371 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2372 if ((buflen -= 8) < 0)
2373 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002374 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
2376 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2377 if ((buflen -= 8) < 0)
2378 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002379 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
2381 if (bmval1 & FATTR4_WORD1_MODE) {
2382 if ((buflen -= 4) < 0)
2383 goto out_resource;
2384 WRITE32(stat.mode & S_IALLUGO);
2385 }
2386 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2387 if ((buflen -= 4) < 0)
2388 goto out_resource;
2389 WRITE32(1);
2390 }
2391 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2392 if ((buflen -= 4) < 0)
2393 goto out_resource;
2394 WRITE32(stat.nlink);
2395 }
2396 if (bmval1 & FATTR4_WORD1_OWNER) {
2397 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
2398 if (status == nfserr_resource)
2399 goto out_resource;
2400 if (status)
2401 goto out;
2402 }
2403 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2404 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
2405 if (status == nfserr_resource)
2406 goto out_resource;
2407 if (status)
2408 goto out;
2409 }
2410 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2411 if ((buflen -= 8) < 0)
2412 goto out_resource;
2413 WRITE32((u32) MAJOR(stat.rdev));
2414 WRITE32((u32) MINOR(stat.rdev));
2415 }
2416 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2417 if ((buflen -= 8) < 0)
2418 goto out_resource;
2419 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2420 WRITE64(dummy64);
2421 }
2422 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2423 if ((buflen -= 8) < 0)
2424 goto out_resource;
2425 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2426 WRITE64(dummy64);
2427 }
2428 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2429 if ((buflen -= 8) < 0)
2430 goto out_resource;
2431 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2432 WRITE64(dummy64);
2433 }
2434 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2435 if ((buflen -= 8) < 0)
2436 goto out_resource;
2437 dummy64 = (u64)stat.blocks << 9;
2438 WRITE64(dummy64);
2439 }
2440 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2441 if ((buflen -= 12) < 0)
2442 goto out_resource;
2443 WRITE32(0);
2444 WRITE32(stat.atime.tv_sec);
2445 WRITE32(stat.atime.tv_nsec);
2446 }
2447 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2448 if ((buflen -= 12) < 0)
2449 goto out_resource;
2450 WRITE32(0);
2451 WRITE32(1);
2452 WRITE32(0);
2453 }
2454 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2455 if ((buflen -= 12) < 0)
2456 goto out_resource;
2457 WRITE32(0);
2458 WRITE32(stat.ctime.tv_sec);
2459 WRITE32(stat.ctime.tv_nsec);
2460 }
2461 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2462 if ((buflen -= 12) < 0)
2463 goto out_resource;
2464 WRITE32(0);
2465 WRITE32(stat.mtime.tv_sec);
2466 WRITE32(stat.mtime.tv_nsec);
2467 }
2468 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 if ((buflen -= 8) < 0)
2470 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002471 /*
2472 * Get parent's attributes if not ignoring crossmount
2473 * and this is the root of a cross-mounted filesystem.
2474 */
2475 if (ignore_crossmnt == 0 &&
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002476 dentry == exp->ex_path.mnt->mnt_root)
2477 get_parent_attributes(exp, &stat);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002478 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002480 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
2481 WRITE32(3);
2482 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2483 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2484 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2485 }
Andy Adamson7e705702009-04-03 08:29:11 +03002486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2488 *countp = p - buffer;
2489 status = nfs_ok;
2490
2491out:
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002492 kfree(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 if (fhp == &tempfh)
2494 fh_put(&tempfh);
2495 return status;
2496out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002497 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 goto out;
2499out_resource:
2500 *countp = 0;
2501 status = nfserr_resource;
2502 goto out;
2503out_serverfault:
2504 status = nfserr_serverfault;
2505 goto out;
2506}
2507
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002508static inline int attributes_need_mount(u32 *bmval)
2509{
2510 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2511 return 1;
2512 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2513 return 1;
2514 return 0;
2515}
2516
Al Virob37ad282006-10-19 23:28:59 -07002517static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
Al Viro2ebbc012006-10-19 23:28:58 -07002519 const char *name, int namlen, __be32 *p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
2521 struct svc_export *exp = cd->rd_fhp->fh_export;
2522 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002523 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002524 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
2526 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2527 if (IS_ERR(dentry))
2528 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002529 if (!dentry->d_inode) {
2530 /*
2531 * nfsd_buffered_readdir drops the i_mutex between
2532 * readdir and calling this callback, leaving a window
2533 * where this directory entry could have gone away.
2534 */
2535 dput(dentry);
2536 return nfserr_noent;
2537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002540 /*
2541 * In the case of a mountpoint, the client may be asking for
2542 * attributes that are only properties of the underlying filesystem
2543 * as opposed to the cross-mounted file system. In such a case,
2544 * we will not follow the cross mount and will fill the attribtutes
2545 * directly from the mountpoint dentry.
2546 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002547 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002548 int err;
2549
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002550 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2551 && !attributes_need_mount(cd->rd_bmval)) {
2552 ignore_crossmnt = 1;
2553 goto out_encode;
2554 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002555 /*
2556 * Why the heck aren't we just using nfsd_lookup??
2557 * Different "."/".." handling? Something else?
2558 * At least, add a comment here to explain....
2559 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002560 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2561 if (err) {
2562 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 goto out_put;
2564 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002565 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2566 if (nfserr)
2567 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
2569 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002570out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002572 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573out_put:
2574 dput(dentry);
2575 exp_put(exp);
2576 return nfserr;
2577}
2578
Al Viro2ebbc012006-10-19 23:28:58 -07002579static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002580nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581{
Al Viro2ebbc012006-10-19 23:28:58 -07002582 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 if (buflen < 6)
2585 return NULL;
2586 *p++ = htonl(2);
2587 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2588 *p++ = htonl(0); /* bmval1 */
2589
2590 attrlenp = p++;
2591 *p++ = nfserr; /* no htonl */
2592 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2593 return p;
2594}
2595
2596static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002597nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2598 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002600 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2602 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002603 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002604 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002605 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606
2607 /* In nfsv4, "." and ".." never make it onto the wire.. */
2608 if (name && isdotent(name, namlen)) {
2609 cd->common.err = nfs_ok;
2610 return 0;
2611 }
2612
2613 if (cd->offset)
2614 xdr_encode_hyper(cd->offset, (u64) offset);
2615
2616 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2617 if (buflen < 0)
2618 goto fail;
2619
2620 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002621 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2623 p = xdr_encode_array(p, name, namlen); /* name length & name */
2624
2625 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, p, &buflen);
2626 switch (nfserr) {
2627 case nfs_ok:
2628 p += buflen;
2629 break;
2630 case nfserr_resource:
2631 nfserr = nfserr_toosmall;
2632 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002633 case nfserr_noent:
2634 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 default:
2636 /*
2637 * If the client requested the RDATTR_ERROR attribute,
2638 * we stuff the error code into this attribute
2639 * and continue. If this attribute was not requested,
2640 * then in accordance with the spec, we fail the
2641 * entire READDIR operation(!)
2642 */
2643 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2644 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002646 if (p == NULL) {
2647 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 }
2651 cd->buflen -= (p - cd->buffer);
2652 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002653 cd->offset = cookiep;
2654skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 cd->common.err = nfs_ok;
2656 return 0;
2657fail:
2658 cd->common.err = nfserr;
2659 return -EINVAL;
2660}
2661
Benny Halevye2f282b2008-08-12 20:45:07 +03002662static void
2663nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2664{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002665 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002666
2667 RESERVE_SPACE(sizeof(stateid_t));
2668 WRITE32(sid->si_generation);
2669 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2670 ADJUST_ARGS();
2671}
2672
Benny Halevy695e12f2008-07-04 14:38:33 +03002673static __be32
Al Virob37ad282006-10-19 23:28:59 -07002674nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002676 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 if (!nfserr) {
2679 RESERVE_SPACE(8);
2680 WRITE32(access->ac_supported);
2681 WRITE32(access->ac_resp_access);
2682 ADJUST_ARGS();
2683 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002684 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685}
2686
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002687static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
2688{
2689 __be32 *p;
2690
2691 if (!nfserr) {
2692 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 8);
2693 WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
2694 WRITE32(bcts->dir);
J. Bruce Fields6e67b5d2012-09-13 09:49:43 -04002695 /* Sorry, we do not yet support RDMA over 4.1: */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002696 WRITE32(0);
2697 ADJUST_ARGS();
2698 }
2699 return nfserr;
2700}
2701
Benny Halevy695e12f2008-07-04 14:38:33 +03002702static __be32
Al Virob37ad282006-10-19 23:28:59 -07002703nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
2705 ENCODE_SEQID_OP_HEAD;
2706
Benny Halevye2f282b2008-08-12 20:45:07 +03002707 if (!nfserr)
2708 nfsd4_encode_stateid(resp, &close->cl_stateid);
2709
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002710 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002711 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712}
2713
2714
Benny Halevy695e12f2008-07-04 14:38:33 +03002715static __be32
Al Virob37ad282006-10-19 23:28:59 -07002716nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002718 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
2720 if (!nfserr) {
Chuck Leverab4684d2012-03-02 17:13:50 -05002721 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
2722 WRITEMEM(commit->co_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 ADJUST_ARGS();
2724 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002725 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726}
2727
Benny Halevy695e12f2008-07-04 14:38:33 +03002728static __be32
Al Virob37ad282006-10-19 23:28:59 -07002729nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002731 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
2733 if (!nfserr) {
2734 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002735 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 WRITE32(2);
2737 WRITE32(create->cr_bmval[0]);
2738 WRITE32(create->cr_bmval[1]);
2739 ADJUST_ARGS();
2740 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002741 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
Al Virob37ad282006-10-19 23:28:59 -07002744static __be32
2745nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746{
2747 struct svc_fh *fhp = getattr->ga_fhp;
2748 int buflen;
2749
2750 if (nfserr)
2751 return nfserr;
2752
2753 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2754 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
2755 resp->p, &buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002756 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 if (!nfserr)
2758 resp->p += buflen;
2759 return nfserr;
2760}
2761
Benny Halevy695e12f2008-07-04 14:38:33 +03002762static __be32
2763nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764{
Benny Halevy695e12f2008-07-04 14:38:33 +03002765 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002767 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769 if (!nfserr) {
2770 len = fhp->fh_handle.fh_size;
2771 RESERVE_SPACE(len + 4);
2772 WRITE32(len);
2773 WRITEMEM(&fhp->fh_handle.fh_base, len);
2774 ADJUST_ARGS();
2775 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002776 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777}
2778
2779/*
2780* Including all fields other than the name, a LOCK4denied structure requires
2781* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2782*/
2783static void
2784nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2785{
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002786 struct xdr_netobj *conf = &ld->ld_owner;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002787 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002789 RESERVE_SPACE(32 + XDR_LEN(conf->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 WRITE64(ld->ld_start);
2791 WRITE64(ld->ld_length);
2792 WRITE32(ld->ld_type);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002793 if (conf->len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 WRITEMEM(&ld->ld_clientid, 8);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002795 WRITE32(conf->len);
2796 WRITEMEM(conf->data, conf->len);
2797 kfree(conf->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2799 WRITE64((u64)0); /* clientid */
2800 WRITE32(0); /* length of owner name */
2801 }
2802 ADJUST_ARGS();
2803}
2804
Benny Halevy695e12f2008-07-04 14:38:33 +03002805static __be32
Al Virob37ad282006-10-19 23:28:59 -07002806nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 ENCODE_SEQID_OP_HEAD;
2809
Benny Halevye2f282b2008-08-12 20:45:07 +03002810 if (!nfserr)
2811 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2812 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2814
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002815 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002816 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817}
2818
Benny Halevy695e12f2008-07-04 14:38:33 +03002819static __be32
Al Virob37ad282006-10-19 23:28:59 -07002820nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821{
2822 if (nfserr == nfserr_denied)
2823 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002824 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825}
2826
Benny Halevy695e12f2008-07-04 14:38:33 +03002827static __be32
Al Virob37ad282006-10-19 23:28:59 -07002828nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829{
2830 ENCODE_SEQID_OP_HEAD;
2831
Benny Halevye2f282b2008-08-12 20:45:07 +03002832 if (!nfserr)
2833 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2834
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002835 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002836 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
2839
Benny Halevy695e12f2008-07-04 14:38:33 +03002840static __be32
Al Virob37ad282006-10-19 23:28:59 -07002841nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002843 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845 if (!nfserr) {
2846 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002847 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 ADJUST_ARGS();
2849 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002850 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851}
2852
2853
Benny Halevy695e12f2008-07-04 14:38:33 +03002854static __be32
Al Virob37ad282006-10-19 23:28:59 -07002855nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002857 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 ENCODE_SEQID_OP_HEAD;
2859
2860 if (nfserr)
2861 goto out;
2862
Benny Halevye2f282b2008-08-12 20:45:07 +03002863 nfsd4_encode_stateid(resp, &open->op_stateid);
2864 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002865 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 WRITE32(open->op_rflags);
2867 WRITE32(2);
2868 WRITE32(open->op_bmval[0]);
2869 WRITE32(open->op_bmval[1]);
2870 WRITE32(open->op_delegate_type);
2871 ADJUST_ARGS();
2872
2873 switch (open->op_delegate_type) {
2874 case NFS4_OPEN_DELEGATE_NONE:
2875 break;
2876 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002877 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2878 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002879 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
2881 /*
2882 * TODO: ACE's in delegations
2883 */
2884 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2885 WRITE32(0);
2886 WRITE32(0);
2887 WRITE32(0); /* XXX: is NULL principal ok? */
2888 ADJUST_ARGS();
2889 break;
2890 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002891 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2892 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 WRITE32(0);
2894
2895 /*
2896 * TODO: space_limit's in delegations
2897 */
2898 WRITE32(NFS4_LIMIT_SIZE);
2899 WRITE32(~(u32)0);
2900 WRITE32(~(u32)0);
2901
2902 /*
2903 * TODO: ACE's in delegations
2904 */
2905 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2906 WRITE32(0);
2907 WRITE32(0);
2908 WRITE32(0); /* XXX: is NULL principal ok? */
2909 ADJUST_ARGS();
2910 break;
Benny Halevyd24433c2012-02-16 20:57:17 +02002911 case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */
2912 switch (open->op_why_no_deleg) {
2913 case WND4_CONTENTION:
2914 case WND4_RESOURCE:
2915 RESERVE_SPACE(8);
2916 WRITE32(open->op_why_no_deleg);
2917 WRITE32(0); /* deleg signaling not supported yet */
2918 break;
2919 default:
2920 RESERVE_SPACE(4);
2921 WRITE32(open->op_why_no_deleg);
2922 }
2923 ADJUST_ARGS();
2924 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 default:
2926 BUG();
2927 }
2928 /* XXX save filehandle here */
2929out:
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002930 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002931 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932}
2933
Benny Halevy695e12f2008-07-04 14:38:33 +03002934static __be32
Al Virob37ad282006-10-19 23:28:59 -07002935nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
2937 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002938
2939 if (!nfserr)
2940 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002942 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002943 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944}
2945
Benny Halevy695e12f2008-07-04 14:38:33 +03002946static __be32
Al Virob37ad282006-10-19 23:28:59 -07002947nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948{
2949 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002950
2951 if (!nfserr)
2952 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
J. Bruce Fieldsf3e42232011-08-24 12:27:31 -04002954 encode_seqid_op_tail(resp, save, nfserr);
Benny Halevy695e12f2008-07-04 14:38:33 +03002955 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956}
2957
Al Virob37ad282006-10-19 23:28:59 -07002958static __be32
2959nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002960 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961{
2962 u32 eof;
2963 int v, pn;
2964 unsigned long maxcount;
2965 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002966 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968 if (nfserr)
2969 return nfserr;
2970 if (resp->xbuf->page_len)
2971 return nfserr_resource;
2972
2973 RESERVE_SPACE(8); /* eof flag and byte count */
2974
Greg Banks7adae482006-10-04 02:15:47 -07002975 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 if (maxcount > read->rd_length)
2977 maxcount = read->rd_length;
2978
2979 len = maxcount;
2980 v = 0;
2981 while (len > 0) {
NeilBrown44524352006-10-04 02:15:46 -07002982 pn = resp->rqstp->rq_resused++;
NeilBrown3cc03b12006-10-04 02:15:47 -07002983 resp->rqstp->rq_vec[v].iov_base =
NeilBrown44524352006-10-04 02:15:46 -07002984 page_address(resp->rqstp->rq_respages[pn]);
NeilBrown3cc03b12006-10-04 02:15:47 -07002985 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002986 len < PAGE_SIZE ? len : PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 v++;
2988 len -= PAGE_SIZE;
2989 }
2990 read->rd_vlen = v;
2991
J. Bruce Fields039a87c2010-07-30 11:33:32 -04002992 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002993 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 &maxcount);
2995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 if (nfserr)
2997 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002998 eof = (read->rd_offset + maxcount >=
2999 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001 WRITE32(eof);
3002 WRITE32(maxcount);
3003 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07003004 resp->xbuf->head[0].iov_len = (char*)p
3005 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 resp->xbuf->page_len = maxcount;
3007
NeilBrown6ed6dec2006-04-10 22:55:32 -07003008 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07003009 resp->xbuf->tail[0].iov_base = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07003012 RESERVE_SPACE(4);
3013 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 resp->xbuf->tail[0].iov_base += maxcount&3;
3015 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07003016 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 }
3018 return 0;
3019}
3020
Al Virob37ad282006-10-19 23:28:59 -07003021static __be32
3022nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023{
3024 int maxcount;
3025 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003026 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
3028 if (nfserr)
3029 return nfserr;
3030 if (resp->xbuf->page_len)
3031 return nfserr_resource;
3032
NeilBrown44524352006-10-04 02:15:46 -07003033 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 maxcount = PAGE_SIZE;
3036 RESERVE_SPACE(4);
3037
3038 /*
3039 * XXX: By default, the ->readlink() VFS op will truncate symlinks
3040 * if they would overflow the buffer. Is this kosher in NFSv4? If
3041 * not, one easy fix is: if ->readlink() precisely fills the buffer,
3042 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
3043 */
3044 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
3045 if (nfserr == nfserr_isdir)
3046 return nfserr_inval;
3047 if (nfserr)
3048 return nfserr;
3049
3050 WRITE32(maxcount);
3051 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07003052 resp->xbuf->head[0].iov_len = (char*)p
3053 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 resp->xbuf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07003055
3056 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07003057 resp->xbuf->tail[0].iov_base = p;
3058 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07003060 RESERVE_SPACE(4);
3061 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 resp->xbuf->tail[0].iov_base += maxcount&3;
3063 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07003064 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 }
3066 return 0;
3067}
3068
Al Virob37ad282006-10-19 23:28:59 -07003069static __be32
3070nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071{
3072 int maxcount;
3073 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07003074 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003075 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077 if (nfserr)
3078 return nfserr;
3079 if (resp->xbuf->page_len)
3080 return nfserr_resource;
3081
Chuck Leverab4684d2012-03-02 17:13:50 -05003082 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 savep = p;
3084
3085 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
3086 WRITE32(0);
3087 WRITE32(0);
3088 ADJUST_ARGS();
3089 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07003090 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
3092 maxcount = PAGE_SIZE;
3093 if (maxcount > readdir->rd_maxcount)
3094 maxcount = readdir->rd_maxcount;
3095
3096 /*
3097 * Convert from bytes to words, account for the two words already
3098 * written, make sure to leave two words at the end for the next
3099 * pointer and eof field.
3100 */
3101 maxcount = (maxcount >> 2) - 4;
3102 if (maxcount < 0) {
3103 nfserr = nfserr_toosmall;
3104 goto err_no_verf;
3105 }
3106
NeilBrown44524352006-10-04 02:15:46 -07003107 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 readdir->common.err = 0;
3109 readdir->buflen = maxcount;
3110 readdir->buffer = page;
3111 readdir->offset = NULL;
3112
3113 offset = readdir->rd_cookie;
3114 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
3115 &offset,
3116 &readdir->common, nfsd4_encode_dirent);
3117 if (nfserr == nfs_ok &&
3118 readdir->common.err == nfserr_toosmall &&
3119 readdir->buffer == page)
3120 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 if (nfserr)
3122 goto err_no_verf;
3123
3124 if (readdir->offset)
3125 xdr_encode_hyper(readdir->offset, offset);
3126
3127 p = readdir->buffer;
3128 *p++ = 0; /* no more entries */
3129 *p++ = htonl(readdir->common.err == nfserr_eof);
NeilBrown44524352006-10-04 02:15:46 -07003130 resp->xbuf->page_len = ((char*)p) - (char*)page_address(
3131 resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
NeilBrownbb6e8a92006-04-10 22:55:33 -07003133 /* Use rest of head for padding and remaining ops: */
NeilBrownbb6e8a92006-04-10 22:55:33 -07003134 resp->xbuf->tail[0].iov_base = tailbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 resp->xbuf->tail[0].iov_len = 0;
3136 resp->p = resp->xbuf->tail[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07003137 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
3139 return 0;
3140err_no_verf:
3141 p = savep;
3142 ADJUST_ARGS();
3143 return nfserr;
3144}
3145
Benny Halevy695e12f2008-07-04 14:38:33 +03003146static __be32
Al Virob37ad282006-10-19 23:28:59 -07003147nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003149 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151 if (!nfserr) {
3152 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04003153 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 ADJUST_ARGS();
3155 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003156 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157}
3158
Benny Halevy695e12f2008-07-04 14:38:33 +03003159static __be32
Al Virob37ad282006-10-19 23:28:59 -07003160nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003162 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
3164 if (!nfserr) {
3165 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04003166 write_cinfo(&p, &rename->rn_sinfo);
3167 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 ADJUST_ARGS();
3169 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003170 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171}
3172
Benny Halevy695e12f2008-07-04 14:38:33 +03003173static __be32
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003174nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
3175 __be32 nfserr,struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07003176{
3177 int i = 0;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003178 u32 nflavs;
3179 struct exp_flavor_info *flavs;
3180 struct exp_flavor_info def_flavs[2];
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003181 __be32 *p;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003182
3183 if (nfserr)
3184 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003185 if (exp->ex_nflavors) {
3186 flavs = exp->ex_flavors;
3187 nflavs = exp->ex_nflavors;
3188 } else { /* Handling of some defaults in absence of real secinfo: */
3189 flavs = def_flavs;
3190 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
3191 nflavs = 2;
3192 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
3193 flavs[1].pseudoflavor = RPC_AUTH_NULL;
3194 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
3195 nflavs = 1;
3196 flavs[0].pseudoflavor
3197 = svcauth_gss_flavor(exp->ex_client);
3198 } else {
3199 nflavs = 1;
3200 flavs[0].pseudoflavor
3201 = exp->ex_client->flavour->flavour;
3202 }
3203 }
3204
Andy Adamsondcb488a32007-07-17 04:04:51 -07003205 RESERVE_SPACE(4);
J. Bruce Fields4796f452007-07-17 04:04:51 -07003206 WRITE32(nflavs);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003207 ADJUST_ARGS();
J. Bruce Fields4796f452007-07-17 04:04:51 -07003208 for (i = 0; i < nflavs; i++) {
3209 u32 flav = flavs[i].pseudoflavor;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003210 struct gss_api_mech *gm = gss_mech_get_by_pseudoflavor(flav);
3211
3212 if (gm) {
3213 RESERVE_SPACE(4);
3214 WRITE32(RPC_AUTH_GSS);
3215 ADJUST_ARGS();
3216 RESERVE_SPACE(4 + gm->gm_oid.len);
3217 WRITE32(gm->gm_oid.len);
3218 WRITEMEM(gm->gm_oid.data, gm->gm_oid.len);
3219 ADJUST_ARGS();
3220 RESERVE_SPACE(4);
3221 WRITE32(0); /* qop */
3222 ADJUST_ARGS();
3223 RESERVE_SPACE(4);
3224 WRITE32(gss_pseudoflavor_to_service(gm, flav));
3225 ADJUST_ARGS();
3226 gss_mech_put(gm);
3227 } else {
3228 RESERVE_SPACE(4);
3229 WRITE32(flav);
3230 ADJUST_ARGS();
3231 }
3232 }
3233out:
3234 if (exp)
3235 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03003236 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003237}
3238
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003239static __be32
3240nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
3241 struct nfsd4_secinfo *secinfo)
3242{
3243 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
3244}
3245
3246static __be32
3247nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
3248 struct nfsd4_secinfo_no_name *secinfo)
3249{
3250 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
3251}
3252
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253/*
3254 * The SETATTR encode routine is special -- it always encodes a bitmap,
3255 * regardless of the error status.
3256 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003257static __be32
Al Virob37ad282006-10-19 23:28:59 -07003258nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003260 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
3262 RESERVE_SPACE(12);
3263 if (nfserr) {
3264 WRITE32(2);
3265 WRITE32(0);
3266 WRITE32(0);
3267 }
3268 else {
3269 WRITE32(2);
3270 WRITE32(setattr->sa_bmval[0]);
3271 WRITE32(setattr->sa_bmval[1]);
3272 }
3273 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03003274 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275}
3276
Benny Halevy695e12f2008-07-04 14:38:33 +03003277static __be32
Al Virob37ad282006-10-19 23:28:59 -07003278nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003280 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
3282 if (!nfserr) {
Chuck Leverab4684d2012-03-02 17:13:50 -05003283 RESERVE_SPACE(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 WRITEMEM(&scd->se_clientid, 8);
Chuck Leverab4684d2012-03-02 17:13:50 -05003285 WRITEMEM(&scd->se_confirm, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 ADJUST_ARGS();
3287 }
3288 else if (nfserr == nfserr_clid_inuse) {
3289 RESERVE_SPACE(8);
3290 WRITE32(0);
3291 WRITE32(0);
3292 ADJUST_ARGS();
3293 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003294 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295}
3296
Benny Halevy695e12f2008-07-04 14:38:33 +03003297static __be32
Al Virob37ad282006-10-19 23:28:59 -07003298nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003300 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
3302 if (!nfserr) {
3303 RESERVE_SPACE(16);
3304 WRITE32(write->wr_bytes_written);
3305 WRITE32(write->wr_how_written);
Chuck Leverab4684d2012-03-02 17:13:50 -05003306 WRITEMEM(write->wr_verifier.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 ADJUST_ARGS();
3308 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003309 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310}
3311
Benny Halevy695e12f2008-07-04 14:38:33 +03003312static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003313nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003314 struct nfsd4_exchange_id *exid)
3315{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003316 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03003317 char *major_id;
3318 char *server_scope;
3319 int major_id_sz;
3320 int server_scope_sz;
3321 uint64_t minor_id = 0;
3322
3323 if (nfserr)
3324 return nfserr;
3325
3326 major_id = utsname()->nodename;
3327 major_id_sz = strlen(major_id);
3328 server_scope = utsname()->nodename;
3329 server_scope_sz = strlen(server_scope);
3330
3331 RESERVE_SPACE(
3332 8 /* eir_clientid */ +
3333 4 /* eir_sequenceid */ +
3334 4 /* eir_flags */ +
3335 4 /* spr_how (SP4_NONE) */ +
3336 8 /* so_minor_id */ +
3337 4 /* so_major_id.len */ +
3338 (XDR_QUADLEN(major_id_sz) * 4) +
3339 4 /* eir_server_scope.len */ +
3340 (XDR_QUADLEN(server_scope_sz) * 4) +
3341 4 /* eir_server_impl_id.count (0) */);
3342
3343 WRITEMEM(&exid->clientid, 8);
3344 WRITE32(exid->seqid);
3345 WRITE32(exid->flags);
3346
3347 /* state_protect4_r. Currently only support SP4_NONE */
3348 BUG_ON(exid->spa_how != SP4_NONE);
3349 WRITE32(exid->spa_how);
3350
3351 /* The server_owner struct */
3352 WRITE64(minor_id); /* Minor id */
3353 /* major id */
3354 WRITE32(major_id_sz);
3355 WRITEMEM(major_id, major_id_sz);
3356
3357 /* Server scope */
3358 WRITE32(server_scope_sz);
3359 WRITEMEM(server_scope, server_scope_sz);
3360
3361 /* Implementation id */
3362 WRITE32(0); /* zero length nfs_impl_id4 array */
3363 ADJUST_ARGS();
3364 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003365}
3366
3367static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003368nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003369 struct nfsd4_create_session *sess)
3370{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003371 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003372
3373 if (nfserr)
3374 return nfserr;
3375
3376 RESERVE_SPACE(24);
3377 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3378 WRITE32(sess->seqid);
3379 WRITE32(sess->flags);
3380 ADJUST_ARGS();
3381
3382 RESERVE_SPACE(28);
3383 WRITE32(0); /* headerpadsz */
3384 WRITE32(sess->fore_channel.maxreq_sz);
3385 WRITE32(sess->fore_channel.maxresp_sz);
3386 WRITE32(sess->fore_channel.maxresp_cached);
3387 WRITE32(sess->fore_channel.maxops);
3388 WRITE32(sess->fore_channel.maxreqs);
3389 WRITE32(sess->fore_channel.nr_rdma_attrs);
3390 ADJUST_ARGS();
3391
3392 if (sess->fore_channel.nr_rdma_attrs) {
3393 RESERVE_SPACE(4);
3394 WRITE32(sess->fore_channel.rdma_attrs);
3395 ADJUST_ARGS();
3396 }
3397
3398 RESERVE_SPACE(28);
3399 WRITE32(0); /* headerpadsz */
3400 WRITE32(sess->back_channel.maxreq_sz);
3401 WRITE32(sess->back_channel.maxresp_sz);
3402 WRITE32(sess->back_channel.maxresp_cached);
3403 WRITE32(sess->back_channel.maxops);
3404 WRITE32(sess->back_channel.maxreqs);
3405 WRITE32(sess->back_channel.nr_rdma_attrs);
3406 ADJUST_ARGS();
3407
3408 if (sess->back_channel.nr_rdma_attrs) {
3409 RESERVE_SPACE(4);
3410 WRITE32(sess->back_channel.rdma_attrs);
3411 ADJUST_ARGS();
3412 }
3413 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003414}
3415
3416static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003417nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003418 struct nfsd4_destroy_session *destroy_session)
3419{
Andy Adamson2db134e2009-04-03 08:27:55 +03003420 return nfserr;
3421}
3422
Daniel Mackc47d8322011-05-16 16:38:14 +02003423static __be32
J. Bruce Fieldsd1829b32012-04-25 18:04:54 -04003424nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003425 struct nfsd4_free_stateid *free_stateid)
3426{
3427 __be32 *p;
3428
3429 if (nfserr)
3430 return nfserr;
3431
3432 RESERVE_SPACE(4);
J. Bruce Fieldsd1829b32012-04-25 18:04:54 -04003433 *p++ = nfserr;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003434 ADJUST_ARGS();
3435 return nfserr;
3436}
3437
3438static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003439nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003440 struct nfsd4_sequence *seq)
3441{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003442 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003443
3444 if (nfserr)
3445 return nfserr;
3446
3447 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3448 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3449 WRITE32(seq->seqid);
3450 WRITE32(seq->slotid);
J. Bruce Fieldsb7d7ca32011-08-31 15:39:30 -04003451 /* Note slotid's are numbered from zero: */
3452 WRITE32(seq->maxslots - 1); /* sr_highest_slotid */
3453 WRITE32(seq->maxslots - 1); /* sr_target_highest_slotid */
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05003454 WRITE32(seq->status_flags);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003455
3456 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003457 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003458 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003459}
3460
J. Bruce Fields2355c592012-04-25 16:56:22 -04003461static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003462nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumaker17456802011-07-13 10:50:48 -04003463 struct nfsd4_test_stateid *test_stateid)
3464{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003465 struct nfsd4_test_stateid_id *stateid, *next;
Bryan Schumaker17456802011-07-13 10:50:48 -04003466 __be32 *p;
Bryan Schumaker17456802011-07-13 10:50:48 -04003467
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003468 RESERVE_SPACE(4 + (4 * test_stateid->ts_num_ids));
Bryan Schumaker17456802011-07-13 10:50:48 -04003469 *p++ = htonl(test_stateid->ts_num_ids);
Bryan Schumaker17456802011-07-13 10:50:48 -04003470
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003471 list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) {
Al Viro02f5fde2012-04-13 00:10:34 -04003472 *p++ = stateid->ts_id_status;
Bryan Schumaker17456802011-07-13 10:50:48 -04003473 }
Bryan Schumaker17456802011-07-13 10:50:48 -04003474
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003475 ADJUST_ARGS();
Bryan Schumaker17456802011-07-13 10:50:48 -04003476 return nfserr;
3477}
3478
Andy Adamson2db134e2009-04-03 08:27:55 +03003479static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003480nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3481{
3482 return nfserr;
3483}
3484
3485typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3486
Andy Adamson2db134e2009-04-03 08:27:55 +03003487/*
3488 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3489 * since we don't need to filter out obsolete ops as this is
3490 * done in the decoding phase.
3491 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003492static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003493 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3494 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3495 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3496 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3497 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3498 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3499 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3500 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3501 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3502 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3503 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3504 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3505 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3506 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3507 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3508 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003509 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003510 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3511 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3512 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3513 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3514 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3515 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3516 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3517 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3518 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3519 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3520 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3521 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3522 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3523 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3524 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3525 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3526 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3527 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3528 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3529 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003530
3531 /* NFSv4.1 operations */
3532 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003533 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
Andy Adamson2db134e2009-04-03 08:27:55 +03003534 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3535 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3536 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003537 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_free_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003538 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3539 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3540 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3541 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3542 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3543 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003544 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003545 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3546 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
Bryan Schumaker17456802011-07-13 10:50:48 -04003547 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003548 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3549 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3550 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003551};
3552
Andy Adamson496c2622009-04-03 08:28:48 +03003553/*
3554 * Calculate the total amount of memory that the compound response has taken
Mi Jinlong58e7b332011-08-28 18:18:56 +08003555 * after encoding the current operation with pad.
Andy Adamson496c2622009-04-03 08:28:48 +03003556 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003557 * pad: if operation is non-idempotent, pad was calculate by op_rsize_bop()
3558 * which was specified at nfsd4_operation, else pad is zero.
Andy Adamson496c2622009-04-03 08:28:48 +03003559 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003560 * Compare this length to the session se_fmaxresp_sz and se_fmaxresp_cached.
Andy Adamson496c2622009-04-03 08:28:48 +03003561 *
3562 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3563 * will be at least a page and will therefore hold the xdr_buf head.
3564 */
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003565__be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 pad)
Andy Adamson496c2622009-04-03 08:28:48 +03003566{
Andy Adamson496c2622009-04-03 08:28:48 +03003567 struct xdr_buf *xb = &resp->rqstp->rq_res;
Andy Adamson496c2622009-04-03 08:28:48 +03003568 struct nfsd4_session *session = NULL;
3569 struct nfsd4_slot *slot = resp->cstate.slot;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003570 u32 length, tlen = 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003571
3572 if (!nfsd4_has_session(&resp->cstate))
Mi Jinlong58e7b332011-08-28 18:18:56 +08003573 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003574
3575 session = resp->cstate.session;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003576 if (session == NULL)
3577 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003578
3579 if (xb->page_len == 0) {
3580 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3581 } else {
3582 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3583 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3584
3585 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3586 }
3587 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3588 length, xb->page_len, tlen, pad);
3589
Mi Jinlong58e7b332011-08-28 18:18:56 +08003590 if (length > session->se_fchannel.maxresp_sz)
3591 return nfserr_rep_too_big;
3592
J. Bruce Fields73e79482012-02-13 16:39:00 -05003593 if ((slot->sl_flags & NFSD4_SLOT_CACHETHIS) &&
Mi Jinlong58e7b332011-08-28 18:18:56 +08003594 length > session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003595 return nfserr_rep_too_big_to_cache;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003596
3597 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003598}
3599
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600void
3601nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3602{
Al Viro2ebbc012006-10-19 23:28:58 -07003603 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003604 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
3606 RESERVE_SPACE(8);
3607 WRITE32(op->opnum);
3608 statp = p++; /* to be backfilled at the end */
3609 ADJUST_ARGS();
3610
Benny Halevy695e12f2008-07-04 14:38:33 +03003611 if (op->opnum == OP_ILLEGAL)
3612 goto status;
3613 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3614 !nfsd4_enc_ops[op->opnum]);
3615 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
Andy Adamson496c2622009-04-03 08:28:48 +03003616 /* nfsd4_check_drc_limit guarantees enough room for error status */
Mi Jinlong58e7b332011-08-28 18:18:56 +08003617 if (!op->status)
3618 op->status = nfsd4_check_resp_size(resp, 0);
Benny Halevy695e12f2008-07-04 14:38:33 +03003619status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 /*
3621 * Note: We write the status directly, instead of using WRITE32(),
3622 * since it is already in network byte order.
3623 */
3624 *statp = op->status;
3625}
3626
3627/*
3628 * Encode the reply stored in the stateowner reply cache
3629 *
3630 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3631 * previously sent already encoded operation.
3632 *
3633 * called with nfs4_lock_state() held
3634 */
3635void
3636nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3637{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003638 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 struct nfs4_replay *rp = op->replay;
3640
3641 BUG_ON(!rp);
3642
3643 RESERVE_SPACE(8);
3644 WRITE32(op->opnum);
3645 *p++ = rp->rp_status; /* already xdr'ed */
3646 ADJUST_ARGS();
3647
3648 RESERVE_SPACE(rp->rp_buflen);
3649 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3650 ADJUST_ARGS();
3651}
3652
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653int
Al Viro2ebbc012006-10-19 23:28:58 -07003654nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655{
3656 return xdr_ressize_check(rqstp, p);
3657}
3658
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003659int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660{
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003661 struct svc_rqst *rqstp = rq;
3662 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 if (args->ops != args->iops) {
3665 kfree(args->ops);
3666 args->ops = args->iops;
3667 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003668 kfree(args->tmpp);
3669 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 while (args->to_free) {
3671 struct tmpbuf *tb = args->to_free;
3672 args->to_free = tb->next;
3673 tb->release(tb->buf);
3674 kfree(tb);
3675 }
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003676 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677}
3678
3679int
Al Viro2ebbc012006-10-19 23:28:58 -07003680nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 args->p = p;
3683 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3684 args->pagelist = rqstp->rq_arg.pages;
3685 args->pagelen = rqstp->rq_arg.page_len;
3686 args->tmpp = NULL;
3687 args->to_free = NULL;
3688 args->ops = args->iops;
3689 args->rqstp = rqstp;
3690
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003691 return !nfsd4_decode_compound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692}
3693
3694int
Al Viro2ebbc012006-10-19 23:28:58 -07003695nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696{
3697 /*
3698 * All that remains is to write the tag and operation count...
3699 */
Andy Adamson557ce262009-08-28 08:45:04 -04003700 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 struct kvec *iov;
3702 p = resp->tagp;
3703 *p++ = htonl(resp->taglen);
3704 memcpy(p, resp->tag, resp->taglen);
3705 p += XDR_QUADLEN(resp->taglen);
3706 *p++ = htonl(resp->opcnt);
3707
3708 if (rqstp->rq_res.page_len)
3709 iov = &rqstp->rq_res.tail[0];
3710 else
3711 iov = &rqstp->rq_res.head[0];
3712 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3713 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003714 if (nfsd4_has_session(cs)) {
3715 if (cs->status != nfserr_replay_cache) {
3716 nfsd4_store_cache_entry(resp);
J. Bruce Fields73e79482012-02-13 16:39:00 -05003717 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003718 }
Benny Halevyd7682982010-05-12 00:13:54 +03003719 /* Renew the clientid on success and on replay */
3720 release_session_client(cs->session);
J. Bruce Fields76407f72010-06-22 14:10:14 -04003721 nfsd4_put_session(cs->session);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 return 1;
3724}
3725
3726/*
3727 * Local variables:
3728 * c-basic-offset: 8
3729 * End:
3730 */