blob: a5e8a64248433302ba5855dbc79c82483892c4a7 [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"
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +030056#include "netns.h"
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define NFSDDBG_FACILITY NFSDDBG_XDR
59
J.Bruce Fields42ca0992006-10-04 02:16:20 -070060/*
61 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
62 * directory in order to indicate to the client that a filesystem boundary is present
63 * We use a fixed fsid for a referral
64 */
65#define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
66#define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
67
Al Virob37ad282006-10-19 23:28:59 -070068static __be32
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -050069check_filename(char *str, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 int i;
72
73 if (len == 0)
74 return nfserr_inval;
75 if (isdotent(str, len))
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -050076 return nfserr_badname;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 for (i = 0; i < len; i++)
78 if (str[i] == '/')
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -050079 return nfserr_badname;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return 0;
81}
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define DECODE_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -070084 __be32 *p; \
Al Virob37ad282006-10-19 23:28:59 -070085 __be32 status
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#define DECODE_TAIL \
87 status = 0; \
88out: \
89 return status; \
90xdr_error: \
Chuck Lever817cb9d2007-09-11 18:01:20 -040091 dprintk("NFSD: xdr error (%s:%d)\n", \
92 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 status = nfserr_bad_xdr; \
94 goto out
95
96#define READ32(x) (x) = ntohl(*p++)
97#define READ64(x) do { \
98 (x) = (u64)ntohl(*p++) << 32; \
99 (x) |= ntohl(*p++); \
100} while (0)
101#define READTIME(x) do { \
102 p++; \
103 (x) = ntohl(*p++); \
104 p++; \
105} while (0)
106#define READMEM(x,nbytes) do { \
107 x = (char *)p; \
108 p += XDR_QUADLEN(nbytes); \
109} while (0)
110#define SAVEMEM(x,nbytes) do { \
111 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
112 savemem(argp, p, nbytes) : \
113 (char *)p)) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400114 dprintk("NFSD: xdr error (%s:%d)\n", \
115 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 goto xdr_error; \
117 } \
118 p += XDR_QUADLEN(nbytes); \
119} while (0)
120#define COPYMEM(x,nbytes) do { \
121 memcpy((x), p, nbytes); \
122 p += XDR_QUADLEN(nbytes); \
123} while (0)
124
125/* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
126#define READ_BUF(nbytes) do { \
127 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
128 p = argp->p; \
129 argp->p += XDR_QUADLEN(nbytes); \
130 } else if (!(p = read_buf(argp, nbytes))) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400131 dprintk("NFSD: xdr error (%s:%d)\n", \
132 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 goto xdr_error; \
134 } \
135} while (0)
136
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500137static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 /* We want more bytes than seem to be available.
140 * Maybe we need a new page, maybe we have just run out
141 */
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500142 unsigned int avail = (char *)argp->end - (char *)argp->p;
Al Viro2ebbc012006-10-19 23:28:58 -0700143 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (avail + argp->pagelen < nbytes)
145 return NULL;
146 if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */
147 return NULL;
148 /* ok, we can do it with the current plus the next page */
149 if (nbytes <= sizeof(argp->tmp))
150 p = argp->tmp;
151 else {
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800152 kfree(argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
154 if (!p)
155 return NULL;
156
157 }
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500158 /*
159 * The following memcpy is safe because read_buf is always
160 * called with nbytes > avail, and the two cases above both
161 * guarantee p points to at least nbytes bytes.
162 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 memcpy(p, argp->p, avail);
164 /* step to next page */
165 argp->p = page_address(argp->pagelist[0]);
166 argp->pagelist++;
167 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +1000168 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 argp->pagelen = 0;
170 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +1000171 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 argp->pagelen -= PAGE_SIZE;
173 }
174 memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
175 argp->p += XDR_QUADLEN(nbytes - avail);
176 return p;
177}
178
Andy Adamson60adfc52009-04-03 08:28:50 +0300179static int zero_clientid(clientid_t *clid)
180{
181 return (clid->cl_boot == 0) && (clid->cl_id == 0);
182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184static int
185defer_free(struct nfsd4_compoundargs *argp,
186 void (*release)(const void *), void *p)
187{
188 struct tmpbuf *tb;
189
190 tb = kmalloc(sizeof(*tb), GFP_KERNEL);
191 if (!tb)
192 return -ENOMEM;
193 tb->buf = p;
194 tb->release = release;
195 tb->next = argp->to_free;
196 argp->to_free = tb;
197 return 0;
198}
199
Al Viro2ebbc012006-10-19 23:28:58 -0700200static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (p == argp->tmp) {
Thomas Meyer67114fe2011-11-17 23:43:40 +0100203 p = kmemdup(argp->tmp, nbytes, GFP_KERNEL);
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800204 if (!p)
205 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 } else {
Eric Sesterhenn73dff8b2006-10-03 23:37:14 +0200207 BUG_ON(p != argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 argp->tmpp = NULL;
209 }
210 if (defer_free(argp, kfree, p)) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800211 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return NULL;
213 } else
214 return (char *)p;
215}
216
Al Virob37ad282006-10-19 23:28:59 -0700217static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
219{
220 u32 bmlen;
221 DECODE_HEAD;
222
223 bmval[0] = 0;
224 bmval[1] = 0;
Andy Adamson7e705702009-04-03 08:29:11 +0300225 bmval[2] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 READ_BUF(4);
228 READ32(bmlen);
229 if (bmlen > 1000)
230 goto xdr_error;
231
232 READ_BUF(bmlen << 2);
233 if (bmlen > 0)
234 READ32(bmval[0]);
235 if (bmlen > 1)
236 READ32(bmval[1]);
Andy Adamson7e705702009-04-03 08:29:11 +0300237 if (bmlen > 2)
238 READ32(bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 DECODE_TAIL;
241}
242
Al Virob37ad282006-10-19 23:28:59 -0700243static __be32
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800244nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300245 struct iattr *iattr, struct nfs4_acl **acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 int expected_len, len = 0;
248 u32 dummy32;
249 char *buf;
Al Virob8dd7b92006-10-19 23:29:01 -0700250 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 DECODE_HEAD;
253 iattr->ia_valid = 0;
254 if ((status = nfsd4_decode_bitmap(argp, bmval)))
255 return status;
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 READ_BUF(4);
258 READ32(expected_len);
259
260 if (bmval[0] & FATTR4_WORD0_SIZE) {
261 READ_BUF(8);
262 len += 8;
263 READ64(iattr->ia_size);
264 iattr->ia_valid |= ATTR_SIZE;
265 }
266 if (bmval[0] & FATTR4_WORD0_ACL) {
J. Bruce Fields64a817c2013-03-26 14:11:13 -0400267 u32 nace;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800268 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 READ_BUF(4); len += 4;
271 READ32(nace);
272
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800273 if (nace > NFS4_ACL_MAX)
274 return nfserr_resource;
275
276 *acl = nfs4_acl_new(nace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (*acl == NULL) {
Al Virob8dd7b92006-10-19 23:29:01 -0700278 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 goto out_nfserr;
280 }
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800281 defer_free(argp, kfree, *acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800283 (*acl)->naces = nace;
284 for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 READ_BUF(16); len += 16;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800286 READ32(ace->type);
287 READ32(ace->flag);
288 READ32(ace->access_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 READ32(dummy32);
290 READ_BUF(dummy32);
291 len += XDR_QUADLEN(dummy32) << 2;
292 READMEM(buf, dummy32);
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800293 ace->whotype = nfs4_acl_get_whotype(buf, dummy32);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500294 status = nfs_ok;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800295 if (ace->whotype != NFS4_ACL_WHO_NAMED)
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -0800296 ;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800297 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
J. Bruce Fields3c726022011-01-04 17:53:52 -0500298 status = nfsd_map_name_to_gid(argp->rqstp,
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -0800299 buf, dummy32, &ace->who_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 else
J. Bruce Fields3c726022011-01-04 17:53:52 -0500301 status = nfsd_map_name_to_uid(argp->rqstp,
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -0800302 buf, dummy32, &ace->who_uid);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500303 if (status)
304 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306 } else
307 *acl = NULL;
308 if (bmval[1] & FATTR4_WORD1_MODE) {
309 READ_BUF(4);
310 len += 4;
311 READ32(iattr->ia_mode);
312 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
313 iattr->ia_valid |= ATTR_MODE;
314 }
315 if (bmval[1] & FATTR4_WORD1_OWNER) {
316 READ_BUF(4);
317 len += 4;
318 READ32(dummy32);
319 READ_BUF(dummy32);
320 len += (XDR_QUADLEN(dummy32) << 2);
321 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100322 if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
323 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 iattr->ia_valid |= ATTR_UID;
325 }
326 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
327 READ_BUF(4);
328 len += 4;
329 READ32(dummy32);
330 READ_BUF(dummy32);
331 len += (XDR_QUADLEN(dummy32) << 2);
332 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100333 if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
334 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 iattr->ia_valid |= ATTR_GID;
336 }
337 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
338 READ_BUF(4);
339 len += 4;
340 READ32(dummy32);
341 switch (dummy32) {
342 case NFS4_SET_TO_CLIENT_TIME:
343 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
344 all 32 bits of 'nseconds'. */
345 READ_BUF(12);
346 len += 12;
347 READ32(dummy32);
348 if (dummy32)
349 return nfserr_inval;
350 READ32(iattr->ia_atime.tv_sec);
351 READ32(iattr->ia_atime.tv_nsec);
352 if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
353 return nfserr_inval;
354 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
355 break;
356 case NFS4_SET_TO_SERVER_TIME:
357 iattr->ia_valid |= ATTR_ATIME;
358 break;
359 default:
360 goto xdr_error;
361 }
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
364 READ_BUF(4);
365 len += 4;
366 READ32(dummy32);
367 switch (dummy32) {
368 case NFS4_SET_TO_CLIENT_TIME:
369 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
370 all 32 bits of 'nseconds'. */
371 READ_BUF(12);
372 len += 12;
373 READ32(dummy32);
374 if (dummy32)
375 return nfserr_inval;
376 READ32(iattr->ia_mtime.tv_sec);
377 READ32(iattr->ia_mtime.tv_nsec);
378 if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
379 return nfserr_inval;
380 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
381 break;
382 case NFS4_SET_TO_SERVER_TIME:
383 iattr->ia_valid |= ATTR_MTIME;
384 break;
385 default:
386 goto xdr_error;
387 }
388 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800389 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
390 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
391 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2)
392 READ_BUF(expected_len - len);
393 else if (len != expected_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 goto xdr_error;
395
396 DECODE_TAIL;
397
398out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -0700399 status = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 goto out;
401}
402
Al Virob37ad282006-10-19 23:28:59 -0700403static __be32
Benny Halevye31a1b62008-08-12 20:46:18 +0300404nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
405{
406 DECODE_HEAD;
407
408 READ_BUF(sizeof(stateid_t));
409 READ32(sid->si_generation);
410 COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
411
412 DECODE_TAIL;
413}
414
415static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
417{
418 DECODE_HEAD;
419
420 READ_BUF(4);
421 READ32(access->ac_req_access);
422
423 DECODE_TAIL;
424}
425
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400426static __be32 nfsd4_decode_cb_sec(struct nfsd4_compoundargs *argp, struct nfsd4_cb_sec *cbs)
427{
428 DECODE_HEAD;
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500429 u32 dummy, uid, gid;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400430 char *machine_name;
431 int i;
432 int nr_secflavs;
433
434 /* callback_sec_params4 */
435 READ_BUF(4);
436 READ32(nr_secflavs);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500437 cbs->flavor = (u32)(-1);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400438 for (i = 0; i < nr_secflavs; ++i) {
439 READ_BUF(4);
440 READ32(dummy);
441 switch (dummy) {
442 case RPC_AUTH_NULL:
443 /* Nothing to read */
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500444 if (cbs->flavor == (u32)(-1))
445 cbs->flavor = RPC_AUTH_NULL;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400446 break;
447 case RPC_AUTH_UNIX:
448 READ_BUF(8);
449 /* stamp */
450 READ32(dummy);
451
452 /* machine name */
453 READ32(dummy);
454 READ_BUF(dummy);
455 SAVEMEM(machine_name, dummy);
456
457 /* uid, gid */
458 READ_BUF(8);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500459 READ32(uid);
460 READ32(gid);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400461
462 /* more gids */
463 READ_BUF(4);
464 READ32(dummy);
465 READ_BUF(dummy * 4);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500466 if (cbs->flavor == (u32)(-1)) {
Eric W. Biederman03bc6d12013-02-02 06:24:49 -0800467 kuid_t kuid = make_kuid(&init_user_ns, uid);
468 kgid_t kgid = make_kgid(&init_user_ns, gid);
469 if (uid_valid(kuid) && gid_valid(kgid)) {
470 cbs->uid = kuid;
471 cbs->gid = kgid;
472 cbs->flavor = RPC_AUTH_UNIX;
473 } else {
474 dprintk("RPC_AUTH_UNIX with invalid"
475 "uid or gid ignoring!\n");
476 }
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500477 }
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400478 break;
479 case RPC_AUTH_GSS:
480 dprintk("RPC_AUTH_GSS callback secflavor "
481 "not supported!\n");
482 READ_BUF(8);
483 /* gcbp_service */
484 READ32(dummy);
485 /* gcbp_handle_from_server */
486 READ32(dummy);
487 READ_BUF(dummy);
488 p += XDR_QUADLEN(dummy);
489 /* gcbp_handle_from_client */
490 READ_BUF(4);
491 READ32(dummy);
492 READ_BUF(dummy);
493 break;
494 default:
495 dprintk("Illegal callback secflavor\n");
496 return nfserr_inval;
497 }
498 }
499 DECODE_TAIL;
500}
501
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -0400502static __be32 nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs *argp, struct nfsd4_backchannel_ctl *bc)
503{
504 DECODE_HEAD;
505
506 READ_BUF(4);
507 READ32(bc->bc_cb_program);
508 nfsd4_decode_cb_sec(argp, &bc->bc_cb_sec);
509
510 DECODE_TAIL;
511}
512
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400513static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
514{
515 DECODE_HEAD;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400516
517 READ_BUF(NFS4_MAX_SESSIONID_LEN + 8);
518 COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
519 READ32(bcts->dir);
Bryan Schumaker6ce23572011-04-27 15:47:16 -0400520 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
521 * could help us figure out we should be using it. */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400522 DECODE_TAIL;
523}
524
Al Virob37ad282006-10-19 23:28:59 -0700525static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
527{
528 DECODE_HEAD;
529
Benny Halevye31a1b62008-08-12 20:46:18 +0300530 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300532 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 DECODE_TAIL;
535}
536
537
Al Virob37ad282006-10-19 23:28:59 -0700538static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
540{
541 DECODE_HEAD;
542
543 READ_BUF(12);
544 READ64(commit->co_offset);
545 READ32(commit->co_count);
546
547 DECODE_TAIL;
548}
549
Al Virob37ad282006-10-19 23:28:59 -0700550static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
552{
553 DECODE_HEAD;
554
555 READ_BUF(4);
556 READ32(create->cr_type);
557 switch (create->cr_type) {
558 case NF4LNK:
559 READ_BUF(4);
560 READ32(create->cr_linklen);
561 READ_BUF(create->cr_linklen);
562 SAVEMEM(create->cr_linkname, create->cr_linklen);
563 break;
564 case NF4BLK:
565 case NF4CHR:
566 READ_BUF(8);
567 READ32(create->cr_specdata1);
568 READ32(create->cr_specdata2);
569 break;
570 case NF4SOCK:
571 case NF4FIFO:
572 case NF4DIR:
573 default:
574 break;
575 }
576
577 READ_BUF(4);
578 READ32(create->cr_namelen);
579 READ_BUF(create->cr_namelen);
580 SAVEMEM(create->cr_name, create->cr_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500581 if ((status = check_filename(create->cr_name, create->cr_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return status;
583
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800584 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
585 &create->cr_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300586 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 goto out;
588
589 DECODE_TAIL;
590}
591
Al Virob37ad282006-10-19 23:28:59 -0700592static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
594{
Benny Halevye31a1b62008-08-12 20:46:18 +0300595 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Al Virob37ad282006-10-19 23:28:59 -0700598static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
600{
601 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
602}
603
Al Virob37ad282006-10-19 23:28:59 -0700604static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
606{
607 DECODE_HEAD;
608
609 READ_BUF(4);
610 READ32(link->li_namelen);
611 READ_BUF(link->li_namelen);
612 SAVEMEM(link->li_name, link->li_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500613 if ((status = check_filename(link->li_name, link->li_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return status;
615
616 DECODE_TAIL;
617}
618
Al Virob37ad282006-10-19 23:28:59 -0700619static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
621{
622 DECODE_HEAD;
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /*
625 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
626 */
627 READ_BUF(28);
628 READ32(lock->lk_type);
629 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
630 goto xdr_error;
631 READ32(lock->lk_reclaim);
632 READ64(lock->lk_offset);
633 READ64(lock->lk_length);
634 READ32(lock->lk_is_new);
635
636 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300637 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300639 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
640 if (status)
641 return status;
642 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 READ32(lock->lk_new_lock_seqid);
644 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
645 READ32(lock->lk_new_owner.len);
646 READ_BUF(lock->lk_new_owner.len);
647 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
648 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300649 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
650 if (status)
651 return status;
652 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 READ32(lock->lk_old_lock_seqid);
654 }
655
656 DECODE_TAIL;
657}
658
Al Virob37ad282006-10-19 23:28:59 -0700659static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
661{
662 DECODE_HEAD;
663
664 READ_BUF(32);
665 READ32(lockt->lt_type);
666 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
667 goto xdr_error;
668 READ64(lockt->lt_offset);
669 READ64(lockt->lt_length);
670 COPYMEM(&lockt->lt_clientid, 8);
671 READ32(lockt->lt_owner.len);
672 READ_BUF(lockt->lt_owner.len);
673 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
674
675 DECODE_TAIL;
676}
677
Al Virob37ad282006-10-19 23:28:59 -0700678static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
680{
681 DECODE_HEAD;
682
Benny Halevye31a1b62008-08-12 20:46:18 +0300683 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 READ32(locku->lu_type);
685 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
686 goto xdr_error;
687 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300688 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
689 if (status)
690 return status;
691 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 READ64(locku->lu_offset);
693 READ64(locku->lu_length);
694
695 DECODE_TAIL;
696}
697
Al Virob37ad282006-10-19 23:28:59 -0700698static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
700{
701 DECODE_HEAD;
702
703 READ_BUF(4);
704 READ32(lookup->lo_len);
705 READ_BUF(lookup->lo_len);
706 SAVEMEM(lookup->lo_name, lookup->lo_len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500707 if ((status = check_filename(lookup->lo_name, lookup->lo_len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return status;
709
710 DECODE_TAIL;
711}
712
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200713static __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 -0400714{
715 __be32 *p;
716 u32 w;
717
718 READ_BUF(4);
719 READ32(w);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200720 *share_access = w & NFS4_SHARE_ACCESS_MASK;
721 *deleg_want = w & NFS4_SHARE_WANT_MASK;
722 if (deleg_when)
723 *deleg_when = w & NFS4_SHARE_WHEN_MASK;
724
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400725 switch (w & NFS4_SHARE_ACCESS_MASK) {
726 case NFS4_SHARE_ACCESS_READ:
727 case NFS4_SHARE_ACCESS_WRITE:
728 case NFS4_SHARE_ACCESS_BOTH:
729 break;
730 default:
731 return nfserr_bad_xdr;
732 }
Benny Halevyfc0d14f2011-10-27 20:43:01 +0200733 w &= ~NFS4_SHARE_ACCESS_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400734 if (!w)
735 return nfs_ok;
736 if (!argp->minorversion)
737 return nfserr_bad_xdr;
738 switch (w & NFS4_SHARE_WANT_MASK) {
739 case NFS4_SHARE_WANT_NO_PREFERENCE:
740 case NFS4_SHARE_WANT_READ_DELEG:
741 case NFS4_SHARE_WANT_WRITE_DELEG:
742 case NFS4_SHARE_WANT_ANY_DELEG:
743 case NFS4_SHARE_WANT_NO_DELEG:
744 case NFS4_SHARE_WANT_CANCEL:
745 break;
746 default:
747 return nfserr_bad_xdr;
748 }
Benny Halevy92bac8c2011-10-19 19:13:29 -0700749 w &= ~NFS4_SHARE_WANT_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400750 if (!w)
751 return nfs_ok;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200752
753 if (!deleg_when) /* open_downgrade */
754 return nfserr_inval;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400755 switch (w) {
756 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL:
757 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED:
Benny Halevyc668fc62011-10-19 19:13:13 -0700758 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL |
759 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED):
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400760 return nfs_ok;
761 }
762xdr_error:
763 return nfserr_bad_xdr;
764}
765
766static __be32 nfsd4_decode_share_deny(struct nfsd4_compoundargs *argp, u32 *x)
767{
768 __be32 *p;
769
770 READ_BUF(4);
771 READ32(*x);
772 /* Note: unlinke access bits, deny bits may be zero. */
Dan Carpenter01cd4af2011-10-17 10:41:17 +0300773 if (*x & ~NFS4_SHARE_DENY_BOTH)
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400774 return nfserr_bad_xdr;
775 return nfs_ok;
776xdr_error:
777 return nfserr_bad_xdr;
778}
779
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400780static __be32 nfsd4_decode_opaque(struct nfsd4_compoundargs *argp, struct xdr_netobj *o)
781{
782 __be32 *p;
783
784 READ_BUF(4);
785 READ32(o->len);
786
787 if (o->len == 0 || o->len > NFS4_OPAQUE_LIMIT)
788 return nfserr_bad_xdr;
789
790 READ_BUF(o->len);
791 SAVEMEM(o->data, o->len);
792 return nfs_ok;
793xdr_error:
794 return nfserr_bad_xdr;
795}
796
Al Virob37ad282006-10-19 23:28:59 -0700797static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
799{
800 DECODE_HEAD;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200801 u32 dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 memset(open->op_bmval, 0, sizeof(open->op_bmval));
804 open->op_iattr.ia_valid = 0;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400805 open->op_openowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800807 open->op_xdr_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* seqid, share_access, share_deny, clientid, ownerlen */
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400809 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 READ32(open->op_seqid);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200811 /* decode, yet ignore deleg_when until supported */
812 status = nfsd4_decode_share_access(argp, &open->op_share_access,
813 &open->op_deleg_want, &dummy);
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400814 if (status)
815 goto xdr_error;
816 status = nfsd4_decode_share_deny(argp, &open->op_share_deny);
817 if (status)
818 goto xdr_error;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400819 READ_BUF(sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 COPYMEM(&open->op_clientid, sizeof(clientid_t));
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400821 status = nfsd4_decode_opaque(argp, &open->op_owner);
822 if (status)
823 goto xdr_error;
824 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 READ32(open->op_create);
826 switch (open->op_create) {
827 case NFS4_OPEN_NOCREATE:
828 break;
829 case NFS4_OPEN_CREATE:
830 READ_BUF(4);
831 READ32(open->op_createmode);
832 switch (open->op_createmode) {
833 case NFS4_CREATE_UNCHECKED:
834 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300835 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800836 &open->op_iattr, &open->op_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300837 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 goto out;
839 break;
840 case NFS4_CREATE_EXCLUSIVE:
Chuck Leverab4684d2012-03-02 17:13:50 -0500841 READ_BUF(NFS4_VERIFIER_SIZE);
842 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300844 case NFS4_CREATE_EXCLUSIVE4_1:
845 if (argp->minorversion < 1)
846 goto xdr_error;
Chuck Leverab4684d2012-03-02 17:13:50 -0500847 READ_BUF(NFS4_VERIFIER_SIZE);
848 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300849 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800850 &open->op_iattr, &open->op_acl);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300851 if (status)
852 goto out;
853 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 default:
855 goto xdr_error;
856 }
857 break;
858 default:
859 goto xdr_error;
860 }
861
862 /* open_claim */
863 READ_BUF(4);
864 READ32(open->op_claim_type);
865 switch (open->op_claim_type) {
866 case NFS4_OPEN_CLAIM_NULL:
867 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
868 READ_BUF(4);
869 READ32(open->op_fname.len);
870 READ_BUF(open->op_fname.len);
871 SAVEMEM(open->op_fname.data, open->op_fname.len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500872 if ((status = check_filename(open->op_fname.data, open->op_fname.len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return status;
874 break;
875 case NFS4_OPEN_CLAIM_PREVIOUS:
876 READ_BUF(4);
877 READ32(open->op_delegate_type);
878 break;
879 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300880 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
881 if (status)
882 return status;
883 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 READ32(open->op_fname.len);
885 READ_BUF(open->op_fname.len);
886 SAVEMEM(open->op_fname.data, open->op_fname.len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500887 if ((status = check_filename(open->op_fname.data, open->op_fname.len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return status;
889 break;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400890 case NFS4_OPEN_CLAIM_FH:
891 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
892 if (argp->minorversion < 1)
893 goto xdr_error;
894 /* void */
895 break;
896 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
897 if (argp->minorversion < 1)
898 goto xdr_error;
899 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
900 if (status)
901 return status;
902 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 default:
904 goto xdr_error;
905 }
906
907 DECODE_TAIL;
908}
909
Al Virob37ad282006-10-19 23:28:59 -0700910static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
912{
913 DECODE_HEAD;
914
Benny Halevye31a1b62008-08-12 20:46:18 +0300915 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
916 if (status)
917 return status;
918 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 READ32(open_conf->oc_seqid);
920
921 DECODE_TAIL;
922}
923
Al Virob37ad282006-10-19 23:28:59 -0700924static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
926{
927 DECODE_HEAD;
928
Benny Halevye31a1b62008-08-12 20:46:18 +0300929 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
930 if (status)
931 return status;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400932 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 READ32(open_down->od_seqid);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200934 status = nfsd4_decode_share_access(argp, &open_down->od_share_access,
935 &open_down->od_deleg_want, NULL);
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400936 if (status)
937 return status;
938 status = nfsd4_decode_share_deny(argp, &open_down->od_share_deny);
939 if (status)
940 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 DECODE_TAIL;
942}
943
Al Virob37ad282006-10-19 23:28:59 -0700944static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
946{
947 DECODE_HEAD;
948
949 READ_BUF(4);
950 READ32(putfh->pf_fhlen);
951 if (putfh->pf_fhlen > NFS4_FHSIZE)
952 goto xdr_error;
953 READ_BUF(putfh->pf_fhlen);
954 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
955
956 DECODE_TAIL;
957}
958
Al Virob37ad282006-10-19 23:28:59 -0700959static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
961{
962 DECODE_HEAD;
963
Benny Halevye31a1b62008-08-12 20:46:18 +0300964 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
965 if (status)
966 return status;
967 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 READ64(read->rd_offset);
969 READ32(read->rd_length);
970
971 DECODE_TAIL;
972}
973
Al Virob37ad282006-10-19 23:28:59 -0700974static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
976{
977 DECODE_HEAD;
978
979 READ_BUF(24);
980 READ64(readdir->rd_cookie);
981 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
982 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
983 READ32(readdir->rd_maxcount);
984 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
985 goto out;
986
987 DECODE_TAIL;
988}
989
Al Virob37ad282006-10-19 23:28:59 -0700990static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
992{
993 DECODE_HEAD;
994
995 READ_BUF(4);
996 READ32(remove->rm_namelen);
997 READ_BUF(remove->rm_namelen);
998 SAVEMEM(remove->rm_name, remove->rm_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500999 if ((status = check_filename(remove->rm_name, remove->rm_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return status;
1001
1002 DECODE_TAIL;
1003}
1004
Al Virob37ad282006-10-19 23:28:59 -07001005static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
1007{
1008 DECODE_HEAD;
1009
1010 READ_BUF(4);
1011 READ32(rename->rn_snamelen);
1012 READ_BUF(rename->rn_snamelen + 4);
1013 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
1014 READ32(rename->rn_tnamelen);
1015 READ_BUF(rename->rn_tnamelen);
1016 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001017 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return status;
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001019 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return status;
1021
1022 DECODE_TAIL;
1023}
1024
Al Virob37ad282006-10-19 23:28:59 -07001025static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
1027{
1028 DECODE_HEAD;
1029
1030 READ_BUF(sizeof(clientid_t));
1031 COPYMEM(clientid, sizeof(clientid_t));
1032
1033 DECODE_TAIL;
1034}
1035
Al Virob37ad282006-10-19 23:28:59 -07001036static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -07001037nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
1038 struct nfsd4_secinfo *secinfo)
1039{
1040 DECODE_HEAD;
1041
1042 READ_BUF(4);
1043 READ32(secinfo->si_namelen);
1044 READ_BUF(secinfo->si_namelen);
1045 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001046 status = check_filename(secinfo->si_name, secinfo->si_namelen);
Andy Adamsondcb488a32007-07-17 04:04:51 -07001047 if (status)
1048 return status;
1049 DECODE_TAIL;
1050}
1051
1052static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001053nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
1054 struct nfsd4_secinfo_no_name *sin)
1055{
1056 DECODE_HEAD;
1057
1058 READ_BUF(4);
1059 READ32(sin->sin_style);
1060 DECODE_TAIL;
1061}
1062
1063static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
1065{
Benny Halevye31a1b62008-08-12 20:46:18 +03001066 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Benny Halevye31a1b62008-08-12 20:46:18 +03001068 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
1069 if (status)
1070 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +08001071 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
1072 &setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
Al Virob37ad282006-10-19 23:28:59 -07001075static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
1077{
1078 DECODE_HEAD;
1079
Chuck Leverab4684d2012-03-02 17:13:50 -05001080 READ_BUF(NFS4_VERIFIER_SIZE);
1081 COPYMEM(setclientid->se_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001083 status = nfsd4_decode_opaque(argp, &setclientid->se_name);
1084 if (status)
1085 return nfserr_bad_xdr;
1086 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 READ32(setclientid->se_callback_prog);
1088 READ32(setclientid->se_callback_netid_len);
1089
1090 READ_BUF(setclientid->se_callback_netid_len + 4);
1091 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
1092 READ32(setclientid->se_callback_addr_len);
1093
1094 READ_BUF(setclientid->se_callback_addr_len + 4);
1095 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
1096 READ32(setclientid->se_callback_ident);
1097
1098 DECODE_TAIL;
1099}
1100
Al Virob37ad282006-10-19 23:28:59 -07001101static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
1103{
1104 DECODE_HEAD;
1105
Chuck Leverab4684d2012-03-02 17:13:50 -05001106 READ_BUF(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 COPYMEM(&scd_c->sc_clientid, 8);
Chuck Leverab4684d2012-03-02 17:13:50 -05001108 COPYMEM(&scd_c->sc_confirm, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 DECODE_TAIL;
1111}
1112
1113/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -07001114static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
1116{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 DECODE_HEAD;
1118
1119 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
1120 goto out;
1121
1122 /* For convenience's sake, we compare raw xdr'd attributes in
J. Bruce Fieldse5f95702012-11-30 17:24:18 -05001123 * nfsd4_proc_verify */
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 READ_BUF(4);
1126 READ32(verify->ve_attrlen);
1127 READ_BUF(verify->ve_attrlen);
1128 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
1129
1130 DECODE_TAIL;
1131}
1132
Al Virob37ad282006-10-19 23:28:59 -07001133static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
1135{
1136 int avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 int len;
1138 DECODE_HEAD;
1139
Benny Halevye31a1b62008-08-12 20:46:18 +03001140 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
1141 if (status)
1142 return status;
1143 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 READ64(write->wr_offset);
1145 READ32(write->wr_stable_how);
1146 if (write->wr_stable_how > 2)
1147 goto xdr_error;
1148 READ32(write->wr_buflen);
1149
1150 /* Sorry .. no magic macros for this.. *
1151 * READ_BUF(write->wr_buflen);
1152 * SAVEMEM(write->wr_buf, write->wr_buflen);
1153 */
1154 avail = (char*)argp->end - (char*)argp->p;
1155 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -04001156 dprintk("NFSD: xdr error (%s:%d)\n",
1157 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 goto xdr_error;
1159 }
J. Bruce Fields70cc7f72012-11-16 14:16:46 -05001160 write->wr_head.iov_base = p;
1161 write->wr_head.iov_len = avail;
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001162 WARN_ON(avail != (XDR_QUADLEN(avail) << 2));
J. Bruce Fields70cc7f72012-11-16 14:16:46 -05001163 write->wr_pagelist = argp->pagelist;
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001164
1165 len = XDR_QUADLEN(write->wr_buflen) << 2;
1166 if (len >= avail) {
1167 int pages;
1168
1169 len -= avail;
1170
1171 pages = len >> PAGE_SHIFT;
1172 argp->pagelist += pages;
1173 argp->pagelen -= pages * PAGE_SIZE;
1174 len -= pages * PAGE_SIZE;
1175
1176 argp->p = (__be32 *)page_address(argp->pagelist[0]);
1177 argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001179 argp->p += XDR_QUADLEN(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 DECODE_TAIL;
1182}
1183
Al Virob37ad282006-10-19 23:28:59 -07001184static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1186{
1187 DECODE_HEAD;
1188
1189 READ_BUF(12);
1190 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1191 READ32(rlockowner->rl_owner.len);
1192 READ_BUF(rlockowner->rl_owner.len);
1193 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1194
Andy Adamson60adfc52009-04-03 08:28:50 +03001195 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1196 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 DECODE_TAIL;
1198}
1199
Al Virob37ad282006-10-19 23:28:59 -07001200static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001201nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001202 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001203{
Mi Jinlong5afa0402010-11-09 09:39:23 +08001204 int dummy, tmp;
Andy Adamson0733d212009-04-03 08:28:01 +03001205 DECODE_HEAD;
1206
1207 READ_BUF(NFS4_VERIFIER_SIZE);
1208 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1209
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001210 status = nfsd4_decode_opaque(argp, &exid->clname);
1211 if (status)
1212 return nfserr_bad_xdr;
Andy Adamson0733d212009-04-03 08:28:01 +03001213
1214 READ_BUF(4);
1215 READ32(exid->flags);
1216
1217 /* Ignore state_protect4_a */
1218 READ_BUF(4);
1219 READ32(exid->spa_how);
1220 switch (exid->spa_how) {
1221 case SP4_NONE:
1222 break;
1223 case SP4_MACH_CRED:
1224 /* spo_must_enforce */
1225 READ_BUF(4);
1226 READ32(dummy);
1227 READ_BUF(dummy * 4);
1228 p += dummy;
1229
1230 /* spo_must_allow */
1231 READ_BUF(4);
1232 READ32(dummy);
1233 READ_BUF(dummy * 4);
1234 p += dummy;
1235 break;
1236 case SP4_SSV:
1237 /* ssp_ops */
1238 READ_BUF(4);
1239 READ32(dummy);
1240 READ_BUF(dummy * 4);
1241 p += dummy;
1242
1243 READ_BUF(4);
1244 READ32(dummy);
1245 READ_BUF(dummy * 4);
1246 p += dummy;
1247
1248 /* ssp_hash_algs<> */
1249 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001250 READ32(tmp);
1251 while (tmp--) {
1252 READ_BUF(4);
1253 READ32(dummy);
1254 READ_BUF(dummy);
1255 p += XDR_QUADLEN(dummy);
1256 }
Andy Adamson0733d212009-04-03 08:28:01 +03001257
1258 /* ssp_encr_algs<> */
1259 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001260 READ32(tmp);
1261 while (tmp--) {
1262 READ_BUF(4);
1263 READ32(dummy);
1264 READ_BUF(dummy);
1265 p += XDR_QUADLEN(dummy);
1266 }
Andy Adamson0733d212009-04-03 08:28:01 +03001267
1268 /* ssp_window and ssp_num_gss_handles */
1269 READ_BUF(8);
1270 READ32(dummy);
1271 READ32(dummy);
1272 break;
1273 default:
1274 goto xdr_error;
1275 }
1276
1277 /* Ignore Implementation ID */
1278 READ_BUF(4); /* nfs_impl_id4 array length */
1279 READ32(dummy);
1280
1281 if (dummy > 1)
1282 goto xdr_error;
1283
1284 if (dummy == 1) {
1285 /* nii_domain */
1286 READ_BUF(4);
1287 READ32(dummy);
1288 READ_BUF(dummy);
1289 p += XDR_QUADLEN(dummy);
1290
1291 /* nii_name */
1292 READ_BUF(4);
1293 READ32(dummy);
1294 READ_BUF(dummy);
1295 p += XDR_QUADLEN(dummy);
1296
1297 /* nii_date */
1298 READ_BUF(12);
1299 p += 3;
1300 }
1301 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001302}
1303
1304static __be32
1305nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1306 struct nfsd4_create_session *sess)
1307{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001308 DECODE_HEAD;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001309 u32 dummy;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001310
1311 READ_BUF(16);
1312 COPYMEM(&sess->clientid, 8);
1313 READ32(sess->seqid);
1314 READ32(sess->flags);
1315
1316 /* Fore channel attrs */
1317 READ_BUF(28);
1318 READ32(dummy); /* headerpadsz is always 0 */
1319 READ32(sess->fore_channel.maxreq_sz);
1320 READ32(sess->fore_channel.maxresp_sz);
1321 READ32(sess->fore_channel.maxresp_cached);
1322 READ32(sess->fore_channel.maxops);
1323 READ32(sess->fore_channel.maxreqs);
1324 READ32(sess->fore_channel.nr_rdma_attrs);
1325 if (sess->fore_channel.nr_rdma_attrs == 1) {
1326 READ_BUF(4);
1327 READ32(sess->fore_channel.rdma_attrs);
1328 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1329 dprintk("Too many fore channel attr bitmaps!\n");
1330 goto xdr_error;
1331 }
1332
1333 /* Back channel attrs */
1334 READ_BUF(28);
1335 READ32(dummy); /* headerpadsz is always 0 */
1336 READ32(sess->back_channel.maxreq_sz);
1337 READ32(sess->back_channel.maxresp_sz);
1338 READ32(sess->back_channel.maxresp_cached);
1339 READ32(sess->back_channel.maxops);
1340 READ32(sess->back_channel.maxreqs);
1341 READ32(sess->back_channel.nr_rdma_attrs);
1342 if (sess->back_channel.nr_rdma_attrs == 1) {
1343 READ_BUF(4);
1344 READ32(sess->back_channel.rdma_attrs);
1345 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1346 dprintk("Too many back channel attr bitmaps!\n");
1347 goto xdr_error;
1348 }
1349
J. Bruce Fieldsacb28872012-03-27 14:50:26 -04001350 READ_BUF(4);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001351 READ32(sess->callback_prog);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -04001352 nfsd4_decode_cb_sec(argp, &sess->cb_sec);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001353 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001354}
1355
1356static __be32
1357nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1358 struct nfsd4_destroy_session *destroy_session)
1359{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001360 DECODE_HEAD;
1361 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1362 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1363
1364 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001365}
1366
1367static __be32
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001368nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp,
1369 struct nfsd4_free_stateid *free_stateid)
1370{
1371 DECODE_HEAD;
1372
1373 READ_BUF(sizeof(stateid_t));
1374 READ32(free_stateid->fr_stateid.si_generation);
1375 COPYMEM(&free_stateid->fr_stateid.si_opaque, sizeof(stateid_opaque_t));
1376
1377 DECODE_TAIL;
1378}
1379
1380static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001381nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1382 struct nfsd4_sequence *seq)
1383{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001384 DECODE_HEAD;
1385
1386 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1387 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1388 READ32(seq->seqid);
1389 READ32(seq->slotid);
1390 READ32(seq->maxslots);
1391 READ32(seq->cachethis);
1392
1393 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001394}
1395
Bryan Schumaker17456802011-07-13 10:50:48 -04001396static __be32
1397nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid)
1398{
Bryan Schumaker17456802011-07-13 10:50:48 -04001399 int i;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001400 __be32 *p, status;
1401 struct nfsd4_test_stateid_id *stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04001402
1403 READ_BUF(4);
1404 test_stateid->ts_num_ids = ntohl(*p++);
1405
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001406 INIT_LIST_HEAD(&test_stateid->ts_stateid_list);
Bryan Schumaker17456802011-07-13 10:50:48 -04001407
1408 for (i = 0; i < test_stateid->ts_num_ids; i++) {
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001409 stateid = kmalloc(sizeof(struct nfsd4_test_stateid_id), GFP_KERNEL);
1410 if (!stateid) {
Al Viroafcf6792012-04-13 00:15:37 -04001411 status = nfserrno(-ENOMEM);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001412 goto out;
1413 }
1414
1415 defer_free(argp, kfree, stateid);
1416 INIT_LIST_HEAD(&stateid->ts_id_list);
1417 list_add_tail(&stateid->ts_id_list, &test_stateid->ts_stateid_list);
1418
1419 status = nfsd4_decode_stateid(argp, &stateid->ts_id_stateid);
Bryan Schumaker17456802011-07-13 10:50:48 -04001420 if (status)
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001421 goto out;
Bryan Schumaker17456802011-07-13 10:50:48 -04001422 }
1423
1424 status = 0;
1425out:
1426 return status;
1427xdr_error:
1428 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__, __LINE__);
1429 status = nfserr_bad_xdr;
1430 goto out;
1431}
1432
Mi Jinlong345c2842011-10-20 17:51:39 +08001433static __be32 nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs *argp, struct nfsd4_destroy_clientid *dc)
1434{
1435 DECODE_HEAD;
1436
1437 READ_BUF(8);
1438 COPYMEM(&dc->clientid, 8);
1439
1440 DECODE_TAIL;
1441}
1442
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001443static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1444{
1445 DECODE_HEAD;
1446
1447 READ_BUF(4);
1448 READ32(rc->rca_one_fs);
1449
1450 DECODE_TAIL;
1451}
1452
Andy Adamson2db134e2009-04-03 08:27:55 +03001453static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001454nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1455{
1456 return nfs_ok;
1457}
1458
Benny Halevy3c375c62008-07-02 11:14:01 +03001459static __be32
1460nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1461{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001462 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001463}
1464
Benny Halevy347e0ad2008-07-02 11:13:41 +03001465typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1466
1467static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001468 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1469 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1470 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1471 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1472 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1473 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1474 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1475 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1476 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1477 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1478 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1479 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1480 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1481 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1482 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1483 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1484 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1485 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1486 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1487 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001488 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001489 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1490 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1491 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1492 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1493 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1494 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1495 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1496 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1497 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1498 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1499 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1500 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1501 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1502 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1503 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1504 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Benny Halevy347e0ad2008-07-02 11:13:41 +03001505};
1506
Andy Adamson2db134e2009-04-03 08:27:55 +03001507static nfsd4_dec nfsd41_dec_ops[] = {
Randy Dunlap9064caa2009-04-28 16:48:25 -07001508 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1509 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1510 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1511 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1512 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1513 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1514 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1515 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1516 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1517 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1518 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1519 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1520 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1521 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1522 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1523 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1524 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1525 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp,
1526 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1527 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
1528 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp,
1529 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1530 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1531 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1532 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1533 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1534 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1535 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp,
1536 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1537 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1538 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1539 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1540 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1541 [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp,
1542 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1543 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1544 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001545
1546 /* new operations for NFSv4.1 */
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04001547 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_backchannel_ctl,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001548 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001549 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1550 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1551 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001552 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001553 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1554 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1555 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1556 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1557 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1558 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001559 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001560 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1561 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
Bryan Schumaker17456802011-07-13 10:50:48 -04001562 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001563 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
Mi Jinlong345c2842011-10-20 17:51:39 +08001564 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_destroy_clientid,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001565 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Andy Adamson2db134e2009-04-03 08:27:55 +03001566};
1567
Benny Halevyf2feb962008-07-02 11:14:22 +03001568struct nfsd4_minorversion_ops {
1569 nfsd4_dec *decoders;
1570 int nops;
1571};
1572
1573static struct nfsd4_minorversion_ops nfsd4_minorversion[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001574 [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) },
Andy Adamson2db134e2009-04-03 08:27:55 +03001575 [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Benny Halevyf2feb962008-07-02 11:14:22 +03001576};
1577
Benny Halevy347e0ad2008-07-02 11:13:41 +03001578static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1580{
1581 DECODE_HEAD;
1582 struct nfsd4_op *op;
Benny Halevyf2feb962008-07-02 11:14:22 +03001583 struct nfsd4_minorversion_ops *ops;
J. Bruce Fields10910062011-01-24 12:11:02 -05001584 bool cachethis = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 int i;
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 READ_BUF(4);
1588 READ32(argp->taglen);
1589 READ_BUF(argp->taglen + 8);
1590 SAVEMEM(argp->tag, argp->taglen);
1591 READ32(argp->minorversion);
1592 READ32(argp->opcnt);
1593
1594 if (argp->taglen > NFSD4_MAX_TAGLEN)
1595 goto xdr_error;
1596 if (argp->opcnt > 100)
1597 goto xdr_error;
1598
Tobias Klausere8c96f82006-03-24 03:15:34 -08001599 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1601 if (!argp->ops) {
1602 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001603 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 goto xdr_error;
1605 }
1606 }
1607
Benny Halevyf2feb962008-07-02 11:14:22 +03001608 if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion))
Benny Halevy30cff1f2008-07-02 11:13:18 +03001609 argp->opcnt = 0;
1610
Benny Halevyf2feb962008-07-02 11:14:22 +03001611 ops = &nfsd4_minorversion[argp->minorversion];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 for (i = 0; i < argp->opcnt; i++) {
1613 op = &argp->ops[i];
1614 op->replay = NULL;
1615
J. Bruce Fields8a61b182012-11-16 22:28:38 -05001616 READ_BUF(4);
1617 READ32(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Ricardo Labiagade3cab72009-12-11 20:03:27 -08001619 if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP)
Benny Halevyf2feb962008-07-02 11:14:22 +03001620 op->status = ops->decoders[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001621 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 op->opnum = OP_ILLEGAL;
1623 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 }
1625
1626 if (op->status) {
1627 argp->opcnt = i+1;
1628 break;
1629 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001630 /*
1631 * We'll try to cache the result in the DRC if any one
1632 * op in the compound wants to be cached:
1633 */
1634 cachethis |= nfsd4_cache_this_op(op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001636 /* Sessions make the DRC unnecessary: */
1637 if (argp->minorversion)
1638 cachethis = false;
1639 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 DECODE_TAIL;
1642}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644#define WRITE32(n) *p++ = htonl(n)
1645#define WRITE64(n) do { \
1646 *p++ = htonl((u32)((n) >> 32)); \
1647 *p++ = htonl((u32)(n)); \
1648} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001649#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1651 memcpy(p, ptr, nbytes); \
1652 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001653}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001654
1655static void write32(__be32 **p, u32 n)
1656{
J. Bruce Fields45eaa1c2012-04-25 18:11:04 -04001657 *(*p)++ = htonl(n);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001658}
1659
1660static void write64(__be32 **p, u64 n)
1661{
J. Bruce Fields45eaa1c2012-04-25 18:11:04 -04001662 write32(p, (n >> 32));
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001663 write32(p, (u32)n);
1664}
1665
1666static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1667{
1668 if (IS_I_VERSION(inode)) {
1669 write64(p, inode->i_version);
1670 } else {
1671 write32(p, stat->ctime.tv_sec);
1672 write32(p, stat->ctime.tv_nsec);
1673 }
1674}
1675
1676static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1677{
1678 write32(p, c->atomic);
1679 if (c->change_supported) {
1680 write64(p, c->before_change);
1681 write64(p, c->after_change);
1682 } else {
1683 write32(p, c->before_ctime_sec);
1684 write32(p, c->before_ctime_nsec);
1685 write32(p, c->after_ctime_sec);
1686 write32(p, c->after_ctime_nsec);
1687 }
1688}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
1690#define RESERVE_SPACE(nbytes) do { \
1691 p = resp->p; \
1692 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1693} while (0)
1694#define ADJUST_ARGS() resp->p = p
1695
1696/*
1697 * Header routine to setup seqid operation replay cache
1698 */
1699#define ENCODE_SEQID_OP_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -07001700 __be32 *save; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 \
1702 save = resp->p;
1703
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001704/* Encode as an array of strings the string given with components
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001705 * separated @sep, escaped with esc_enter and esc_exit.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001706 */
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001707static __be32 nfsd4_encode_components_esc(char sep, char *components,
1708 __be32 **pp, int *buflen,
1709 char esc_enter, char esc_exit)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001710{
Al Viro2ebbc012006-10-19 23:28:58 -07001711 __be32 *p = *pp;
1712 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001713 int strlen, count=0;
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001714 char *str, *end, *next;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001715
1716 dprintk("nfsd4_encode_components(%s)\n", components);
1717 if ((*buflen -= 4) < 0)
1718 return nfserr_resource;
1719 WRITE32(0); /* We will fill this in with @count later */
1720 end = str = components;
1721 while (*end) {
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001722 bool found_esc = false;
1723
1724 /* try to parse as esc_start, ..., esc_end, sep */
1725 if (*str == esc_enter) {
1726 for (; *end && (*end != esc_exit); end++)
1727 /* find esc_exit or end of string */;
1728 next = end + 1;
1729 if (*end && (!*next || *next == sep)) {
1730 str++;
1731 found_esc = true;
1732 }
1733 }
1734
1735 if (!found_esc)
1736 for (; *end && (*end != sep); end++)
1737 /* find sep or end of string */;
1738
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001739 strlen = end - str;
1740 if (strlen) {
1741 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1742 return nfserr_resource;
1743 WRITE32(strlen);
1744 WRITEMEM(str, strlen);
1745 count++;
1746 }
1747 else
1748 end++;
1749 str = end;
1750 }
1751 *pp = p;
1752 p = countp;
1753 WRITE32(count);
1754 return 0;
1755}
1756
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001757/* Encode as an array of strings the string given with components
1758 * separated @sep.
1759 */
1760static __be32 nfsd4_encode_components(char sep, char *components,
1761 __be32 **pp, int *buflen)
1762{
1763 return nfsd4_encode_components_esc(sep, components, pp, buflen, 0, 0);
1764}
1765
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001766/*
1767 * encode a location element of a fs_locations structure
1768 */
Al Virob37ad282006-10-19 23:28:59 -07001769static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001770 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001771{
Al Virob37ad282006-10-19 23:28:59 -07001772 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001773 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001774
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001775 status = nfsd4_encode_components_esc(':', location->hosts, &p, buflen,
1776 '[', ']');
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001777 if (status)
1778 return status;
1779 status = nfsd4_encode_components('/', location->path, &p, buflen);
1780 if (status)
1781 return status;
1782 *pp = p;
1783 return 0;
1784}
1785
1786/*
Trond Myklebusted748aa2011-09-12 19:37:06 -04001787 * Encode a path in RFC3530 'pathname4' format
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001788 */
Trond Myklebusted748aa2011-09-12 19:37:06 -04001789static __be32 nfsd4_encode_path(const struct path *root,
1790 const struct path *path, __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001791{
Trond Myklebusted748aa2011-09-12 19:37:06 -04001792 struct path cur = {
1793 .mnt = path->mnt,
1794 .dentry = path->dentry,
1795 };
1796 __be32 *p = *pp;
1797 struct dentry **components = NULL;
1798 unsigned int ncomponents = 0;
1799 __be32 err = nfserr_jukebox;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001800
Trond Myklebusted748aa2011-09-12 19:37:06 -04001801 dprintk("nfsd4_encode_components(");
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001802
Trond Myklebusted748aa2011-09-12 19:37:06 -04001803 path_get(&cur);
1804 /* First walk the path up to the nfsd root, and store the
1805 * dentries/path components in an array.
1806 */
1807 for (;;) {
1808 if (cur.dentry == root->dentry && cur.mnt == root->mnt)
1809 break;
1810 if (cur.dentry == cur.mnt->mnt_root) {
1811 if (follow_up(&cur))
1812 continue;
1813 goto out_free;
1814 }
1815 if ((ncomponents & 15) == 0) {
1816 struct dentry **new;
1817 new = krealloc(components,
1818 sizeof(*new) * (ncomponents + 16),
1819 GFP_KERNEL);
1820 if (!new)
1821 goto out_free;
1822 components = new;
1823 }
1824 components[ncomponents++] = cur.dentry;
1825 cur.dentry = dget_parent(cur.dentry);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001826 }
Trond Myklebusted748aa2011-09-12 19:37:06 -04001827
1828 *buflen -= 4;
1829 if (*buflen < 0)
1830 goto out_free;
1831 WRITE32(ncomponents);
1832
1833 while (ncomponents) {
1834 struct dentry *dentry = components[ncomponents - 1];
1835 unsigned int len = dentry->d_name.len;
1836
1837 *buflen -= 4 + (XDR_QUADLEN(len) << 2);
1838 if (*buflen < 0)
1839 goto out_free;
1840 WRITE32(len);
1841 WRITEMEM(dentry->d_name.name, len);
1842 dprintk("/%s", dentry->d_name.name);
1843 dput(dentry);
1844 ncomponents--;
1845 }
1846
1847 *pp = p;
1848 err = 0;
1849out_free:
1850 dprintk(")\n");
1851 while (ncomponents)
1852 dput(components[--ncomponents]);
1853 kfree(components);
1854 path_put(&cur);
1855 return err;
1856}
1857
1858static __be32 nfsd4_encode_fsloc_fsroot(struct svc_rqst *rqstp,
1859 const struct path *path, __be32 **pp, int *buflen)
1860{
1861 struct svc_export *exp_ps;
1862 __be32 res;
1863
1864 exp_ps = rqst_find_fsidzero_export(rqstp);
1865 if (IS_ERR(exp_ps))
1866 return nfserrno(PTR_ERR(exp_ps));
1867 res = nfsd4_encode_path(&exp_ps->ex_path, path, pp, buflen);
1868 exp_put(exp_ps);
1869 return res;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001870}
1871
1872/*
1873 * encode a fs_locations structure
1874 */
Al Virob37ad282006-10-19 23:28:59 -07001875static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001876 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001877 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001878{
Al Virob37ad282006-10-19 23:28:59 -07001879 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001880 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001881 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001882 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001883
Trond Myklebusted748aa2011-09-12 19:37:06 -04001884 status = nfsd4_encode_fsloc_fsroot(rqstp, &exp->ex_path, &p, buflen);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001885 if (status)
1886 return status;
1887 if ((*buflen -= 4) < 0)
1888 return nfserr_resource;
1889 WRITE32(fslocs->locations_count);
1890 for (i=0; i<fslocs->locations_count; i++) {
1891 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1892 &p, buflen);
1893 if (status)
1894 return status;
1895 }
1896 *pp = p;
1897 return 0;
1898}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04001900static u32 nfs4_file_type(umode_t mode)
1901{
1902 switch (mode & S_IFMT) {
1903 case S_IFIFO: return NF4FIFO;
1904 case S_IFCHR: return NF4CHR;
1905 case S_IFDIR: return NF4DIR;
1906 case S_IFBLK: return NF4BLK;
1907 case S_IFLNK: return NF4LNK;
1908 case S_IFREG: return NF4REG;
1909 case S_IFSOCK: return NF4SOCK;
1910 default: return NF4BAD;
1911 };
1912}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Al Virob37ad282006-10-19 23:28:59 -07001914static __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001915nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, kuid_t uid, kgid_t gid,
Al Viro2ebbc012006-10-19 23:28:58 -07001916 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
1918 int status;
1919
1920 if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1921 return nfserr_resource;
1922 if (whotype != NFS4_ACL_WHO_NAMED)
1923 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001924 else if (gid_valid(gid))
1925 status = nfsd_map_gid_to_name(rqstp, gid, (u8 *)(*p + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 else
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001927 status = nfsd_map_uid_to_name(rqstp, uid, (u8 *)(*p + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 if (status < 0)
1929 return nfserrno(status);
1930 *p = xdr_encode_opaque(*p, NULL, status);
1931 *buflen -= (XDR_QUADLEN(status) << 2) + 4;
1932 BUG_ON(*buflen < 0);
1933 return 0;
1934}
1935
Al Virob37ad282006-10-19 23:28:59 -07001936static inline __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001937nfsd4_encode_user(struct svc_rqst *rqstp, kuid_t user, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001939 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, user, INVALID_GID,
1940 p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941}
1942
Al Virob37ad282006-10-19 23:28:59 -07001943static inline __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001944nfsd4_encode_group(struct svc_rqst *rqstp, kgid_t group, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001946 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, INVALID_UID, group,
1947 p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
Al Virob37ad282006-10-19 23:28:59 -07001950static inline __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001951nfsd4_encode_aclname(struct svc_rqst *rqstp, struct nfs4_ace *ace,
Al Viro2ebbc012006-10-19 23:28:58 -07001952 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001954 kuid_t uid = INVALID_UID;
1955 kgid_t gid = INVALID_GID;
1956
1957 if (ace->whotype == NFS4_ACL_WHO_NAMED) {
1958 if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
1959 gid = ace->who_gid;
1960 else
1961 uid = ace->who_uid;
1962 }
1963 return nfsd4_encode_name(rqstp, ace->whotype, uid, gid, p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964}
1965
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001966#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1967 FATTR4_WORD0_RDATTR_ERROR)
1968#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1969
Al Virob37ad282006-10-19 23:28:59 -07001970static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001971{
1972 /* As per referral draft: */
1973 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
1974 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
1975 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
1976 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
1977 *rdattr_err = NFSERR_MOVED;
1978 else
1979 return nfserr_moved;
1980 }
1981 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
1982 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
1983 return 0;
1984}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04001986
1987static int get_parent_attributes(struct svc_export *exp, struct kstat *stat)
1988{
1989 struct path path = exp->ex_path;
1990 int err;
1991
1992 path_get(&path);
1993 while (follow_up(&path)) {
1994 if (path.dentry != path.mnt->mnt_root)
1995 break;
1996 }
Al Viro3dadecc2013-01-24 02:18:08 -05001997 err = vfs_getattr(&path, stat);
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04001998 path_put(&path);
1999 return err;
2000}
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002/*
2003 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
2004 * ourselves.
2005 *
J. Bruce Fields84822d02012-12-14 17:57:50 -05002006 * countp is the buffer size in _words_
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 */
Al Virob37ad282006-10-19 23:28:59 -07002008__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
J. Bruce Fields84822d02012-12-14 17:57:50 -05002010 struct dentry *dentry, __be32 **buffer, int count, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002011 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012{
2013 u32 bmval0 = bmval[0];
2014 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03002015 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 struct kstat stat;
2017 struct svc_fh tempfh;
2018 struct kstatfs statfs;
J. Bruce Fields84822d02012-12-14 17:57:50 -05002019 int buflen = count << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07002020 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 u32 dummy;
2022 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002023 u32 rdattr_err = 0;
J. Bruce Fields84822d02012-12-14 17:57:50 -05002024 __be32 *p = *buffer;
Al Virob37ad282006-10-19 23:28:59 -07002025 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002026 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 int aclsupport = 0;
2028 struct nfs4_acl *acl = NULL;
Andy Adamson7e705702009-04-03 08:29:11 +03002029 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2030 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002031 struct path path = {
2032 .mnt = exp->ex_path.mnt,
2033 .dentry = dentry,
2034 };
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03002035 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03002038 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
2039 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
2040 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002042 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03002043 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002044 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
2045 if (status)
2046 goto out;
2047 }
2048
Al Viro3dadecc2013-01-24 02:18:08 -05002049 err = vfs_getattr(&path, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07002050 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002052 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
2053 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
2055 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002056 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07002057 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 goto out_nfserr;
2059 }
2060 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
2061 fh_init(&tempfh, NFS4_FHSIZE);
2062 status = fh_compose(&tempfh, exp, dentry, NULL);
2063 if (status)
2064 goto out;
2065 fhp = &tempfh;
2066 }
2067 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
2068 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07002069 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
2070 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07002072 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07002074 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 status = nfserr_attrnotsupp;
2076 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07002077 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 goto out_nfserr;
2079 }
2080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002082 if (bmval2) {
2083 if ((buflen -= 16) < 0)
2084 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002085 WRITE32(3);
2086 WRITE32(bmval0);
2087 WRITE32(bmval1);
2088 WRITE32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002089 } else if (bmval1) {
2090 if ((buflen -= 12) < 0)
2091 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002092 WRITE32(2);
2093 WRITE32(bmval0);
2094 WRITE32(bmval1);
2095 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002096 if ((buflen -= 8) < 0)
2097 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002098 WRITE32(1);
2099 WRITE32(bmval0);
2100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 attrlenp = p++; /* to be backfilled later */
2102
2103 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03002104 u32 word0 = nfsd_suppattrs0(minorversion);
2105 u32 word1 = nfsd_suppattrs1(minorversion);
2106 u32 word2 = nfsd_suppattrs2(minorversion);
2107
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002108 if (!aclsupport)
2109 word0 &= ~FATTR4_WORD0_ACL;
Andy Adamson7e705702009-04-03 08:29:11 +03002110 if (!word2) {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002111 if ((buflen -= 12) < 0)
2112 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002113 WRITE32(2);
2114 WRITE32(word0);
2115 WRITE32(word1);
2116 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002117 if ((buflen -= 16) < 0)
2118 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002119 WRITE32(3);
2120 WRITE32(word0);
2121 WRITE32(word1);
2122 WRITE32(word2);
2123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 }
2125 if (bmval0 & FATTR4_WORD0_TYPE) {
2126 if ((buflen -= 4) < 0)
2127 goto out_resource;
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002128 dummy = nfs4_file_type(stat.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (dummy == NF4BAD)
2130 goto out_serverfault;
2131 WRITE32(dummy);
2132 }
2133 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
2134 if ((buflen -= 4) < 0)
2135 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07002136 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07002137 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07002138 else
NeilBrowne34ac862005-07-07 17:59:30 -07002139 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
2141 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if ((buflen -= 8) < 0)
2143 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002144 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146 if (bmval0 & FATTR4_WORD0_SIZE) {
2147 if ((buflen -= 8) < 0)
2148 goto out_resource;
2149 WRITE64(stat.size);
2150 }
2151 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
2152 if ((buflen -= 4) < 0)
2153 goto out_resource;
2154 WRITE32(1);
2155 }
2156 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
2157 if ((buflen -= 4) < 0)
2158 goto out_resource;
2159 WRITE32(1);
2160 }
2161 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
2162 if ((buflen -= 4) < 0)
2163 goto out_resource;
2164 WRITE32(0);
2165 }
2166 if (bmval0 & FATTR4_WORD0_FSID) {
2167 if ((buflen -= 16) < 0)
2168 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002169 if (exp->ex_fslocs.migrated) {
2170 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
2171 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002172 } else switch(fsid_source(fhp)) {
2173 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 WRITE64((u64)exp->ex_fsid);
2175 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002176 break;
2177 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 WRITE32(0);
2179 WRITE32(MAJOR(stat.dev));
2180 WRITE32(0);
2181 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08002182 break;
2183 case FSIDSOURCE_UUID:
2184 WRITEMEM(exp->ex_uuid, 16);
2185 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
2187 }
2188 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
2189 if ((buflen -= 4) < 0)
2190 goto out_resource;
2191 WRITE32(0);
2192 }
2193 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
2194 if ((buflen -= 4) < 0)
2195 goto out_resource;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03002196 WRITE32(nn->nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
2198 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
2199 if ((buflen -= 4) < 0)
2200 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002201 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
2203 if (bmval0 & FATTR4_WORD0_ACL) {
2204 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 if (acl == NULL) {
2207 if ((buflen -= 4) < 0)
2208 goto out_resource;
2209
2210 WRITE32(0);
2211 goto out_acl;
2212 }
2213 if ((buflen -= 4) < 0)
2214 goto out_resource;
2215 WRITE32(acl->naces);
2216
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002217 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if ((buflen -= 4*3) < 0)
2219 goto out_resource;
2220 WRITE32(ace->type);
2221 WRITE32(ace->flag);
2222 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08002223 status = nfsd4_encode_aclname(rqstp, ace, &p, &buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 if (status == nfserr_resource)
2225 goto out_resource;
2226 if (status)
2227 goto out;
2228 }
2229 }
2230out_acl:
2231 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
2232 if ((buflen -= 4) < 0)
2233 goto out_resource;
2234 WRITE32(aclsupport ?
2235 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
2236 }
2237 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
2238 if ((buflen -= 4) < 0)
2239 goto out_resource;
2240 WRITE32(1);
2241 }
2242 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
2243 if ((buflen -= 4) < 0)
2244 goto out_resource;
J. Bruce Fields2930d382012-06-05 16:52:06 -04002245 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 }
2247 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
2248 if ((buflen -= 4) < 0)
2249 goto out_resource;
2250 WRITE32(1);
2251 }
2252 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2253 if ((buflen -= 4) < 0)
2254 goto out_resource;
2255 WRITE32(1);
2256 }
2257 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2258 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2259 if (buflen < 0)
2260 goto out_resource;
2261 WRITE32(fhp->fh_handle.fh_size);
2262 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2263 }
2264 if (bmval0 & FATTR4_WORD0_FILEID) {
2265 if ((buflen -= 8) < 0)
2266 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002267 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 }
2269 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2270 if ((buflen -= 8) < 0)
2271 goto out_resource;
2272 WRITE64((u64) statfs.f_ffree);
2273 }
2274 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2275 if ((buflen -= 8) < 0)
2276 goto out_resource;
2277 WRITE64((u64) statfs.f_ffree);
2278 }
2279 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2280 if ((buflen -= 8) < 0)
2281 goto out_resource;
2282 WRITE64((u64) statfs.f_files);
2283 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002284 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2285 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
2286 if (status == nfserr_resource)
2287 goto out_resource;
2288 if (status)
2289 goto out;
2290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2292 if ((buflen -= 4) < 0)
2293 goto out_resource;
2294 WRITE32(1);
2295 }
2296 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2297 if ((buflen -= 8) < 0)
2298 goto out_resource;
2299 WRITE64(~(u64)0);
2300 }
2301 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2302 if ((buflen -= 4) < 0)
2303 goto out_resource;
2304 WRITE32(255);
2305 }
2306 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2307 if ((buflen -= 4) < 0)
2308 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002309 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2312 if ((buflen -= 8) < 0)
2313 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002314 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
2316 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2317 if ((buflen -= 8) < 0)
2318 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002319 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
2321 if (bmval1 & FATTR4_WORD1_MODE) {
2322 if ((buflen -= 4) < 0)
2323 goto out_resource;
2324 WRITE32(stat.mode & S_IALLUGO);
2325 }
2326 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2327 if ((buflen -= 4) < 0)
2328 goto out_resource;
2329 WRITE32(1);
2330 }
2331 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2332 if ((buflen -= 4) < 0)
2333 goto out_resource;
2334 WRITE32(stat.nlink);
2335 }
2336 if (bmval1 & FATTR4_WORD1_OWNER) {
2337 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
2338 if (status == nfserr_resource)
2339 goto out_resource;
2340 if (status)
2341 goto out;
2342 }
2343 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2344 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
2345 if (status == nfserr_resource)
2346 goto out_resource;
2347 if (status)
2348 goto out;
2349 }
2350 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2351 if ((buflen -= 8) < 0)
2352 goto out_resource;
2353 WRITE32((u32) MAJOR(stat.rdev));
2354 WRITE32((u32) MINOR(stat.rdev));
2355 }
2356 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2357 if ((buflen -= 8) < 0)
2358 goto out_resource;
2359 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2360 WRITE64(dummy64);
2361 }
2362 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2363 if ((buflen -= 8) < 0)
2364 goto out_resource;
2365 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2366 WRITE64(dummy64);
2367 }
2368 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2369 if ((buflen -= 8) < 0)
2370 goto out_resource;
2371 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2372 WRITE64(dummy64);
2373 }
2374 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2375 if ((buflen -= 8) < 0)
2376 goto out_resource;
2377 dummy64 = (u64)stat.blocks << 9;
2378 WRITE64(dummy64);
2379 }
2380 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2381 if ((buflen -= 12) < 0)
2382 goto out_resource;
2383 WRITE32(0);
2384 WRITE32(stat.atime.tv_sec);
2385 WRITE32(stat.atime.tv_nsec);
2386 }
2387 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2388 if ((buflen -= 12) < 0)
2389 goto out_resource;
2390 WRITE32(0);
2391 WRITE32(1);
2392 WRITE32(0);
2393 }
2394 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2395 if ((buflen -= 12) < 0)
2396 goto out_resource;
2397 WRITE32(0);
2398 WRITE32(stat.ctime.tv_sec);
2399 WRITE32(stat.ctime.tv_nsec);
2400 }
2401 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2402 if ((buflen -= 12) < 0)
2403 goto out_resource;
2404 WRITE32(0);
2405 WRITE32(stat.mtime.tv_sec);
2406 WRITE32(stat.mtime.tv_nsec);
2407 }
2408 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if ((buflen -= 8) < 0)
2410 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002411 /*
2412 * Get parent's attributes if not ignoring crossmount
2413 * and this is the root of a cross-mounted filesystem.
2414 */
2415 if (ignore_crossmnt == 0 &&
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002416 dentry == exp->ex_path.mnt->mnt_root)
2417 get_parent_attributes(exp, &stat);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002418 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002420 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
2421 WRITE32(3);
2422 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2423 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2424 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2425 }
Andy Adamson7e705702009-04-03 08:29:11 +03002426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
J. Bruce Fields84822d02012-12-14 17:57:50 -05002428 *buffer = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 status = nfs_ok;
2430
2431out:
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002432 kfree(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 if (fhp == &tempfh)
2434 fh_put(&tempfh);
2435 return status;
2436out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002437 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 goto out;
2439out_resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 status = nfserr_resource;
2441 goto out;
2442out_serverfault:
2443 status = nfserr_serverfault;
2444 goto out;
2445}
2446
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002447static inline int attributes_need_mount(u32 *bmval)
2448{
2449 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2450 return 1;
2451 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2452 return 1;
2453 return 0;
2454}
2455
Al Virob37ad282006-10-19 23:28:59 -07002456static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
J. Bruce Fields84822d02012-12-14 17:57:50 -05002458 const char *name, int namlen, __be32 **p, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 struct svc_export *exp = cd->rd_fhp->fh_export;
2461 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002462 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002463 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2466 if (IS_ERR(dentry))
2467 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002468 if (!dentry->d_inode) {
2469 /*
2470 * nfsd_buffered_readdir drops the i_mutex between
2471 * readdir and calling this callback, leaving a window
2472 * where this directory entry could have gone away.
2473 */
2474 dput(dentry);
2475 return nfserr_noent;
2476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002479 /*
2480 * In the case of a mountpoint, the client may be asking for
2481 * attributes that are only properties of the underlying filesystem
2482 * as opposed to the cross-mounted file system. In such a case,
2483 * we will not follow the cross mount and will fill the attribtutes
2484 * directly from the mountpoint dentry.
2485 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002486 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002487 int err;
2488
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002489 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2490 && !attributes_need_mount(cd->rd_bmval)) {
2491 ignore_crossmnt = 1;
2492 goto out_encode;
2493 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002494 /*
2495 * Why the heck aren't we just using nfsd_lookup??
2496 * Different "."/".." handling? Something else?
2497 * At least, add a comment here to explain....
2498 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002499 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2500 if (err) {
2501 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 goto out_put;
2503 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002504 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2505 if (nfserr)
2506 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002509out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002511 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512out_put:
2513 dput(dentry);
2514 exp_put(exp);
2515 return nfserr;
2516}
2517
Al Viro2ebbc012006-10-19 23:28:58 -07002518static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002519nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
Al Viro2ebbc012006-10-19 23:28:58 -07002521 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523 if (buflen < 6)
2524 return NULL;
2525 *p++ = htonl(2);
2526 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2527 *p++ = htonl(0); /* bmval1 */
2528
2529 attrlenp = p++;
2530 *p++ = nfserr; /* no htonl */
2531 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2532 return p;
2533}
2534
2535static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002536nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2537 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002539 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2541 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002542 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002543 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002544 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 /* In nfsv4, "." and ".." never make it onto the wire.. */
2547 if (name && isdotent(name, namlen)) {
2548 cd->common.err = nfs_ok;
2549 return 0;
2550 }
2551
2552 if (cd->offset)
2553 xdr_encode_hyper(cd->offset, (u64) offset);
2554
2555 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2556 if (buflen < 0)
2557 goto fail;
2558
2559 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002560 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2562 p = xdr_encode_array(p, name, namlen); /* name length & name */
2563
J. Bruce Fields84822d02012-12-14 17:57:50 -05002564 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, &p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 switch (nfserr) {
2566 case nfs_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 break;
2568 case nfserr_resource:
2569 nfserr = nfserr_toosmall;
2570 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002571 case nfserr_noent:
2572 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 default:
2574 /*
2575 * If the client requested the RDATTR_ERROR attribute,
2576 * we stuff the error code into this attribute
2577 * and continue. If this attribute was not requested,
2578 * then in accordance with the spec, we fail the
2579 * entire READDIR operation(!)
2580 */
2581 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2582 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002584 if (p == NULL) {
2585 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 }
2589 cd->buflen -= (p - cd->buffer);
2590 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002591 cd->offset = cookiep;
2592skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 cd->common.err = nfs_ok;
2594 return 0;
2595fail:
2596 cd->common.err = nfserr;
2597 return -EINVAL;
2598}
2599
Benny Halevye2f282b2008-08-12 20:45:07 +03002600static void
2601nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2602{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002603 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002604
2605 RESERVE_SPACE(sizeof(stateid_t));
2606 WRITE32(sid->si_generation);
2607 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2608 ADJUST_ARGS();
2609}
2610
Benny Halevy695e12f2008-07-04 14:38:33 +03002611static __be32
Al Virob37ad282006-10-19 23:28:59 -07002612nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002614 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616 if (!nfserr) {
2617 RESERVE_SPACE(8);
2618 WRITE32(access->ac_supported);
2619 WRITE32(access->ac_resp_access);
2620 ADJUST_ARGS();
2621 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002622 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623}
2624
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002625static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
2626{
2627 __be32 *p;
2628
2629 if (!nfserr) {
2630 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 8);
2631 WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
2632 WRITE32(bcts->dir);
J. Bruce Fields6e67b5d2012-09-13 09:49:43 -04002633 /* Sorry, we do not yet support RDMA over 4.1: */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002634 WRITE32(0);
2635 ADJUST_ARGS();
2636 }
2637 return nfserr;
2638}
2639
Benny Halevy695e12f2008-07-04 14:38:33 +03002640static __be32
Al Virob37ad282006-10-19 23:28:59 -07002641nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
2643 ENCODE_SEQID_OP_HEAD;
2644
Benny Halevye2f282b2008-08-12 20:45:07 +03002645 if (!nfserr)
2646 nfsd4_encode_stateid(resp, &close->cl_stateid);
2647
Benny Halevy695e12f2008-07-04 14:38:33 +03002648 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649}
2650
2651
Benny Halevy695e12f2008-07-04 14:38:33 +03002652static __be32
Al Virob37ad282006-10-19 23:28:59 -07002653nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002655 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657 if (!nfserr) {
Chuck Leverab4684d2012-03-02 17:13:50 -05002658 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
2659 WRITEMEM(commit->co_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 ADJUST_ARGS();
2661 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002662 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
Benny Halevy695e12f2008-07-04 14:38:33 +03002665static __be32
Al Virob37ad282006-10-19 23:28:59 -07002666nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002668 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670 if (!nfserr) {
2671 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002672 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 WRITE32(2);
2674 WRITE32(create->cr_bmval[0]);
2675 WRITE32(create->cr_bmval[1]);
2676 ADJUST_ARGS();
2677 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002678 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679}
2680
Al Virob37ad282006-10-19 23:28:59 -07002681static __be32
2682nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683{
2684 struct svc_fh *fhp = getattr->ga_fhp;
2685 int buflen;
2686
2687 if (nfserr)
2688 return nfserr;
2689
2690 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2691 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
J. Bruce Fields84822d02012-12-14 17:57:50 -05002692 &resp->p, buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002693 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 return nfserr;
2695}
2696
Benny Halevy695e12f2008-07-04 14:38:33 +03002697static __be32
2698nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699{
Benny Halevy695e12f2008-07-04 14:38:33 +03002700 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002702 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
2704 if (!nfserr) {
2705 len = fhp->fh_handle.fh_size;
2706 RESERVE_SPACE(len + 4);
2707 WRITE32(len);
2708 WRITEMEM(&fhp->fh_handle.fh_base, len);
2709 ADJUST_ARGS();
2710 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002711 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712}
2713
2714/*
2715* Including all fields other than the name, a LOCK4denied structure requires
2716* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2717*/
2718static void
2719nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2720{
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002721 struct xdr_netobj *conf = &ld->ld_owner;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002722 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002724 RESERVE_SPACE(32 + XDR_LEN(conf->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 WRITE64(ld->ld_start);
2726 WRITE64(ld->ld_length);
2727 WRITE32(ld->ld_type);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002728 if (conf->len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 WRITEMEM(&ld->ld_clientid, 8);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002730 WRITE32(conf->len);
2731 WRITEMEM(conf->data, conf->len);
2732 kfree(conf->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2734 WRITE64((u64)0); /* clientid */
2735 WRITE32(0); /* length of owner name */
2736 }
2737 ADJUST_ARGS();
2738}
2739
Benny Halevy695e12f2008-07-04 14:38:33 +03002740static __be32
Al Virob37ad282006-10-19 23:28:59 -07002741nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 ENCODE_SEQID_OP_HEAD;
2744
Benny Halevye2f282b2008-08-12 20:45:07 +03002745 if (!nfserr)
2746 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2747 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2749
Benny Halevy695e12f2008-07-04 14:38:33 +03002750 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751}
2752
Benny Halevy695e12f2008-07-04 14:38:33 +03002753static __be32
Al Virob37ad282006-10-19 23:28:59 -07002754nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755{
2756 if (nfserr == nfserr_denied)
2757 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002758 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759}
2760
Benny Halevy695e12f2008-07-04 14:38:33 +03002761static __be32
Al Virob37ad282006-10-19 23:28:59 -07002762nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763{
2764 ENCODE_SEQID_OP_HEAD;
2765
Benny Halevye2f282b2008-08-12 20:45:07 +03002766 if (!nfserr)
2767 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2768
Benny Halevy695e12f2008-07-04 14:38:33 +03002769 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770}
2771
2772
Benny Halevy695e12f2008-07-04 14:38:33 +03002773static __be32
Al Virob37ad282006-10-19 23:28:59 -07002774nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002776 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
2778 if (!nfserr) {
2779 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002780 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 ADJUST_ARGS();
2782 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002783 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784}
2785
2786
Benny Halevy695e12f2008-07-04 14:38:33 +03002787static __be32
Al Virob37ad282006-10-19 23:28:59 -07002788nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002790 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 ENCODE_SEQID_OP_HEAD;
2792
2793 if (nfserr)
2794 goto out;
2795
Benny Halevye2f282b2008-08-12 20:45:07 +03002796 nfsd4_encode_stateid(resp, &open->op_stateid);
2797 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002798 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 WRITE32(open->op_rflags);
2800 WRITE32(2);
2801 WRITE32(open->op_bmval[0]);
2802 WRITE32(open->op_bmval[1]);
2803 WRITE32(open->op_delegate_type);
2804 ADJUST_ARGS();
2805
2806 switch (open->op_delegate_type) {
2807 case NFS4_OPEN_DELEGATE_NONE:
2808 break;
2809 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002810 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2811 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002812 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
2814 /*
2815 * TODO: ACE's in delegations
2816 */
2817 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2818 WRITE32(0);
2819 WRITE32(0);
2820 WRITE32(0); /* XXX: is NULL principal ok? */
2821 ADJUST_ARGS();
2822 break;
2823 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002824 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2825 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 WRITE32(0);
2827
2828 /*
2829 * TODO: space_limit's in delegations
2830 */
2831 WRITE32(NFS4_LIMIT_SIZE);
2832 WRITE32(~(u32)0);
2833 WRITE32(~(u32)0);
2834
2835 /*
2836 * TODO: ACE's in delegations
2837 */
2838 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2839 WRITE32(0);
2840 WRITE32(0);
2841 WRITE32(0); /* XXX: is NULL principal ok? */
2842 ADJUST_ARGS();
2843 break;
Benny Halevyd24433c2012-02-16 20:57:17 +02002844 case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */
2845 switch (open->op_why_no_deleg) {
2846 case WND4_CONTENTION:
2847 case WND4_RESOURCE:
2848 RESERVE_SPACE(8);
2849 WRITE32(open->op_why_no_deleg);
2850 WRITE32(0); /* deleg signaling not supported yet */
2851 break;
2852 default:
2853 RESERVE_SPACE(4);
2854 WRITE32(open->op_why_no_deleg);
2855 }
2856 ADJUST_ARGS();
2857 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 default:
2859 BUG();
2860 }
2861 /* XXX save filehandle here */
2862out:
Benny Halevy695e12f2008-07-04 14:38:33 +03002863 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864}
2865
Benny Halevy695e12f2008-07-04 14:38:33 +03002866static __be32
Al Virob37ad282006-10-19 23:28:59 -07002867nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868{
2869 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002870
2871 if (!nfserr)
2872 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Benny Halevy695e12f2008-07-04 14:38:33 +03002874 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875}
2876
Benny Halevy695e12f2008-07-04 14:38:33 +03002877static __be32
Al Virob37ad282006-10-19 23:28:59 -07002878nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879{
2880 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002881
2882 if (!nfserr)
2883 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Benny Halevy695e12f2008-07-04 14:38:33 +03002885 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886}
2887
Al Virob37ad282006-10-19 23:28:59 -07002888static __be32
2889nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002890 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
2892 u32 eof;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002893 int v;
2894 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 unsigned long maxcount;
2896 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002897 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899 if (nfserr)
2900 return nfserr;
2901 if (resp->xbuf->page_len)
2902 return nfserr_resource;
2903
2904 RESERVE_SPACE(8); /* eof flag and byte count */
2905
Greg Banks7adae482006-10-04 02:15:47 -07002906 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 if (maxcount > read->rd_length)
2908 maxcount = read->rd_length;
2909
2910 len = maxcount;
2911 v = 0;
2912 while (len > 0) {
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002913 page = *(resp->rqstp->rq_next_page);
2914 if (!page) { /* ran out of pages */
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05002915 maxcount -= len;
2916 break;
2917 }
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002918 resp->rqstp->rq_vec[v].iov_base = page_address(page);
NeilBrown3cc03b12006-10-04 02:15:47 -07002919 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002920 len < PAGE_SIZE ? len : PAGE_SIZE;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002921 resp->rqstp->rq_next_page++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 v++;
2923 len -= PAGE_SIZE;
2924 }
2925 read->rd_vlen = v;
2926
J. Bruce Fields039a87c2010-07-30 11:33:32 -04002927 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002928 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 &maxcount);
2930
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 if (nfserr)
2932 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002933 eof = (read->rd_offset + maxcount >=
2934 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
2936 WRITE32(eof);
2937 WRITE32(maxcount);
2938 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002939 resp->xbuf->head[0].iov_len = (char*)p
2940 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 resp->xbuf->page_len = maxcount;
2942
NeilBrown6ed6dec2006-04-10 22:55:32 -07002943 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002944 resp->xbuf->tail[0].iov_base = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002947 RESERVE_SPACE(4);
2948 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 resp->xbuf->tail[0].iov_base += maxcount&3;
2950 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002951 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 }
2953 return 0;
2954}
2955
Al Virob37ad282006-10-19 23:28:59 -07002956static __be32
2957nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958{
2959 int maxcount;
2960 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002961 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963 if (nfserr)
2964 return nfserr;
2965 if (resp->xbuf->page_len)
2966 return nfserr_resource;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002967 if (!*resp->rqstp->rq_next_page)
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05002968 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002970 page = page_address(*(resp->rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971
2972 maxcount = PAGE_SIZE;
2973 RESERVE_SPACE(4);
2974
2975 /*
2976 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2977 * if they would overflow the buffer. Is this kosher in NFSv4? If
2978 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2979 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2980 */
2981 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
2982 if (nfserr == nfserr_isdir)
2983 return nfserr_inval;
2984 if (nfserr)
2985 return nfserr;
2986
2987 WRITE32(maxcount);
2988 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002989 resp->xbuf->head[0].iov_len = (char*)p
2990 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 resp->xbuf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07002992
2993 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002994 resp->xbuf->tail[0].iov_base = p;
2995 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002997 RESERVE_SPACE(4);
2998 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 resp->xbuf->tail[0].iov_base += maxcount&3;
3000 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07003001 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 }
3003 return 0;
3004}
3005
Al Virob37ad282006-10-19 23:28:59 -07003006static __be32
3007nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
3009 int maxcount;
3010 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07003011 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003012 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
3014 if (nfserr)
3015 return nfserr;
3016 if (resp->xbuf->page_len)
3017 return nfserr_resource;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003018 if (!*resp->rqstp->rq_next_page)
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05003019 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Chuck Leverab4684d2012-03-02 17:13:50 -05003021 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 savep = p;
3023
3024 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
3025 WRITE32(0);
3026 WRITE32(0);
3027 ADJUST_ARGS();
3028 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07003029 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
3031 maxcount = PAGE_SIZE;
3032 if (maxcount > readdir->rd_maxcount)
3033 maxcount = readdir->rd_maxcount;
3034
3035 /*
3036 * Convert from bytes to words, account for the two words already
3037 * written, make sure to leave two words at the end for the next
3038 * pointer and eof field.
3039 */
3040 maxcount = (maxcount >> 2) - 4;
3041 if (maxcount < 0) {
3042 nfserr = nfserr_toosmall;
3043 goto err_no_verf;
3044 }
3045
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003046 page = page_address(*(resp->rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 readdir->common.err = 0;
3048 readdir->buflen = maxcount;
3049 readdir->buffer = page;
3050 readdir->offset = NULL;
3051
3052 offset = readdir->rd_cookie;
3053 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
3054 &offset,
3055 &readdir->common, nfsd4_encode_dirent);
3056 if (nfserr == nfs_ok &&
3057 readdir->common.err == nfserr_toosmall &&
3058 readdir->buffer == page)
3059 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 if (nfserr)
3061 goto err_no_verf;
3062
3063 if (readdir->offset)
3064 xdr_encode_hyper(readdir->offset, offset);
3065
3066 p = readdir->buffer;
3067 *p++ = 0; /* no more entries */
3068 *p++ = htonl(readdir->common.err == nfserr_eof);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003069 resp->xbuf->page_len = ((char*)p) -
3070 (char*)page_address(*(resp->rqstp->rq_next_page-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
NeilBrownbb6e8a92006-04-10 22:55:33 -07003072 /* Use rest of head for padding and remaining ops: */
NeilBrownbb6e8a92006-04-10 22:55:33 -07003073 resp->xbuf->tail[0].iov_base = tailbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 resp->xbuf->tail[0].iov_len = 0;
3075 resp->p = resp->xbuf->tail[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07003076 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
3078 return 0;
3079err_no_verf:
3080 p = savep;
3081 ADJUST_ARGS();
3082 return nfserr;
3083}
3084
Benny Halevy695e12f2008-07-04 14:38:33 +03003085static __be32
Al Virob37ad282006-10-19 23:28:59 -07003086nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003088 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
3090 if (!nfserr) {
3091 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04003092 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 ADJUST_ARGS();
3094 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003095 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096}
3097
Benny Halevy695e12f2008-07-04 14:38:33 +03003098static __be32
Al Virob37ad282006-10-19 23:28:59 -07003099nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003101 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
3103 if (!nfserr) {
3104 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04003105 write_cinfo(&p, &rename->rn_sinfo);
3106 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 ADJUST_ARGS();
3108 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003109 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110}
3111
Benny Halevy695e12f2008-07-04 14:38:33 +03003112static __be32
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003113nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
3114 __be32 nfserr,struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07003115{
3116 int i = 0;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003117 u32 nflavs;
3118 struct exp_flavor_info *flavs;
3119 struct exp_flavor_info def_flavs[2];
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003120 __be32 *p;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003121
3122 if (nfserr)
3123 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003124 if (exp->ex_nflavors) {
3125 flavs = exp->ex_flavors;
3126 nflavs = exp->ex_nflavors;
3127 } else { /* Handling of some defaults in absence of real secinfo: */
3128 flavs = def_flavs;
3129 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
3130 nflavs = 2;
3131 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
3132 flavs[1].pseudoflavor = RPC_AUTH_NULL;
3133 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
3134 nflavs = 1;
3135 flavs[0].pseudoflavor
3136 = svcauth_gss_flavor(exp->ex_client);
3137 } else {
3138 nflavs = 1;
3139 flavs[0].pseudoflavor
3140 = exp->ex_client->flavour->flavour;
3141 }
3142 }
3143
Andy Adamsondcb488a32007-07-17 04:04:51 -07003144 RESERVE_SPACE(4);
J. Bruce Fields4796f452007-07-17 04:04:51 -07003145 WRITE32(nflavs);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003146 ADJUST_ARGS();
J. Bruce Fields4796f452007-07-17 04:04:51 -07003147 for (i = 0; i < nflavs; i++) {
3148 u32 flav = flavs[i].pseudoflavor;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003149 struct gss_api_mech *gm = gss_mech_get_by_pseudoflavor(flav);
3150
3151 if (gm) {
3152 RESERVE_SPACE(4);
3153 WRITE32(RPC_AUTH_GSS);
3154 ADJUST_ARGS();
3155 RESERVE_SPACE(4 + gm->gm_oid.len);
3156 WRITE32(gm->gm_oid.len);
3157 WRITEMEM(gm->gm_oid.data, gm->gm_oid.len);
3158 ADJUST_ARGS();
3159 RESERVE_SPACE(4);
3160 WRITE32(0); /* qop */
3161 ADJUST_ARGS();
3162 RESERVE_SPACE(4);
3163 WRITE32(gss_pseudoflavor_to_service(gm, flav));
3164 ADJUST_ARGS();
3165 gss_mech_put(gm);
3166 } else {
3167 RESERVE_SPACE(4);
3168 WRITE32(flav);
3169 ADJUST_ARGS();
3170 }
3171 }
3172out:
3173 if (exp)
3174 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03003175 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003176}
3177
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003178static __be32
3179nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
3180 struct nfsd4_secinfo *secinfo)
3181{
3182 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
3183}
3184
3185static __be32
3186nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
3187 struct nfsd4_secinfo_no_name *secinfo)
3188{
3189 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
3190}
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192/*
3193 * The SETATTR encode routine is special -- it always encodes a bitmap,
3194 * regardless of the error status.
3195 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003196static __be32
Al Virob37ad282006-10-19 23:28:59 -07003197nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003199 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
3201 RESERVE_SPACE(12);
3202 if (nfserr) {
3203 WRITE32(2);
3204 WRITE32(0);
3205 WRITE32(0);
3206 }
3207 else {
3208 WRITE32(2);
3209 WRITE32(setattr->sa_bmval[0]);
3210 WRITE32(setattr->sa_bmval[1]);
3211 }
3212 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03003213 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214}
3215
Benny Halevy695e12f2008-07-04 14:38:33 +03003216static __be32
Al Virob37ad282006-10-19 23:28:59 -07003217nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003219 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
3221 if (!nfserr) {
Chuck Leverab4684d2012-03-02 17:13:50 -05003222 RESERVE_SPACE(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 WRITEMEM(&scd->se_clientid, 8);
Chuck Leverab4684d2012-03-02 17:13:50 -05003224 WRITEMEM(&scd->se_confirm, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 ADJUST_ARGS();
3226 }
3227 else if (nfserr == nfserr_clid_inuse) {
3228 RESERVE_SPACE(8);
3229 WRITE32(0);
3230 WRITE32(0);
3231 ADJUST_ARGS();
3232 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003233 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234}
3235
Benny Halevy695e12f2008-07-04 14:38:33 +03003236static __be32
Al Virob37ad282006-10-19 23:28:59 -07003237nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003239 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
3241 if (!nfserr) {
3242 RESERVE_SPACE(16);
3243 WRITE32(write->wr_bytes_written);
3244 WRITE32(write->wr_how_written);
Chuck Leverab4684d2012-03-02 17:13:50 -05003245 WRITEMEM(write->wr_verifier.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 ADJUST_ARGS();
3247 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003248 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249}
3250
Benny Halevy695e12f2008-07-04 14:38:33 +03003251static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003252nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003253 struct nfsd4_exchange_id *exid)
3254{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003255 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03003256 char *major_id;
3257 char *server_scope;
3258 int major_id_sz;
3259 int server_scope_sz;
3260 uint64_t minor_id = 0;
3261
3262 if (nfserr)
3263 return nfserr;
3264
3265 major_id = utsname()->nodename;
3266 major_id_sz = strlen(major_id);
3267 server_scope = utsname()->nodename;
3268 server_scope_sz = strlen(server_scope);
3269
3270 RESERVE_SPACE(
3271 8 /* eir_clientid */ +
3272 4 /* eir_sequenceid */ +
3273 4 /* eir_flags */ +
3274 4 /* spr_how (SP4_NONE) */ +
3275 8 /* so_minor_id */ +
3276 4 /* so_major_id.len */ +
3277 (XDR_QUADLEN(major_id_sz) * 4) +
3278 4 /* eir_server_scope.len */ +
3279 (XDR_QUADLEN(server_scope_sz) * 4) +
3280 4 /* eir_server_impl_id.count (0) */);
3281
3282 WRITEMEM(&exid->clientid, 8);
3283 WRITE32(exid->seqid);
3284 WRITE32(exid->flags);
3285
3286 /* state_protect4_r. Currently only support SP4_NONE */
3287 BUG_ON(exid->spa_how != SP4_NONE);
3288 WRITE32(exid->spa_how);
3289
3290 /* The server_owner struct */
3291 WRITE64(minor_id); /* Minor id */
3292 /* major id */
3293 WRITE32(major_id_sz);
3294 WRITEMEM(major_id, major_id_sz);
3295
3296 /* Server scope */
3297 WRITE32(server_scope_sz);
3298 WRITEMEM(server_scope, server_scope_sz);
3299
3300 /* Implementation id */
3301 WRITE32(0); /* zero length nfs_impl_id4 array */
3302 ADJUST_ARGS();
3303 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003304}
3305
3306static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003307nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003308 struct nfsd4_create_session *sess)
3309{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003310 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003311
3312 if (nfserr)
3313 return nfserr;
3314
3315 RESERVE_SPACE(24);
3316 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3317 WRITE32(sess->seqid);
3318 WRITE32(sess->flags);
3319 ADJUST_ARGS();
3320
3321 RESERVE_SPACE(28);
3322 WRITE32(0); /* headerpadsz */
3323 WRITE32(sess->fore_channel.maxreq_sz);
3324 WRITE32(sess->fore_channel.maxresp_sz);
3325 WRITE32(sess->fore_channel.maxresp_cached);
3326 WRITE32(sess->fore_channel.maxops);
3327 WRITE32(sess->fore_channel.maxreqs);
3328 WRITE32(sess->fore_channel.nr_rdma_attrs);
3329 ADJUST_ARGS();
3330
3331 if (sess->fore_channel.nr_rdma_attrs) {
3332 RESERVE_SPACE(4);
3333 WRITE32(sess->fore_channel.rdma_attrs);
3334 ADJUST_ARGS();
3335 }
3336
3337 RESERVE_SPACE(28);
3338 WRITE32(0); /* headerpadsz */
3339 WRITE32(sess->back_channel.maxreq_sz);
3340 WRITE32(sess->back_channel.maxresp_sz);
3341 WRITE32(sess->back_channel.maxresp_cached);
3342 WRITE32(sess->back_channel.maxops);
3343 WRITE32(sess->back_channel.maxreqs);
3344 WRITE32(sess->back_channel.nr_rdma_attrs);
3345 ADJUST_ARGS();
3346
3347 if (sess->back_channel.nr_rdma_attrs) {
3348 RESERVE_SPACE(4);
3349 WRITE32(sess->back_channel.rdma_attrs);
3350 ADJUST_ARGS();
3351 }
3352 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003353}
3354
3355static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003356nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003357 struct nfsd4_destroy_session *destroy_session)
3358{
Andy Adamson2db134e2009-04-03 08:27:55 +03003359 return nfserr;
3360}
3361
Daniel Mackc47d8322011-05-16 16:38:14 +02003362static __be32
J. Bruce Fieldsd1829b32012-04-25 18:04:54 -04003363nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003364 struct nfsd4_free_stateid *free_stateid)
3365{
3366 __be32 *p;
3367
3368 if (nfserr)
3369 return nfserr;
3370
3371 RESERVE_SPACE(4);
J. Bruce Fieldsd1829b32012-04-25 18:04:54 -04003372 *p++ = nfserr;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003373 ADJUST_ARGS();
3374 return nfserr;
3375}
3376
3377static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003378nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003379 struct nfsd4_sequence *seq)
3380{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003381 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003382
3383 if (nfserr)
3384 return nfserr;
3385
3386 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3387 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3388 WRITE32(seq->seqid);
3389 WRITE32(seq->slotid);
J. Bruce Fieldsb7d7ca32011-08-31 15:39:30 -04003390 /* Note slotid's are numbered from zero: */
3391 WRITE32(seq->maxslots - 1); /* sr_highest_slotid */
3392 WRITE32(seq->maxslots - 1); /* sr_target_highest_slotid */
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05003393 WRITE32(seq->status_flags);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003394
3395 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003396 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003397 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003398}
3399
J. Bruce Fields2355c592012-04-25 16:56:22 -04003400static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003401nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumaker17456802011-07-13 10:50:48 -04003402 struct nfsd4_test_stateid *test_stateid)
3403{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003404 struct nfsd4_test_stateid_id *stateid, *next;
Bryan Schumaker17456802011-07-13 10:50:48 -04003405 __be32 *p;
Bryan Schumaker17456802011-07-13 10:50:48 -04003406
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003407 RESERVE_SPACE(4 + (4 * test_stateid->ts_num_ids));
Bryan Schumaker17456802011-07-13 10:50:48 -04003408 *p++ = htonl(test_stateid->ts_num_ids);
Bryan Schumaker17456802011-07-13 10:50:48 -04003409
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003410 list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) {
Al Viro02f5fde2012-04-13 00:10:34 -04003411 *p++ = stateid->ts_id_status;
Bryan Schumaker17456802011-07-13 10:50:48 -04003412 }
Bryan Schumaker17456802011-07-13 10:50:48 -04003413
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003414 ADJUST_ARGS();
Bryan Schumaker17456802011-07-13 10:50:48 -04003415 return nfserr;
3416}
3417
Andy Adamson2db134e2009-04-03 08:27:55 +03003418static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003419nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3420{
3421 return nfserr;
3422}
3423
3424typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3425
Andy Adamson2db134e2009-04-03 08:27:55 +03003426/*
3427 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3428 * since we don't need to filter out obsolete ops as this is
3429 * done in the decoding phase.
3430 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003431static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003432 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3433 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3434 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3435 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3436 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3437 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3438 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3439 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3440 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3441 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3442 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3443 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3444 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3445 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3446 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3447 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003448 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003449 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3450 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3451 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3452 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3453 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3454 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3455 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3456 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3457 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3458 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3459 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3460 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3461 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3462 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3463 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3464 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3465 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3466 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3467 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3468 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003469
3470 /* NFSv4.1 operations */
3471 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003472 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
Andy Adamson2db134e2009-04-03 08:27:55 +03003473 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3474 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3475 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003476 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_free_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003477 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3478 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3479 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3480 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3481 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3482 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003483 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003484 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3485 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
Bryan Schumaker17456802011-07-13 10:50:48 -04003486 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003487 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3488 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3489 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003490};
3491
Andy Adamson496c2622009-04-03 08:28:48 +03003492/*
3493 * Calculate the total amount of memory that the compound response has taken
Mi Jinlong58e7b332011-08-28 18:18:56 +08003494 * after encoding the current operation with pad.
Andy Adamson496c2622009-04-03 08:28:48 +03003495 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003496 * pad: if operation is non-idempotent, pad was calculate by op_rsize_bop()
3497 * which was specified at nfsd4_operation, else pad is zero.
Andy Adamson496c2622009-04-03 08:28:48 +03003498 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003499 * Compare this length to the session se_fmaxresp_sz and se_fmaxresp_cached.
Andy Adamson496c2622009-04-03 08:28:48 +03003500 *
3501 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3502 * will be at least a page and will therefore hold the xdr_buf head.
3503 */
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003504__be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 pad)
Andy Adamson496c2622009-04-03 08:28:48 +03003505{
Andy Adamson496c2622009-04-03 08:28:48 +03003506 struct xdr_buf *xb = &resp->rqstp->rq_res;
Andy Adamson496c2622009-04-03 08:28:48 +03003507 struct nfsd4_session *session = NULL;
3508 struct nfsd4_slot *slot = resp->cstate.slot;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003509 u32 length, tlen = 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003510
3511 if (!nfsd4_has_session(&resp->cstate))
Mi Jinlong58e7b332011-08-28 18:18:56 +08003512 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003513
3514 session = resp->cstate.session;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003515 if (session == NULL)
3516 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003517
3518 if (xb->page_len == 0) {
3519 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3520 } else {
3521 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3522 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3523
3524 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3525 }
3526 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3527 length, xb->page_len, tlen, pad);
3528
Mi Jinlong58e7b332011-08-28 18:18:56 +08003529 if (length > session->se_fchannel.maxresp_sz)
3530 return nfserr_rep_too_big;
3531
J. Bruce Fields73e79482012-02-13 16:39:00 -05003532 if ((slot->sl_flags & NFSD4_SLOT_CACHETHIS) &&
Mi Jinlong58e7b332011-08-28 18:18:56 +08003533 length > session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003534 return nfserr_rep_too_big_to_cache;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003535
3536 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003537}
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539void
3540nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3541{
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003542 struct nfs4_stateowner *so = resp->cstate.replay_owner;
Al Viro2ebbc012006-10-19 23:28:58 -07003543 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003544 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
3546 RESERVE_SPACE(8);
3547 WRITE32(op->opnum);
3548 statp = p++; /* to be backfilled at the end */
3549 ADJUST_ARGS();
3550
Benny Halevy695e12f2008-07-04 14:38:33 +03003551 if (op->opnum == OP_ILLEGAL)
3552 goto status;
3553 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3554 !nfsd4_enc_ops[op->opnum]);
3555 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
Andy Adamson496c2622009-04-03 08:28:48 +03003556 /* nfsd4_check_drc_limit guarantees enough room for error status */
Mi Jinlong58e7b332011-08-28 18:18:56 +08003557 if (!op->status)
3558 op->status = nfsd4_check_resp_size(resp, 0);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003559 if (so) {
3560 so->so_replay.rp_status = op->status;
3561 so->so_replay.rp_buflen = (char *)resp->p - (char *)(statp+1);
3562 memcpy(so->so_replay.rp_buf, statp+1, so->so_replay.rp_buflen);
3563 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003564status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 /*
3566 * Note: We write the status directly, instead of using WRITE32(),
3567 * since it is already in network byte order.
3568 */
3569 *statp = op->status;
3570}
3571
3572/*
3573 * Encode the reply stored in the stateowner reply cache
3574 *
3575 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3576 * previously sent already encoded operation.
3577 *
3578 * called with nfs4_lock_state() held
3579 */
3580void
3581nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3582{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003583 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 struct nfs4_replay *rp = op->replay;
3585
3586 BUG_ON(!rp);
3587
3588 RESERVE_SPACE(8);
3589 WRITE32(op->opnum);
3590 *p++ = rp->rp_status; /* already xdr'ed */
3591 ADJUST_ARGS();
3592
3593 RESERVE_SPACE(rp->rp_buflen);
3594 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3595 ADJUST_ARGS();
3596}
3597
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598int
Al Viro2ebbc012006-10-19 23:28:58 -07003599nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600{
3601 return xdr_ressize_check(rqstp, p);
3602}
3603
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003604int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605{
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003606 struct svc_rqst *rqstp = rq;
3607 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3608
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 if (args->ops != args->iops) {
3610 kfree(args->ops);
3611 args->ops = args->iops;
3612 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003613 kfree(args->tmpp);
3614 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 while (args->to_free) {
3616 struct tmpbuf *tb = args->to_free;
3617 args->to_free = tb->next;
3618 tb->release(tb->buf);
3619 kfree(tb);
3620 }
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003621 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622}
3623
3624int
Al Viro2ebbc012006-10-19 23:28:58 -07003625nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 args->p = p;
3628 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3629 args->pagelist = rqstp->rq_arg.pages;
3630 args->pagelen = rqstp->rq_arg.page_len;
3631 args->tmpp = NULL;
3632 args->to_free = NULL;
3633 args->ops = args->iops;
3634 args->rqstp = rqstp;
3635
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003636 return !nfsd4_decode_compound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637}
3638
3639int
Al Viro2ebbc012006-10-19 23:28:58 -07003640nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641{
3642 /*
3643 * All that remains is to write the tag and operation count...
3644 */
Andy Adamson557ce262009-08-28 08:45:04 -04003645 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 struct kvec *iov;
3647 p = resp->tagp;
3648 *p++ = htonl(resp->taglen);
3649 memcpy(p, resp->tag, resp->taglen);
3650 p += XDR_QUADLEN(resp->taglen);
3651 *p++ = htonl(resp->opcnt);
3652
3653 if (rqstp->rq_res.page_len)
3654 iov = &rqstp->rq_res.tail[0];
3655 else
3656 iov = &rqstp->rq_res.head[0];
3657 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3658 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003659 if (nfsd4_has_session(cs)) {
3660 if (cs->status != nfserr_replay_cache) {
3661 nfsd4_store_cache_entry(resp);
J. Bruce Fields73e79482012-02-13 16:39:00 -05003662 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003663 }
Benny Halevyd7682982010-05-12 00:13:54 +03003664 /* Renew the clientid on success and on replay */
J. Bruce Fields221a6872013-04-01 22:23:49 -04003665 put_client_renew(cs->session->se_client);
3666 nfsd4_put_session(cs->session);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 return 1;
3669}
3670
3671/*
3672 * Local variables:
3673 * c-basic-offset: 8
3674 * End:
3675 */