blob: 9aeacddafa3fbcae50f9de3ba750e106a5a76b7e [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;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -0400347 READ64(iattr->ia_atime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 READ32(iattr->ia_atime.tv_nsec);
349 if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
350 return nfserr_inval;
351 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
352 break;
353 case NFS4_SET_TO_SERVER_TIME:
354 iattr->ia_valid |= ATTR_ATIME;
355 break;
356 default:
357 goto xdr_error;
358 }
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
361 READ_BUF(4);
362 len += 4;
363 READ32(dummy32);
364 switch (dummy32) {
365 case NFS4_SET_TO_CLIENT_TIME:
366 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
367 all 32 bits of 'nseconds'. */
368 READ_BUF(12);
369 len += 12;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -0400370 READ64(iattr->ia_mtime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 READ32(iattr->ia_mtime.tv_nsec);
372 if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
373 return nfserr_inval;
374 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
375 break;
376 case NFS4_SET_TO_SERVER_TIME:
377 iattr->ia_valid |= ATTR_MTIME;
378 break;
379 default:
380 goto xdr_error;
381 }
382 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800383 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
384 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
385 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2)
386 READ_BUF(expected_len - len);
387 else if (len != expected_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 goto xdr_error;
389
390 DECODE_TAIL;
391
392out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -0700393 status = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 goto out;
395}
396
Al Virob37ad282006-10-19 23:28:59 -0700397static __be32
Benny Halevye31a1b62008-08-12 20:46:18 +0300398nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
399{
400 DECODE_HEAD;
401
402 READ_BUF(sizeof(stateid_t));
403 READ32(sid->si_generation);
404 COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
405
406 DECODE_TAIL;
407}
408
409static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
411{
412 DECODE_HEAD;
413
414 READ_BUF(4);
415 READ32(access->ac_req_access);
416
417 DECODE_TAIL;
418}
419
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400420static __be32 nfsd4_decode_cb_sec(struct nfsd4_compoundargs *argp, struct nfsd4_cb_sec *cbs)
421{
422 DECODE_HEAD;
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500423 u32 dummy, uid, gid;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400424 char *machine_name;
425 int i;
426 int nr_secflavs;
427
428 /* callback_sec_params4 */
429 READ_BUF(4);
430 READ32(nr_secflavs);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500431 cbs->flavor = (u32)(-1);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400432 for (i = 0; i < nr_secflavs; ++i) {
433 READ_BUF(4);
434 READ32(dummy);
435 switch (dummy) {
436 case RPC_AUTH_NULL:
437 /* Nothing to read */
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500438 if (cbs->flavor == (u32)(-1))
439 cbs->flavor = RPC_AUTH_NULL;
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400440 break;
441 case RPC_AUTH_UNIX:
442 READ_BUF(8);
443 /* stamp */
444 READ32(dummy);
445
446 /* machine name */
447 READ32(dummy);
448 READ_BUF(dummy);
449 SAVEMEM(machine_name, dummy);
450
451 /* uid, gid */
452 READ_BUF(8);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500453 READ32(uid);
454 READ32(gid);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400455
456 /* more gids */
457 READ_BUF(4);
458 READ32(dummy);
459 READ_BUF(dummy * 4);
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500460 if (cbs->flavor == (u32)(-1)) {
Eric W. Biederman03bc6d12013-02-02 06:24:49 -0800461 kuid_t kuid = make_kuid(&init_user_ns, uid);
462 kgid_t kgid = make_kgid(&init_user_ns, gid);
463 if (uid_valid(kuid) && gid_valid(kgid)) {
464 cbs->uid = kuid;
465 cbs->gid = kgid;
466 cbs->flavor = RPC_AUTH_UNIX;
467 } else {
468 dprintk("RPC_AUTH_UNIX with invalid"
469 "uid or gid ignoring!\n");
470 }
J. Bruce Fields12fc3e92012-11-05 16:01:48 -0500471 }
J. Bruce Fieldsacb28872012-03-27 14:50:26 -0400472 break;
473 case RPC_AUTH_GSS:
474 dprintk("RPC_AUTH_GSS callback secflavor "
475 "not supported!\n");
476 READ_BUF(8);
477 /* gcbp_service */
478 READ32(dummy);
479 /* gcbp_handle_from_server */
480 READ32(dummy);
481 READ_BUF(dummy);
482 p += XDR_QUADLEN(dummy);
483 /* gcbp_handle_from_client */
484 READ_BUF(4);
485 READ32(dummy);
486 READ_BUF(dummy);
487 break;
488 default:
489 dprintk("Illegal callback secflavor\n");
490 return nfserr_inval;
491 }
492 }
493 DECODE_TAIL;
494}
495
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -0400496static __be32 nfsd4_decode_backchannel_ctl(struct nfsd4_compoundargs *argp, struct nfsd4_backchannel_ctl *bc)
497{
498 DECODE_HEAD;
499
500 READ_BUF(4);
501 READ32(bc->bc_cb_program);
502 nfsd4_decode_cb_sec(argp, &bc->bc_cb_sec);
503
504 DECODE_TAIL;
505}
506
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400507static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
508{
509 DECODE_HEAD;
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400510
511 READ_BUF(NFS4_MAX_SESSIONID_LEN + 8);
512 COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
513 READ32(bcts->dir);
Bryan Schumaker6ce23572011-04-27 15:47:16 -0400514 /* XXX: skipping ctsa_use_conn_in_rdma_mode. Perhaps Tom Tucker
515 * could help us figure out we should be using it. */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400516 DECODE_TAIL;
517}
518
Al Virob37ad282006-10-19 23:28:59 -0700519static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
521{
522 DECODE_HEAD;
523
Benny Halevye31a1b62008-08-12 20:46:18 +0300524 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300526 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 DECODE_TAIL;
529}
530
531
Al Virob37ad282006-10-19 23:28:59 -0700532static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
534{
535 DECODE_HEAD;
536
537 READ_BUF(12);
538 READ64(commit->co_offset);
539 READ32(commit->co_count);
540
541 DECODE_TAIL;
542}
543
Al Virob37ad282006-10-19 23:28:59 -0700544static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
546{
547 DECODE_HEAD;
548
549 READ_BUF(4);
550 READ32(create->cr_type);
551 switch (create->cr_type) {
552 case NF4LNK:
553 READ_BUF(4);
554 READ32(create->cr_linklen);
555 READ_BUF(create->cr_linklen);
556 SAVEMEM(create->cr_linkname, create->cr_linklen);
557 break;
558 case NF4BLK:
559 case NF4CHR:
560 READ_BUF(8);
561 READ32(create->cr_specdata1);
562 READ32(create->cr_specdata2);
563 break;
564 case NF4SOCK:
565 case NF4FIFO:
566 case NF4DIR:
567 default:
568 break;
569 }
570
571 READ_BUF(4);
572 READ32(create->cr_namelen);
573 READ_BUF(create->cr_namelen);
574 SAVEMEM(create->cr_name, create->cr_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500575 if ((status = check_filename(create->cr_name, create->cr_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return status;
577
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800578 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
579 &create->cr_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300580 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 goto out;
582
583 DECODE_TAIL;
584}
585
Al Virob37ad282006-10-19 23:28:59 -0700586static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
588{
Benny Halevye31a1b62008-08-12 20:46:18 +0300589 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Al Virob37ad282006-10-19 23:28:59 -0700592static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
594{
595 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
596}
597
Al Virob37ad282006-10-19 23:28:59 -0700598static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
600{
601 DECODE_HEAD;
602
603 READ_BUF(4);
604 READ32(link->li_namelen);
605 READ_BUF(link->li_namelen);
606 SAVEMEM(link->li_name, link->li_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500607 if ((status = check_filename(link->li_name, link->li_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return status;
609
610 DECODE_TAIL;
611}
612
Al Virob37ad282006-10-19 23:28:59 -0700613static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
615{
616 DECODE_HEAD;
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /*
619 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
620 */
621 READ_BUF(28);
622 READ32(lock->lk_type);
623 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
624 goto xdr_error;
625 READ32(lock->lk_reclaim);
626 READ64(lock->lk_offset);
627 READ64(lock->lk_length);
628 READ32(lock->lk_is_new);
629
630 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300631 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300633 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
634 if (status)
635 return status;
636 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 READ32(lock->lk_new_lock_seqid);
638 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
639 READ32(lock->lk_new_owner.len);
640 READ_BUF(lock->lk_new_owner.len);
641 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
642 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300643 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
644 if (status)
645 return status;
646 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 READ32(lock->lk_old_lock_seqid);
648 }
649
650 DECODE_TAIL;
651}
652
Al Virob37ad282006-10-19 23:28:59 -0700653static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
655{
656 DECODE_HEAD;
657
658 READ_BUF(32);
659 READ32(lockt->lt_type);
660 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
661 goto xdr_error;
662 READ64(lockt->lt_offset);
663 READ64(lockt->lt_length);
664 COPYMEM(&lockt->lt_clientid, 8);
665 READ32(lockt->lt_owner.len);
666 READ_BUF(lockt->lt_owner.len);
667 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
668
669 DECODE_TAIL;
670}
671
Al Virob37ad282006-10-19 23:28:59 -0700672static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
674{
675 DECODE_HEAD;
676
Benny Halevye31a1b62008-08-12 20:46:18 +0300677 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 READ32(locku->lu_type);
679 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
680 goto xdr_error;
681 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300682 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
683 if (status)
684 return status;
685 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 READ64(locku->lu_offset);
687 READ64(locku->lu_length);
688
689 DECODE_TAIL;
690}
691
Al Virob37ad282006-10-19 23:28:59 -0700692static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
694{
695 DECODE_HEAD;
696
697 READ_BUF(4);
698 READ32(lookup->lo_len);
699 READ_BUF(lookup->lo_len);
700 SAVEMEM(lookup->lo_name, lookup->lo_len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500701 if ((status = check_filename(lookup->lo_name, lookup->lo_len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return status;
703
704 DECODE_TAIL;
705}
706
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200707static __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 -0400708{
709 __be32 *p;
710 u32 w;
711
712 READ_BUF(4);
713 READ32(w);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200714 *share_access = w & NFS4_SHARE_ACCESS_MASK;
715 *deleg_want = w & NFS4_SHARE_WANT_MASK;
716 if (deleg_when)
717 *deleg_when = w & NFS4_SHARE_WHEN_MASK;
718
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400719 switch (w & NFS4_SHARE_ACCESS_MASK) {
720 case NFS4_SHARE_ACCESS_READ:
721 case NFS4_SHARE_ACCESS_WRITE:
722 case NFS4_SHARE_ACCESS_BOTH:
723 break;
724 default:
725 return nfserr_bad_xdr;
726 }
Benny Halevyfc0d14f2011-10-27 20:43:01 +0200727 w &= ~NFS4_SHARE_ACCESS_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400728 if (!w)
729 return nfs_ok;
730 if (!argp->minorversion)
731 return nfserr_bad_xdr;
732 switch (w & NFS4_SHARE_WANT_MASK) {
733 case NFS4_SHARE_WANT_NO_PREFERENCE:
734 case NFS4_SHARE_WANT_READ_DELEG:
735 case NFS4_SHARE_WANT_WRITE_DELEG:
736 case NFS4_SHARE_WANT_ANY_DELEG:
737 case NFS4_SHARE_WANT_NO_DELEG:
738 case NFS4_SHARE_WANT_CANCEL:
739 break;
740 default:
741 return nfserr_bad_xdr;
742 }
Benny Halevy92bac8c2011-10-19 19:13:29 -0700743 w &= ~NFS4_SHARE_WANT_MASK;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400744 if (!w)
745 return nfs_ok;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200746
747 if (!deleg_when) /* open_downgrade */
748 return nfserr_inval;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400749 switch (w) {
750 case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL:
751 case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED:
Benny Halevyc668fc62011-10-19 19:13:13 -0700752 case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL |
753 NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED):
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400754 return nfs_ok;
755 }
756xdr_error:
757 return nfserr_bad_xdr;
758}
759
760static __be32 nfsd4_decode_share_deny(struct nfsd4_compoundargs *argp, u32 *x)
761{
762 __be32 *p;
763
764 READ_BUF(4);
765 READ32(*x);
766 /* Note: unlinke access bits, deny bits may be zero. */
Dan Carpenter01cd4afa2011-10-17 10:41:17 +0300767 if (*x & ~NFS4_SHARE_DENY_BOTH)
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400768 return nfserr_bad_xdr;
769 return nfs_ok;
770xdr_error:
771 return nfserr_bad_xdr;
772}
773
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400774static __be32 nfsd4_decode_opaque(struct nfsd4_compoundargs *argp, struct xdr_netobj *o)
775{
776 __be32 *p;
777
778 READ_BUF(4);
779 READ32(o->len);
780
781 if (o->len == 0 || o->len > NFS4_OPAQUE_LIMIT)
782 return nfserr_bad_xdr;
783
784 READ_BUF(o->len);
785 SAVEMEM(o->data, o->len);
786 return nfs_ok;
787xdr_error:
788 return nfserr_bad_xdr;
789}
790
Al Virob37ad282006-10-19 23:28:59 -0700791static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
793{
794 DECODE_HEAD;
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200795 u32 dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 memset(open->op_bmval, 0, sizeof(open->op_bmval));
798 open->op_iattr.ia_valid = 0;
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400799 open->op_openowner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800801 open->op_xdr_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /* seqid, share_access, share_deny, clientid, ownerlen */
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400803 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 READ32(open->op_seqid);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200805 /* decode, yet ignore deleg_when until supported */
806 status = nfsd4_decode_share_access(argp, &open->op_share_access,
807 &open->op_deleg_want, &dummy);
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400808 if (status)
809 goto xdr_error;
810 status = nfsd4_decode_share_deny(argp, &open->op_share_deny);
811 if (status)
812 goto xdr_error;
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400813 READ_BUF(sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 COPYMEM(&open->op_clientid, sizeof(clientid_t));
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -0400815 status = nfsd4_decode_opaque(argp, &open->op_owner);
816 if (status)
817 goto xdr_error;
818 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 READ32(open->op_create);
820 switch (open->op_create) {
821 case NFS4_OPEN_NOCREATE:
822 break;
823 case NFS4_OPEN_CREATE:
824 READ_BUF(4);
825 READ32(open->op_createmode);
826 switch (open->op_createmode) {
827 case NFS4_CREATE_UNCHECKED:
828 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300829 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800830 &open->op_iattr, &open->op_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300831 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 goto out;
833 break;
834 case NFS4_CREATE_EXCLUSIVE:
Chuck Leverab4684d2012-03-02 17:13:50 -0500835 READ_BUF(NFS4_VERIFIER_SIZE);
836 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300838 case NFS4_CREATE_EXCLUSIVE4_1:
839 if (argp->minorversion < 1)
840 goto xdr_error;
Chuck Leverab4684d2012-03-02 17:13:50 -0500841 READ_BUF(NFS4_VERIFIER_SIZE);
842 COPYMEM(open->op_verf.data, NFS4_VERIFIER_SIZE);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300843 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800844 &open->op_iattr, &open->op_acl);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300845 if (status)
846 goto out;
847 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 default:
849 goto xdr_error;
850 }
851 break;
852 default:
853 goto xdr_error;
854 }
855
856 /* open_claim */
857 READ_BUF(4);
858 READ32(open->op_claim_type);
859 switch (open->op_claim_type) {
860 case NFS4_OPEN_CLAIM_NULL:
861 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
862 READ_BUF(4);
863 READ32(open->op_fname.len);
864 READ_BUF(open->op_fname.len);
865 SAVEMEM(open->op_fname.data, open->op_fname.len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500866 if ((status = check_filename(open->op_fname.data, open->op_fname.len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return status;
868 break;
869 case NFS4_OPEN_CLAIM_PREVIOUS:
870 READ_BUF(4);
871 READ32(open->op_delegate_type);
872 break;
873 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300874 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
875 if (status)
876 return status;
877 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 READ32(open->op_fname.len);
879 READ_BUF(open->op_fname.len);
880 SAVEMEM(open->op_fname.data, open->op_fname.len);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500881 if ((status = check_filename(open->op_fname.data, open->op_fname.len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return status;
883 break;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400884 case NFS4_OPEN_CLAIM_FH:
885 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
886 if (argp->minorversion < 1)
887 goto xdr_error;
888 /* void */
889 break;
890 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
891 if (argp->minorversion < 1)
892 goto xdr_error;
893 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
894 if (status)
895 return status;
896 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 default:
898 goto xdr_error;
899 }
900
901 DECODE_TAIL;
902}
903
Al Virob37ad282006-10-19 23:28:59 -0700904static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
906{
907 DECODE_HEAD;
908
Benny Halevye31a1b62008-08-12 20:46:18 +0300909 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
910 if (status)
911 return status;
912 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 READ32(open_conf->oc_seqid);
914
915 DECODE_TAIL;
916}
917
Al Virob37ad282006-10-19 23:28:59 -0700918static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
920{
921 DECODE_HEAD;
922
Benny Halevye31a1b62008-08-12 20:46:18 +0300923 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
924 if (status)
925 return status;
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400926 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 READ32(open_down->od_seqid);
Benny Halevy2c8bd7e2012-02-16 20:57:09 +0200928 status = nfsd4_decode_share_access(argp, &open_down->od_share_access,
929 &open_down->od_deleg_want, NULL);
J. Bruce Fields04f9e662011-10-10 14:37:13 -0400930 if (status)
931 return status;
932 status = nfsd4_decode_share_deny(argp, &open_down->od_share_deny);
933 if (status)
934 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 DECODE_TAIL;
936}
937
Al Virob37ad282006-10-19 23:28:59 -0700938static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
940{
941 DECODE_HEAD;
942
943 READ_BUF(4);
944 READ32(putfh->pf_fhlen);
945 if (putfh->pf_fhlen > NFS4_FHSIZE)
946 goto xdr_error;
947 READ_BUF(putfh->pf_fhlen);
948 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
949
950 DECODE_TAIL;
951}
952
Al Virob37ad282006-10-19 23:28:59 -0700953static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
955{
956 DECODE_HEAD;
957
Benny Halevye31a1b62008-08-12 20:46:18 +0300958 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
959 if (status)
960 return status;
961 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 READ64(read->rd_offset);
963 READ32(read->rd_length);
964
965 DECODE_TAIL;
966}
967
Al Virob37ad282006-10-19 23:28:59 -0700968static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
970{
971 DECODE_HEAD;
972
973 READ_BUF(24);
974 READ64(readdir->rd_cookie);
975 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
976 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
977 READ32(readdir->rd_maxcount);
978 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
979 goto out;
980
981 DECODE_TAIL;
982}
983
Al Virob37ad282006-10-19 23:28:59 -0700984static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
986{
987 DECODE_HEAD;
988
989 READ_BUF(4);
990 READ32(remove->rm_namelen);
991 READ_BUF(remove->rm_namelen);
992 SAVEMEM(remove->rm_name, remove->rm_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -0500993 if ((status = check_filename(remove->rm_name, remove->rm_namelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return status;
995
996 DECODE_TAIL;
997}
998
Al Virob37ad282006-10-19 23:28:59 -0700999static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
1001{
1002 DECODE_HEAD;
1003
1004 READ_BUF(4);
1005 READ32(rename->rn_snamelen);
1006 READ_BUF(rename->rn_snamelen + 4);
1007 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
1008 READ32(rename->rn_tnamelen);
1009 READ_BUF(rename->rn_tnamelen);
1010 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001011 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return status;
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001013 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return status;
1015
1016 DECODE_TAIL;
1017}
1018
Al Virob37ad282006-10-19 23:28:59 -07001019static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
1021{
1022 DECODE_HEAD;
1023
1024 READ_BUF(sizeof(clientid_t));
1025 COPYMEM(clientid, sizeof(clientid_t));
1026
1027 DECODE_TAIL;
1028}
1029
Al Virob37ad282006-10-19 23:28:59 -07001030static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -07001031nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
1032 struct nfsd4_secinfo *secinfo)
1033{
1034 DECODE_HEAD;
1035
1036 READ_BUF(4);
1037 READ32(secinfo->si_namelen);
1038 READ_BUF(secinfo->si_namelen);
1039 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
J. Bruce Fieldsa36b1722012-11-25 16:31:00 -05001040 status = check_filename(secinfo->si_name, secinfo->si_namelen);
Andy Adamsondcb488a32007-07-17 04:04:51 -07001041 if (status)
1042 return status;
1043 DECODE_TAIL;
1044}
1045
1046static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001047nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
1048 struct nfsd4_secinfo_no_name *sin)
1049{
1050 DECODE_HEAD;
1051
1052 READ_BUF(4);
1053 READ32(sin->sin_style);
1054 DECODE_TAIL;
1055}
1056
1057static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
1059{
Benny Halevye31a1b62008-08-12 20:46:18 +03001060 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Benny Halevye31a1b62008-08-12 20:46:18 +03001062 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
1063 if (status)
1064 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +08001065 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
1066 &setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
Al Virob37ad282006-10-19 23:28:59 -07001069static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
1071{
1072 DECODE_HEAD;
1073
Chuck Leverab4684d2012-03-02 17:13:50 -05001074 READ_BUF(NFS4_VERIFIER_SIZE);
1075 COPYMEM(setclientid->se_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001077 status = nfsd4_decode_opaque(argp, &setclientid->se_name);
1078 if (status)
1079 return nfserr_bad_xdr;
1080 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 READ32(setclientid->se_callback_prog);
1082 READ32(setclientid->se_callback_netid_len);
1083
1084 READ_BUF(setclientid->se_callback_netid_len + 4);
1085 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
1086 READ32(setclientid->se_callback_addr_len);
1087
1088 READ_BUF(setclientid->se_callback_addr_len + 4);
1089 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
1090 READ32(setclientid->se_callback_ident);
1091
1092 DECODE_TAIL;
1093}
1094
Al Virob37ad282006-10-19 23:28:59 -07001095static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
1097{
1098 DECODE_HEAD;
1099
Chuck Leverab4684d2012-03-02 17:13:50 -05001100 READ_BUF(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 COPYMEM(&scd_c->sc_clientid, 8);
Chuck Leverab4684d2012-03-02 17:13:50 -05001102 COPYMEM(&scd_c->sc_confirm, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 DECODE_TAIL;
1105}
1106
1107/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -07001108static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
1110{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 DECODE_HEAD;
1112
1113 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
1114 goto out;
1115
1116 /* For convenience's sake, we compare raw xdr'd attributes in
J. Bruce Fieldse5f95702012-11-30 17:24:18 -05001117 * nfsd4_proc_verify */
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 READ_BUF(4);
1120 READ32(verify->ve_attrlen);
1121 READ_BUF(verify->ve_attrlen);
1122 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
1123
1124 DECODE_TAIL;
1125}
1126
Al Virob37ad282006-10-19 23:28:59 -07001127static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
1129{
1130 int avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 int len;
1132 DECODE_HEAD;
1133
Benny Halevye31a1b62008-08-12 20:46:18 +03001134 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
1135 if (status)
1136 return status;
1137 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 READ64(write->wr_offset);
1139 READ32(write->wr_stable_how);
1140 if (write->wr_stable_how > 2)
1141 goto xdr_error;
1142 READ32(write->wr_buflen);
1143
1144 /* Sorry .. no magic macros for this.. *
1145 * READ_BUF(write->wr_buflen);
1146 * SAVEMEM(write->wr_buf, write->wr_buflen);
1147 */
1148 avail = (char*)argp->end - (char*)argp->p;
1149 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -04001150 dprintk("NFSD: xdr error (%s:%d)\n",
1151 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 goto xdr_error;
1153 }
J. Bruce Fields70cc7f72012-11-16 14:16:46 -05001154 write->wr_head.iov_base = p;
1155 write->wr_head.iov_len = avail;
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001156 WARN_ON(avail != (XDR_QUADLEN(avail) << 2));
J. Bruce Fields70cc7f72012-11-16 14:16:46 -05001157 write->wr_pagelist = argp->pagelist;
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001158
1159 len = XDR_QUADLEN(write->wr_buflen) << 2;
1160 if (len >= avail) {
1161 int pages;
1162
1163 len -= avail;
1164
1165 pages = len >> PAGE_SHIFT;
1166 argp->pagelist += pages;
1167 argp->pagelen -= pages * PAGE_SIZE;
1168 len -= pages * PAGE_SIZE;
1169
1170 argp->p = (__be32 *)page_address(argp->pagelist[0]);
1171 argp->end = argp->p + XDR_QUADLEN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
J. Bruce Fields5a80a542012-11-16 10:01:30 -05001173 argp->p += XDR_QUADLEN(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 DECODE_TAIL;
1176}
1177
Al Virob37ad282006-10-19 23:28:59 -07001178static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1180{
1181 DECODE_HEAD;
1182
1183 READ_BUF(12);
1184 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1185 READ32(rlockowner->rl_owner.len);
1186 READ_BUF(rlockowner->rl_owner.len);
1187 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1188
Andy Adamson60adfc52009-04-03 08:28:50 +03001189 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1190 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 DECODE_TAIL;
1192}
1193
Al Virob37ad282006-10-19 23:28:59 -07001194static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001195nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001196 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001197{
Mi Jinlong5afa0402010-11-09 09:39:23 +08001198 int dummy, tmp;
Andy Adamson0733d212009-04-03 08:28:01 +03001199 DECODE_HEAD;
1200
1201 READ_BUF(NFS4_VERIFIER_SIZE);
1202 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1203
J. Bruce Fieldsa084daf2011-10-10 15:07:40 -04001204 status = nfsd4_decode_opaque(argp, &exid->clname);
1205 if (status)
1206 return nfserr_bad_xdr;
Andy Adamson0733d212009-04-03 08:28:01 +03001207
1208 READ_BUF(4);
1209 READ32(exid->flags);
1210
1211 /* Ignore state_protect4_a */
1212 READ_BUF(4);
1213 READ32(exid->spa_how);
1214 switch (exid->spa_how) {
1215 case SP4_NONE:
1216 break;
1217 case SP4_MACH_CRED:
1218 /* spo_must_enforce */
1219 READ_BUF(4);
1220 READ32(dummy);
1221 READ_BUF(dummy * 4);
1222 p += dummy;
1223
1224 /* spo_must_allow */
1225 READ_BUF(4);
1226 READ32(dummy);
1227 READ_BUF(dummy * 4);
1228 p += dummy;
1229 break;
1230 case SP4_SSV:
1231 /* ssp_ops */
1232 READ_BUF(4);
1233 READ32(dummy);
1234 READ_BUF(dummy * 4);
1235 p += dummy;
1236
1237 READ_BUF(4);
1238 READ32(dummy);
1239 READ_BUF(dummy * 4);
1240 p += dummy;
1241
1242 /* ssp_hash_algs<> */
1243 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001244 READ32(tmp);
1245 while (tmp--) {
1246 READ_BUF(4);
1247 READ32(dummy);
1248 READ_BUF(dummy);
1249 p += XDR_QUADLEN(dummy);
1250 }
Andy Adamson0733d212009-04-03 08:28:01 +03001251
1252 /* ssp_encr_algs<> */
1253 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001254 READ32(tmp);
1255 while (tmp--) {
1256 READ_BUF(4);
1257 READ32(dummy);
1258 READ_BUF(dummy);
1259 p += XDR_QUADLEN(dummy);
1260 }
Andy Adamson0733d212009-04-03 08:28:01 +03001261
1262 /* ssp_window and ssp_num_gss_handles */
1263 READ_BUF(8);
1264 READ32(dummy);
1265 READ32(dummy);
1266 break;
1267 default:
1268 goto xdr_error;
1269 }
1270
1271 /* Ignore Implementation ID */
1272 READ_BUF(4); /* nfs_impl_id4 array length */
1273 READ32(dummy);
1274
1275 if (dummy > 1)
1276 goto xdr_error;
1277
1278 if (dummy == 1) {
1279 /* nii_domain */
1280 READ_BUF(4);
1281 READ32(dummy);
1282 READ_BUF(dummy);
1283 p += XDR_QUADLEN(dummy);
1284
1285 /* nii_name */
1286 READ_BUF(4);
1287 READ32(dummy);
1288 READ_BUF(dummy);
1289 p += XDR_QUADLEN(dummy);
1290
1291 /* nii_date */
1292 READ_BUF(12);
1293 p += 3;
1294 }
1295 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001296}
1297
1298static __be32
1299nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1300 struct nfsd4_create_session *sess)
1301{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001302 DECODE_HEAD;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001303 u32 dummy;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001304
1305 READ_BUF(16);
1306 COPYMEM(&sess->clientid, 8);
1307 READ32(sess->seqid);
1308 READ32(sess->flags);
1309
1310 /* Fore channel attrs */
1311 READ_BUF(28);
1312 READ32(dummy); /* headerpadsz is always 0 */
1313 READ32(sess->fore_channel.maxreq_sz);
1314 READ32(sess->fore_channel.maxresp_sz);
1315 READ32(sess->fore_channel.maxresp_cached);
1316 READ32(sess->fore_channel.maxops);
1317 READ32(sess->fore_channel.maxreqs);
1318 READ32(sess->fore_channel.nr_rdma_attrs);
1319 if (sess->fore_channel.nr_rdma_attrs == 1) {
1320 READ_BUF(4);
1321 READ32(sess->fore_channel.rdma_attrs);
1322 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1323 dprintk("Too many fore channel attr bitmaps!\n");
1324 goto xdr_error;
1325 }
1326
1327 /* Back channel attrs */
1328 READ_BUF(28);
1329 READ32(dummy); /* headerpadsz is always 0 */
1330 READ32(sess->back_channel.maxreq_sz);
1331 READ32(sess->back_channel.maxresp_sz);
1332 READ32(sess->back_channel.maxresp_cached);
1333 READ32(sess->back_channel.maxops);
1334 READ32(sess->back_channel.maxreqs);
1335 READ32(sess->back_channel.nr_rdma_attrs);
1336 if (sess->back_channel.nr_rdma_attrs == 1) {
1337 READ_BUF(4);
1338 READ32(sess->back_channel.rdma_attrs);
1339 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1340 dprintk("Too many back channel attr bitmaps!\n");
1341 goto xdr_error;
1342 }
1343
J. Bruce Fieldsacb28872012-03-27 14:50:26 -04001344 READ_BUF(4);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001345 READ32(sess->callback_prog);
J. Bruce Fieldsacb28872012-03-27 14:50:26 -04001346 nfsd4_decode_cb_sec(argp, &sess->cb_sec);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001347 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001348}
1349
1350static __be32
1351nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1352 struct nfsd4_destroy_session *destroy_session)
1353{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001354 DECODE_HEAD;
1355 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1356 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1357
1358 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001359}
1360
1361static __be32
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001362nfsd4_decode_free_stateid(struct nfsd4_compoundargs *argp,
1363 struct nfsd4_free_stateid *free_stateid)
1364{
1365 DECODE_HEAD;
1366
1367 READ_BUF(sizeof(stateid_t));
1368 READ32(free_stateid->fr_stateid.si_generation);
1369 COPYMEM(&free_stateid->fr_stateid.si_opaque, sizeof(stateid_opaque_t));
1370
1371 DECODE_TAIL;
1372}
1373
1374static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001375nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1376 struct nfsd4_sequence *seq)
1377{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001378 DECODE_HEAD;
1379
1380 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1381 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1382 READ32(seq->seqid);
1383 READ32(seq->slotid);
1384 READ32(seq->maxslots);
1385 READ32(seq->cachethis);
1386
1387 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001388}
1389
Bryan Schumaker17456802011-07-13 10:50:48 -04001390static __be32
1391nfsd4_decode_test_stateid(struct nfsd4_compoundargs *argp, struct nfsd4_test_stateid *test_stateid)
1392{
Bryan Schumaker17456802011-07-13 10:50:48 -04001393 int i;
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001394 __be32 *p, status;
1395 struct nfsd4_test_stateid_id *stateid;
Bryan Schumaker17456802011-07-13 10:50:48 -04001396
1397 READ_BUF(4);
1398 test_stateid->ts_num_ids = ntohl(*p++);
1399
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001400 INIT_LIST_HEAD(&test_stateid->ts_stateid_list);
Bryan Schumaker17456802011-07-13 10:50:48 -04001401
1402 for (i = 0; i < test_stateid->ts_num_ids; i++) {
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001403 stateid = kmalloc(sizeof(struct nfsd4_test_stateid_id), GFP_KERNEL);
1404 if (!stateid) {
Al Viroafcf6792012-04-13 00:15:37 -04001405 status = nfserrno(-ENOMEM);
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001406 goto out;
1407 }
1408
1409 defer_free(argp, kfree, stateid);
1410 INIT_LIST_HEAD(&stateid->ts_id_list);
1411 list_add_tail(&stateid->ts_id_list, &test_stateid->ts_stateid_list);
1412
1413 status = nfsd4_decode_stateid(argp, &stateid->ts_id_stateid);
Bryan Schumaker17456802011-07-13 10:50:48 -04001414 if (status)
Bryan Schumaker03cfb422012-01-27 10:22:49 -05001415 goto out;
Bryan Schumaker17456802011-07-13 10:50:48 -04001416 }
1417
1418 status = 0;
1419out:
1420 return status;
1421xdr_error:
1422 dprintk("NFSD: xdr error (%s:%d)\n", __FILE__, __LINE__);
1423 status = nfserr_bad_xdr;
1424 goto out;
1425}
1426
Mi Jinlong345c2842011-10-20 17:51:39 +08001427static __be32 nfsd4_decode_destroy_clientid(struct nfsd4_compoundargs *argp, struct nfsd4_destroy_clientid *dc)
1428{
1429 DECODE_HEAD;
1430
1431 READ_BUF(8);
1432 COPYMEM(&dc->clientid, 8);
1433
1434 DECODE_TAIL;
1435}
1436
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001437static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1438{
1439 DECODE_HEAD;
1440
1441 READ_BUF(4);
1442 READ32(rc->rca_one_fs);
1443
1444 DECODE_TAIL;
1445}
1446
Andy Adamson2db134e2009-04-03 08:27:55 +03001447static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001448nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1449{
1450 return nfs_ok;
1451}
1452
Benny Halevy3c375c62008-07-02 11:14:01 +03001453static __be32
1454nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1455{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001456 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001457}
1458
Benny Halevy347e0ad2008-07-02 11:13:41 +03001459typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1460
1461static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001462 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1463 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1464 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1465 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1466 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1467 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1468 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1469 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1470 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1471 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1472 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1473 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1474 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1475 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1476 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1477 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1478 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1479 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1480 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1481 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001482 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001483 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1484 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1485 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1486 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1487 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1488 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1489 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1490 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1491 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1492 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1493 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1494 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1495 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1496 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1497 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1498 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Benny Halevy347e0ad2008-07-02 11:13:41 +03001499};
1500
Andy Adamson2db134e2009-04-03 08:27:55 +03001501static nfsd4_dec nfsd41_dec_ops[] = {
Randy Dunlap9064caa2009-04-28 16:48:25 -07001502 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1503 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1504 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1505 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1506 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1507 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1508 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1509 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1510 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1511 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1512 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1513 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1514 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1515 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1516 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1517 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1518 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1519 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp,
1520 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1521 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
1522 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp,
1523 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1524 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1525 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1526 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1527 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1528 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1529 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp,
1530 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1531 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1532 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1533 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1534 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1535 [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp,
1536 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1537 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1538 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001539
1540 /* new operations for NFSv4.1 */
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04001541 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_backchannel_ctl,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001542 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001543 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1544 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1545 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001546 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_free_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001547 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1548 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1549 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1550 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1551 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1552 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001553 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001554 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1555 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
Bryan Schumaker17456802011-07-13 10:50:48 -04001556 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_test_stateid,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001557 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
Mi Jinlong345c2842011-10-20 17:51:39 +08001558 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_destroy_clientid,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001559 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Andy Adamson2db134e2009-04-03 08:27:55 +03001560};
1561
Benny Halevyf2feb962008-07-02 11:14:22 +03001562struct nfsd4_minorversion_ops {
1563 nfsd4_dec *decoders;
1564 int nops;
1565};
1566
1567static struct nfsd4_minorversion_ops nfsd4_minorversion[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001568 [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) },
Andy Adamson2db134e2009-04-03 08:27:55 +03001569 [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Steve Dickson4bdc33e2013-05-02 13:18:57 -04001570 [2] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Benny Halevyf2feb962008-07-02 11:14:22 +03001571};
1572
Benny Halevy347e0ad2008-07-02 11:13:41 +03001573static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1575{
1576 DECODE_HEAD;
1577 struct nfsd4_op *op;
Benny Halevyf2feb962008-07-02 11:14:22 +03001578 struct nfsd4_minorversion_ops *ops;
J. Bruce Fields10910062011-01-24 12:11:02 -05001579 bool cachethis = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 int i;
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 READ_BUF(4);
1583 READ32(argp->taglen);
1584 READ_BUF(argp->taglen + 8);
1585 SAVEMEM(argp->tag, argp->taglen);
1586 READ32(argp->minorversion);
1587 READ32(argp->opcnt);
1588
1589 if (argp->taglen > NFSD4_MAX_TAGLEN)
1590 goto xdr_error;
1591 if (argp->opcnt > 100)
1592 goto xdr_error;
1593
Tobias Klausere8c96f82006-03-24 03:15:34 -08001594 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1596 if (!argp->ops) {
1597 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001598 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 goto xdr_error;
1600 }
1601 }
1602
Benny Halevyf2feb962008-07-02 11:14:22 +03001603 if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion))
Benny Halevy30cff1f2008-07-02 11:13:18 +03001604 argp->opcnt = 0;
1605
Benny Halevyf2feb962008-07-02 11:14:22 +03001606 ops = &nfsd4_minorversion[argp->minorversion];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 for (i = 0; i < argp->opcnt; i++) {
1608 op = &argp->ops[i];
1609 op->replay = NULL;
1610
J. Bruce Fields8a61b182012-11-16 22:28:38 -05001611 READ_BUF(4);
1612 READ32(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Ricardo Labiagade3cab72009-12-11 20:03:27 -08001614 if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP)
Benny Halevyf2feb962008-07-02 11:14:22 +03001615 op->status = ops->decoders[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001616 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 op->opnum = OP_ILLEGAL;
1618 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
1620
1621 if (op->status) {
1622 argp->opcnt = i+1;
1623 break;
1624 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001625 /*
1626 * We'll try to cache the result in the DRC if any one
1627 * op in the compound wants to be cached:
1628 */
1629 cachethis |= nfsd4_cache_this_op(op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
J. Bruce Fields10910062011-01-24 12:11:02 -05001631 /* Sessions make the DRC unnecessary: */
1632 if (argp->minorversion)
1633 cachethis = false;
1634 argp->rqstp->rq_cachetype = cachethis ? RC_REPLBUFF : RC_NOCACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 DECODE_TAIL;
1637}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639#define WRITE32(n) *p++ = htonl(n)
1640#define WRITE64(n) do { \
1641 *p++ = htonl((u32)((n) >> 32)); \
1642 *p++ = htonl((u32)(n)); \
1643} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001644#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1646 memcpy(p, ptr, nbytes); \
1647 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001648}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001649
1650static void write32(__be32 **p, u32 n)
1651{
J. Bruce Fields45eaa1c2012-04-25 18:11:04 -04001652 *(*p)++ = htonl(n);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001653}
1654
1655static void write64(__be32 **p, u64 n)
1656{
J. Bruce Fields45eaa1c2012-04-25 18:11:04 -04001657 write32(p, (n >> 32));
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001658 write32(p, (u32)n);
1659}
1660
1661static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1662{
1663 if (IS_I_VERSION(inode)) {
1664 write64(p, inode->i_version);
1665 } else {
1666 write32(p, stat->ctime.tv_sec);
1667 write32(p, stat->ctime.tv_nsec);
1668 }
1669}
1670
1671static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1672{
1673 write32(p, c->atomic);
1674 if (c->change_supported) {
1675 write64(p, c->before_change);
1676 write64(p, c->after_change);
1677 } else {
1678 write32(p, c->before_ctime_sec);
1679 write32(p, c->before_ctime_nsec);
1680 write32(p, c->after_ctime_sec);
1681 write32(p, c->after_ctime_nsec);
1682 }
1683}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685#define RESERVE_SPACE(nbytes) do { \
1686 p = resp->p; \
1687 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1688} while (0)
1689#define ADJUST_ARGS() resp->p = p
1690
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001691/* Encode as an array of strings the string given with components
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001692 * separated @sep, escaped with esc_enter and esc_exit.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001693 */
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001694static __be32 nfsd4_encode_components_esc(char sep, char *components,
1695 __be32 **pp, int *buflen,
1696 char esc_enter, char esc_exit)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001697{
Al Viro2ebbc012006-10-19 23:28:58 -07001698 __be32 *p = *pp;
1699 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001700 int strlen, count=0;
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001701 char *str, *end, *next;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001702
1703 dprintk("nfsd4_encode_components(%s)\n", components);
1704 if ((*buflen -= 4) < 0)
1705 return nfserr_resource;
1706 WRITE32(0); /* We will fill this in with @count later */
1707 end = str = components;
1708 while (*end) {
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001709 bool found_esc = false;
1710
1711 /* try to parse as esc_start, ..., esc_end, sep */
1712 if (*str == esc_enter) {
1713 for (; *end && (*end != esc_exit); end++)
1714 /* find esc_exit or end of string */;
1715 next = end + 1;
1716 if (*end && (!*next || *next == sep)) {
1717 str++;
1718 found_esc = true;
1719 }
1720 }
1721
1722 if (!found_esc)
1723 for (; *end && (*end != sep); end++)
1724 /* find sep or end of string */;
1725
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001726 strlen = end - str;
1727 if (strlen) {
1728 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1729 return nfserr_resource;
1730 WRITE32(strlen);
1731 WRITEMEM(str, strlen);
1732 count++;
1733 }
1734 else
1735 end++;
1736 str = end;
1737 }
1738 *pp = p;
1739 p = countp;
1740 WRITE32(count);
1741 return 0;
1742}
1743
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001744/* Encode as an array of strings the string given with components
1745 * separated @sep.
1746 */
1747static __be32 nfsd4_encode_components(char sep, char *components,
1748 __be32 **pp, int *buflen)
1749{
1750 return nfsd4_encode_components_esc(sep, components, pp, buflen, 0, 0);
1751}
1752
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001753/*
1754 * encode a location element of a fs_locations structure
1755 */
Al Virob37ad282006-10-19 23:28:59 -07001756static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001757 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001758{
Al Virob37ad282006-10-19 23:28:59 -07001759 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001760 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001761
Weston Andros Adamsone7a04442012-04-24 11:07:59 -04001762 status = nfsd4_encode_components_esc(':', location->hosts, &p, buflen,
1763 '[', ']');
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001764 if (status)
1765 return status;
1766 status = nfsd4_encode_components('/', location->path, &p, buflen);
1767 if (status)
1768 return status;
1769 *pp = p;
1770 return 0;
1771}
1772
1773/*
Trond Myklebusted748aa2011-09-12 19:37:06 -04001774 * Encode a path in RFC3530 'pathname4' format
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001775 */
Trond Myklebusted748aa2011-09-12 19:37:06 -04001776static __be32 nfsd4_encode_path(const struct path *root,
1777 const struct path *path, __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001778{
Trond Myklebusted748aa2011-09-12 19:37:06 -04001779 struct path cur = {
1780 .mnt = path->mnt,
1781 .dentry = path->dentry,
1782 };
1783 __be32 *p = *pp;
1784 struct dentry **components = NULL;
1785 unsigned int ncomponents = 0;
1786 __be32 err = nfserr_jukebox;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001787
Trond Myklebusted748aa2011-09-12 19:37:06 -04001788 dprintk("nfsd4_encode_components(");
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001789
Trond Myklebusted748aa2011-09-12 19:37:06 -04001790 path_get(&cur);
1791 /* First walk the path up to the nfsd root, and store the
1792 * dentries/path components in an array.
1793 */
1794 for (;;) {
1795 if (cur.dentry == root->dentry && cur.mnt == root->mnt)
1796 break;
1797 if (cur.dentry == cur.mnt->mnt_root) {
1798 if (follow_up(&cur))
1799 continue;
1800 goto out_free;
1801 }
1802 if ((ncomponents & 15) == 0) {
1803 struct dentry **new;
1804 new = krealloc(components,
1805 sizeof(*new) * (ncomponents + 16),
1806 GFP_KERNEL);
1807 if (!new)
1808 goto out_free;
1809 components = new;
1810 }
1811 components[ncomponents++] = cur.dentry;
1812 cur.dentry = dget_parent(cur.dentry);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001813 }
Trond Myklebusted748aa2011-09-12 19:37:06 -04001814
1815 *buflen -= 4;
1816 if (*buflen < 0)
1817 goto out_free;
1818 WRITE32(ncomponents);
1819
1820 while (ncomponents) {
1821 struct dentry *dentry = components[ncomponents - 1];
1822 unsigned int len = dentry->d_name.len;
1823
1824 *buflen -= 4 + (XDR_QUADLEN(len) << 2);
1825 if (*buflen < 0)
1826 goto out_free;
1827 WRITE32(len);
1828 WRITEMEM(dentry->d_name.name, len);
1829 dprintk("/%s", dentry->d_name.name);
1830 dput(dentry);
1831 ncomponents--;
1832 }
1833
1834 *pp = p;
1835 err = 0;
1836out_free:
1837 dprintk(")\n");
1838 while (ncomponents)
1839 dput(components[--ncomponents]);
1840 kfree(components);
1841 path_put(&cur);
1842 return err;
1843}
1844
1845static __be32 nfsd4_encode_fsloc_fsroot(struct svc_rqst *rqstp,
1846 const struct path *path, __be32 **pp, int *buflen)
1847{
1848 struct svc_export *exp_ps;
1849 __be32 res;
1850
1851 exp_ps = rqst_find_fsidzero_export(rqstp);
1852 if (IS_ERR(exp_ps))
1853 return nfserrno(PTR_ERR(exp_ps));
1854 res = nfsd4_encode_path(&exp_ps->ex_path, path, pp, buflen);
1855 exp_put(exp_ps);
1856 return res;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001857}
1858
1859/*
1860 * encode a fs_locations structure
1861 */
Al Virob37ad282006-10-19 23:28:59 -07001862static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001863 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001864 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001865{
Al Virob37ad282006-10-19 23:28:59 -07001866 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001867 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001868 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001869 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001870
Trond Myklebusted748aa2011-09-12 19:37:06 -04001871 status = nfsd4_encode_fsloc_fsroot(rqstp, &exp->ex_path, &p, buflen);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001872 if (status)
1873 return status;
1874 if ((*buflen -= 4) < 0)
1875 return nfserr_resource;
1876 WRITE32(fslocs->locations_count);
1877 for (i=0; i<fslocs->locations_count; i++) {
1878 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1879 &p, buflen);
1880 if (status)
1881 return status;
1882 }
1883 *pp = p;
1884 return 0;
1885}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04001887static u32 nfs4_file_type(umode_t mode)
1888{
1889 switch (mode & S_IFMT) {
1890 case S_IFIFO: return NF4FIFO;
1891 case S_IFCHR: return NF4CHR;
1892 case S_IFDIR: return NF4DIR;
1893 case S_IFBLK: return NF4BLK;
1894 case S_IFLNK: return NF4LNK;
1895 case S_IFREG: return NF4REG;
1896 case S_IFSOCK: return NF4SOCK;
1897 default: return NF4BAD;
1898 };
1899}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Al Virob37ad282006-10-19 23:28:59 -07001901static __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001902nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, kuid_t uid, kgid_t gid,
Al Viro2ebbc012006-10-19 23:28:58 -07001903 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904{
1905 int status;
1906
1907 if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1908 return nfserr_resource;
1909 if (whotype != NFS4_ACL_WHO_NAMED)
1910 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001911 else if (gid_valid(gid))
1912 status = nfsd_map_gid_to_name(rqstp, gid, (u8 *)(*p + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 else
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001914 status = nfsd_map_uid_to_name(rqstp, uid, (u8 *)(*p + 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (status < 0)
1916 return nfserrno(status);
1917 *p = xdr_encode_opaque(*p, NULL, status);
1918 *buflen -= (XDR_QUADLEN(status) << 2) + 4;
1919 BUG_ON(*buflen < 0);
1920 return 0;
1921}
1922
Al Virob37ad282006-10-19 23:28:59 -07001923static inline __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001924nfsd4_encode_user(struct svc_rqst *rqstp, kuid_t user, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001926 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, user, INVALID_GID,
1927 p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
Al Virob37ad282006-10-19 23:28:59 -07001930static inline __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001931nfsd4_encode_group(struct svc_rqst *rqstp, kgid_t group, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001933 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, INVALID_UID, group,
1934 p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
Al Virob37ad282006-10-19 23:28:59 -07001937static inline __be32
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001938nfsd4_encode_aclname(struct svc_rqst *rqstp, struct nfs4_ace *ace,
Al Viro2ebbc012006-10-19 23:28:58 -07001939 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08001941 kuid_t uid = INVALID_UID;
1942 kgid_t gid = INVALID_GID;
1943
1944 if (ace->whotype == NFS4_ACL_WHO_NAMED) {
1945 if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
1946 gid = ace->who_gid;
1947 else
1948 uid = ace->who_uid;
1949 }
1950 return nfsd4_encode_name(rqstp, ace->whotype, uid, gid, p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
1952
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001953#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1954 FATTR4_WORD0_RDATTR_ERROR)
1955#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1956
Al Virob37ad282006-10-19 23:28:59 -07001957static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001958{
1959 /* As per referral draft: */
1960 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
1961 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
1962 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
1963 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
1964 *rdattr_err = NFSERR_MOVED;
1965 else
1966 return nfserr_moved;
1967 }
1968 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
1969 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
1970 return 0;
1971}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04001973
1974static int get_parent_attributes(struct svc_export *exp, struct kstat *stat)
1975{
1976 struct path path = exp->ex_path;
1977 int err;
1978
1979 path_get(&path);
1980 while (follow_up(&path)) {
1981 if (path.dentry != path.mnt->mnt_root)
1982 break;
1983 }
Al Viro3dadecc2013-01-24 02:18:08 -05001984 err = vfs_getattr(&path, stat);
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04001985 path_put(&path);
1986 return err;
1987}
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989/*
1990 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1991 * ourselves.
1992 *
J. Bruce Fields84822d02012-12-14 17:57:50 -05001993 * countp is the buffer size in _words_
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 */
Al Virob37ad282006-10-19 23:28:59 -07001995__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
J. Bruce Fields84822d02012-12-14 17:57:50 -05001997 struct dentry *dentry, __be32 **buffer, int count, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001998 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
2000 u32 bmval0 = bmval[0];
2001 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03002002 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 struct kstat stat;
2004 struct svc_fh tempfh;
2005 struct kstatfs statfs;
J. Bruce Fields84822d02012-12-14 17:57:50 -05002006 int buflen = count << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07002007 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 u32 dummy;
2009 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002010 u32 rdattr_err = 0;
J. Bruce Fields84822d02012-12-14 17:57:50 -05002011 __be32 *p = *buffer;
Al Virob37ad282006-10-19 23:28:59 -07002012 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07002013 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 int aclsupport = 0;
2015 struct nfs4_acl *acl = NULL;
Andy Adamson7e705702009-04-03 08:29:11 +03002016 struct nfsd4_compoundres *resp = rqstp->rq_resp;
2017 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002018 struct path path = {
2019 .mnt = exp->ex_path.mnt,
2020 .dentry = dentry,
2021 };
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03002022 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03002025 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
2026 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
2027 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002029 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03002030 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002031 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
2032 if (status)
2033 goto out;
2034 }
2035
Al Viro3dadecc2013-01-24 02:18:08 -05002036 err = vfs_getattr(&path, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07002037 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002039 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
2040 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
2042 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002043 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07002044 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 goto out_nfserr;
2046 }
2047 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
2048 fh_init(&tempfh, NFS4_FHSIZE);
2049 status = fh_compose(&tempfh, exp, dentry, NULL);
2050 if (status)
2051 goto out;
2052 fhp = &tempfh;
2053 }
2054 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
2055 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07002056 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
2057 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07002059 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07002061 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 status = nfserr_attrnotsupp;
2063 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07002064 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 goto out_nfserr;
2066 }
2067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002069 if (bmval2) {
2070 if ((buflen -= 16) < 0)
2071 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002072 WRITE32(3);
2073 WRITE32(bmval0);
2074 WRITE32(bmval1);
2075 WRITE32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002076 } else if (bmval1) {
2077 if ((buflen -= 12) < 0)
2078 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002079 WRITE32(2);
2080 WRITE32(bmval0);
2081 WRITE32(bmval1);
2082 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002083 if ((buflen -= 8) < 0)
2084 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002085 WRITE32(1);
2086 WRITE32(bmval0);
2087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 attrlenp = p++; /* to be backfilled later */
2089
2090 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03002091 u32 word0 = nfsd_suppattrs0(minorversion);
2092 u32 word1 = nfsd_suppattrs1(minorversion);
2093 u32 word2 = nfsd_suppattrs2(minorversion);
2094
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002095 if (!aclsupport)
2096 word0 &= ~FATTR4_WORD0_ACL;
Andy Adamson7e705702009-04-03 08:29:11 +03002097 if (!word2) {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002098 if ((buflen -= 12) < 0)
2099 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002100 WRITE32(2);
2101 WRITE32(word0);
2102 WRITE32(word1);
2103 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02002104 if ((buflen -= 16) < 0)
2105 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03002106 WRITE32(3);
2107 WRITE32(word0);
2108 WRITE32(word1);
2109 WRITE32(word2);
2110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
2112 if (bmval0 & FATTR4_WORD0_TYPE) {
2113 if ((buflen -= 4) < 0)
2114 goto out_resource;
J. Bruce Fields3d2544b2011-08-15 11:49:30 -04002115 dummy = nfs4_file_type(stat.mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 if (dummy == NF4BAD)
2117 goto out_serverfault;
2118 WRITE32(dummy);
2119 }
2120 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
2121 if ((buflen -= 4) < 0)
2122 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07002123 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07002124 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07002125 else
NeilBrowne34ac862005-07-07 17:59:30 -07002126 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 }
2128 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if ((buflen -= 8) < 0)
2130 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002131 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 }
2133 if (bmval0 & FATTR4_WORD0_SIZE) {
2134 if ((buflen -= 8) < 0)
2135 goto out_resource;
2136 WRITE64(stat.size);
2137 }
2138 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
2139 if ((buflen -= 4) < 0)
2140 goto out_resource;
2141 WRITE32(1);
2142 }
2143 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
2144 if ((buflen -= 4) < 0)
2145 goto out_resource;
2146 WRITE32(1);
2147 }
2148 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
2149 if ((buflen -= 4) < 0)
2150 goto out_resource;
2151 WRITE32(0);
2152 }
2153 if (bmval0 & FATTR4_WORD0_FSID) {
2154 if ((buflen -= 16) < 0)
2155 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002156 if (exp->ex_fslocs.migrated) {
2157 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
2158 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002159 } else switch(fsid_source(fhp)) {
2160 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 WRITE64((u64)exp->ex_fsid);
2162 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08002163 break;
2164 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 WRITE32(0);
2166 WRITE32(MAJOR(stat.dev));
2167 WRITE32(0);
2168 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08002169 break;
2170 case FSIDSOURCE_UUID:
2171 WRITEMEM(exp->ex_uuid, 16);
2172 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
2174 }
2175 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
2176 if ((buflen -= 4) < 0)
2177 goto out_resource;
2178 WRITE32(0);
2179 }
2180 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
2181 if ((buflen -= 4) < 0)
2182 goto out_resource;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03002183 WRITE32(nn->nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 }
2185 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
2186 if ((buflen -= 4) < 0)
2187 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07002188 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 }
2190 if (bmval0 & FATTR4_WORD0_ACL) {
2191 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
2193 if (acl == NULL) {
2194 if ((buflen -= 4) < 0)
2195 goto out_resource;
2196
2197 WRITE32(0);
2198 goto out_acl;
2199 }
2200 if ((buflen -= 4) < 0)
2201 goto out_resource;
2202 WRITE32(acl->naces);
2203
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002204 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if ((buflen -= 4*3) < 0)
2206 goto out_resource;
2207 WRITE32(ace->type);
2208 WRITE32(ace->flag);
2209 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
Eric W. Biedermanab8e4ae2013-02-02 05:18:08 -08002210 status = nfsd4_encode_aclname(rqstp, ace, &p, &buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (status == nfserr_resource)
2212 goto out_resource;
2213 if (status)
2214 goto out;
2215 }
2216 }
2217out_acl:
2218 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
2219 if ((buflen -= 4) < 0)
2220 goto out_resource;
2221 WRITE32(aclsupport ?
2222 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
2223 }
2224 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
2225 if ((buflen -= 4) < 0)
2226 goto out_resource;
2227 WRITE32(1);
2228 }
2229 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
2230 if ((buflen -= 4) < 0)
2231 goto out_resource;
J. Bruce Fields2930d382012-06-05 16:52:06 -04002232 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
2234 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
2235 if ((buflen -= 4) < 0)
2236 goto out_resource;
2237 WRITE32(1);
2238 }
2239 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2240 if ((buflen -= 4) < 0)
2241 goto out_resource;
2242 WRITE32(1);
2243 }
2244 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2245 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2246 if (buflen < 0)
2247 goto out_resource;
2248 WRITE32(fhp->fh_handle.fh_size);
2249 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2250 }
2251 if (bmval0 & FATTR4_WORD0_FILEID) {
2252 if ((buflen -= 8) < 0)
2253 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002254 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
2256 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2257 if ((buflen -= 8) < 0)
2258 goto out_resource;
2259 WRITE64((u64) statfs.f_ffree);
2260 }
2261 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2262 if ((buflen -= 8) < 0)
2263 goto out_resource;
2264 WRITE64((u64) statfs.f_ffree);
2265 }
2266 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2267 if ((buflen -= 8) < 0)
2268 goto out_resource;
2269 WRITE64((u64) statfs.f_files);
2270 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002271 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2272 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
2273 if (status == nfserr_resource)
2274 goto out_resource;
2275 if (status)
2276 goto out;
2277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2279 if ((buflen -= 4) < 0)
2280 goto out_resource;
2281 WRITE32(1);
2282 }
2283 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2284 if ((buflen -= 8) < 0)
2285 goto out_resource;
2286 WRITE64(~(u64)0);
2287 }
2288 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2289 if ((buflen -= 4) < 0)
2290 goto out_resource;
2291 WRITE32(255);
2292 }
2293 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2294 if ((buflen -= 4) < 0)
2295 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002296 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
2298 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2299 if ((buflen -= 8) < 0)
2300 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002301 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 }
2303 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2304 if ((buflen -= 8) < 0)
2305 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002306 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 }
2308 if (bmval1 & FATTR4_WORD1_MODE) {
2309 if ((buflen -= 4) < 0)
2310 goto out_resource;
2311 WRITE32(stat.mode & S_IALLUGO);
2312 }
2313 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2314 if ((buflen -= 4) < 0)
2315 goto out_resource;
2316 WRITE32(1);
2317 }
2318 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2319 if ((buflen -= 4) < 0)
2320 goto out_resource;
2321 WRITE32(stat.nlink);
2322 }
2323 if (bmval1 & FATTR4_WORD1_OWNER) {
2324 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
2325 if (status == nfserr_resource)
2326 goto out_resource;
2327 if (status)
2328 goto out;
2329 }
2330 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2331 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
2332 if (status == nfserr_resource)
2333 goto out_resource;
2334 if (status)
2335 goto out;
2336 }
2337 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2338 if ((buflen -= 8) < 0)
2339 goto out_resource;
2340 WRITE32((u32) MAJOR(stat.rdev));
2341 WRITE32((u32) MINOR(stat.rdev));
2342 }
2343 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2344 if ((buflen -= 8) < 0)
2345 goto out_resource;
2346 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2347 WRITE64(dummy64);
2348 }
2349 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2350 if ((buflen -= 8) < 0)
2351 goto out_resource;
2352 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2353 WRITE64(dummy64);
2354 }
2355 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2356 if ((buflen -= 8) < 0)
2357 goto out_resource;
2358 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2359 WRITE64(dummy64);
2360 }
2361 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2362 if ((buflen -= 8) < 0)
2363 goto out_resource;
2364 dummy64 = (u64)stat.blocks << 9;
2365 WRITE64(dummy64);
2366 }
2367 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2368 if ((buflen -= 12) < 0)
2369 goto out_resource;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -04002370 WRITE64((s64)stat.atime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 WRITE32(stat.atime.tv_nsec);
2372 }
2373 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2374 if ((buflen -= 12) < 0)
2375 goto out_resource;
2376 WRITE32(0);
2377 WRITE32(1);
2378 WRITE32(0);
2379 }
2380 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2381 if ((buflen -= 12) < 0)
2382 goto out_resource;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -04002383 WRITE64((s64)stat.ctime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 WRITE32(stat.ctime.tv_nsec);
2385 }
2386 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2387 if ((buflen -= 12) < 0)
2388 goto out_resource;
Bryan Schumakerbf8d9092013-04-19 16:09:38 -04002389 WRITE64((s64)stat.mtime.tv_sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 WRITE32(stat.mtime.tv_nsec);
2391 }
2392 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 if ((buflen -= 8) < 0)
2394 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002395 /*
2396 * Get parent's attributes if not ignoring crossmount
2397 * and this is the root of a cross-mounted filesystem.
2398 */
2399 if (ignore_crossmnt == 0 &&
J. Bruce Fieldsae7095a2012-10-01 17:50:56 -04002400 dentry == exp->ex_path.mnt->mnt_root)
2401 get_parent_attributes(exp, &stat);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002402 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002404 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
2405 WRITE32(3);
2406 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2407 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2408 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2409 }
Andy Adamson7e705702009-04-03 08:29:11 +03002410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
J. Bruce Fields84822d02012-12-14 17:57:50 -05002412 *buffer = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 status = nfs_ok;
2414
2415out:
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002416 kfree(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 if (fhp == &tempfh)
2418 fh_put(&tempfh);
2419 return status;
2420out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002421 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 goto out;
2423out_resource:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 status = nfserr_resource;
2425 goto out;
2426out_serverfault:
2427 status = nfserr_serverfault;
2428 goto out;
2429}
2430
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002431static inline int attributes_need_mount(u32 *bmval)
2432{
2433 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2434 return 1;
2435 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2436 return 1;
2437 return 0;
2438}
2439
Al Virob37ad282006-10-19 23:28:59 -07002440static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
J. Bruce Fields84822d02012-12-14 17:57:50 -05002442 const char *name, int namlen, __be32 **p, int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
2444 struct svc_export *exp = cd->rd_fhp->fh_export;
2445 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002446 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002447 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
2449 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2450 if (IS_ERR(dentry))
2451 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002452 if (!dentry->d_inode) {
2453 /*
2454 * nfsd_buffered_readdir drops the i_mutex between
2455 * readdir and calling this callback, leaving a window
2456 * where this directory entry could have gone away.
2457 */
2458 dput(dentry);
2459 return nfserr_noent;
2460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
2462 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002463 /*
2464 * In the case of a mountpoint, the client may be asking for
2465 * attributes that are only properties of the underlying filesystem
2466 * as opposed to the cross-mounted file system. In such a case,
2467 * we will not follow the cross mount and will fill the attribtutes
2468 * directly from the mountpoint dentry.
2469 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002470 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002471 int err;
2472
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002473 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2474 && !attributes_need_mount(cd->rd_bmval)) {
2475 ignore_crossmnt = 1;
2476 goto out_encode;
2477 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002478 /*
2479 * Why the heck aren't we just using nfsd_lookup??
2480 * Different "."/".." handling? Something else?
2481 * At least, add a comment here to explain....
2482 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002483 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2484 if (err) {
2485 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 goto out_put;
2487 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002488 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2489 if (nfserr)
2490 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
2492 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002493out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002495 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496out_put:
2497 dput(dentry);
2498 exp_put(exp);
2499 return nfserr;
2500}
2501
Al Viro2ebbc012006-10-19 23:28:58 -07002502static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002503nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
Al Viro2ebbc012006-10-19 23:28:58 -07002505 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 if (buflen < 6)
2508 return NULL;
2509 *p++ = htonl(2);
2510 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2511 *p++ = htonl(0); /* bmval1 */
2512
2513 attrlenp = p++;
2514 *p++ = nfserr; /* no htonl */
2515 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2516 return p;
2517}
2518
2519static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002520nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2521 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002523 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2525 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002526 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002527 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002528 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530 /* In nfsv4, "." and ".." never make it onto the wire.. */
2531 if (name && isdotent(name, namlen)) {
2532 cd->common.err = nfs_ok;
2533 return 0;
2534 }
2535
2536 if (cd->offset)
2537 xdr_encode_hyper(cd->offset, (u64) offset);
2538
2539 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2540 if (buflen < 0)
2541 goto fail;
2542
2543 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002544 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2546 p = xdr_encode_array(p, name, namlen); /* name length & name */
2547
J. Bruce Fields84822d02012-12-14 17:57:50 -05002548 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, &p, buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 switch (nfserr) {
2550 case nfs_ok:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 break;
2552 case nfserr_resource:
2553 nfserr = nfserr_toosmall;
2554 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002555 case nfserr_noent:
2556 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 default:
2558 /*
2559 * If the client requested the RDATTR_ERROR attribute,
2560 * we stuff the error code into this attribute
2561 * and continue. If this attribute was not requested,
2562 * then in accordance with the spec, we fail the
2563 * entire READDIR operation(!)
2564 */
2565 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2566 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002568 if (p == NULL) {
2569 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 }
2573 cd->buflen -= (p - cd->buffer);
2574 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002575 cd->offset = cookiep;
2576skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 cd->common.err = nfs_ok;
2578 return 0;
2579fail:
2580 cd->common.err = nfserr;
2581 return -EINVAL;
2582}
2583
Benny Halevye2f282b2008-08-12 20:45:07 +03002584static void
2585nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2586{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002587 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002588
2589 RESERVE_SPACE(sizeof(stateid_t));
2590 WRITE32(sid->si_generation);
2591 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2592 ADJUST_ARGS();
2593}
2594
Benny Halevy695e12f2008-07-04 14:38:33 +03002595static __be32
Al Virob37ad282006-10-19 23:28:59 -07002596nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002598 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 if (!nfserr) {
2601 RESERVE_SPACE(8);
2602 WRITE32(access->ac_supported);
2603 WRITE32(access->ac_resp_access);
2604 ADJUST_ARGS();
2605 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002606 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002609static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
2610{
2611 __be32 *p;
2612
2613 if (!nfserr) {
2614 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 8);
2615 WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
2616 WRITE32(bcts->dir);
J. Bruce Fields6e67b5d2012-09-13 09:49:43 -04002617 /* Sorry, we do not yet support RDMA over 4.1: */
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002618 WRITE32(0);
2619 ADJUST_ARGS();
2620 }
2621 return nfserr;
2622}
2623
Benny Halevy695e12f2008-07-04 14:38:33 +03002624static __be32
Al Virob37ad282006-10-19 23:28:59 -07002625nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626{
Benny Halevye2f282b2008-08-12 20:45:07 +03002627 if (!nfserr)
2628 nfsd4_encode_stateid(resp, &close->cl_stateid);
2629
Benny Halevy695e12f2008-07-04 14:38:33 +03002630 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631}
2632
2633
Benny Halevy695e12f2008-07-04 14:38:33 +03002634static __be32
Al Virob37ad282006-10-19 23:28:59 -07002635nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002637 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
2639 if (!nfserr) {
Chuck Leverab4684d2012-03-02 17:13:50 -05002640 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
2641 WRITEMEM(commit->co_verf.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 ADJUST_ARGS();
2643 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002644 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645}
2646
Benny Halevy695e12f2008-07-04 14:38:33 +03002647static __be32
Al Virob37ad282006-10-19 23:28:59 -07002648nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002650 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
2652 if (!nfserr) {
2653 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002654 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 WRITE32(2);
2656 WRITE32(create->cr_bmval[0]);
2657 WRITE32(create->cr_bmval[1]);
2658 ADJUST_ARGS();
2659 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002660 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661}
2662
Al Virob37ad282006-10-19 23:28:59 -07002663static __be32
2664nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665{
2666 struct svc_fh *fhp = getattr->ga_fhp;
2667 int buflen;
2668
2669 if (nfserr)
2670 return nfserr;
2671
2672 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2673 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
J. Bruce Fields84822d02012-12-14 17:57:50 -05002674 &resp->p, buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002675 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 return nfserr;
2677}
2678
Benny Halevy695e12f2008-07-04 14:38:33 +03002679static __be32
2680nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681{
Benny Halevy695e12f2008-07-04 14:38:33 +03002682 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002684 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686 if (!nfserr) {
2687 len = fhp->fh_handle.fh_size;
2688 RESERVE_SPACE(len + 4);
2689 WRITE32(len);
2690 WRITEMEM(&fhp->fh_handle.fh_base, len);
2691 ADJUST_ARGS();
2692 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002693 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694}
2695
2696/*
2697* Including all fields other than the name, a LOCK4denied structure requires
2698* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2699*/
2700static void
2701nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2702{
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002703 struct xdr_netobj *conf = &ld->ld_owner;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002704 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002706 RESERVE_SPACE(32 + XDR_LEN(conf->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 WRITE64(ld->ld_start);
2708 WRITE64(ld->ld_length);
2709 WRITE32(ld->ld_type);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002710 if (conf->len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 WRITEMEM(&ld->ld_clientid, 8);
J. Bruce Fields7c13f342011-08-30 22:15:47 -04002712 WRITE32(conf->len);
2713 WRITEMEM(conf->data, conf->len);
2714 kfree(conf->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2716 WRITE64((u64)0); /* clientid */
2717 WRITE32(0); /* length of owner name */
2718 }
2719 ADJUST_ARGS();
2720}
2721
Benny Halevy695e12f2008-07-04 14:38:33 +03002722static __be32
Al Virob37ad282006-10-19 23:28:59 -07002723nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724{
Benny Halevye2f282b2008-08-12 20:45:07 +03002725 if (!nfserr)
2726 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2727 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2729
Benny Halevy695e12f2008-07-04 14:38:33 +03002730 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731}
2732
Benny Halevy695e12f2008-07-04 14:38:33 +03002733static __be32
Al Virob37ad282006-10-19 23:28:59 -07002734nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735{
2736 if (nfserr == nfserr_denied)
2737 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002738 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739}
2740
Benny Halevy695e12f2008-07-04 14:38:33 +03002741static __be32
Al Virob37ad282006-10-19 23:28:59 -07002742nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
Benny Halevye2f282b2008-08-12 20:45:07 +03002744 if (!nfserr)
2745 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2746
Benny Halevy695e12f2008-07-04 14:38:33 +03002747 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748}
2749
2750
Benny Halevy695e12f2008-07-04 14:38:33 +03002751static __be32
Al Virob37ad282006-10-19 23:28:59 -07002752nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002754 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 if (!nfserr) {
2757 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002758 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 ADJUST_ARGS();
2760 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002761 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762}
2763
2764
Benny Halevy695e12f2008-07-04 14:38:33 +03002765static __be32
Al Virob37ad282006-10-19 23:28:59 -07002766nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002768 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
2770 if (nfserr)
2771 goto out;
2772
Benny Halevye2f282b2008-08-12 20:45:07 +03002773 nfsd4_encode_stateid(resp, &open->op_stateid);
2774 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002775 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 WRITE32(open->op_rflags);
2777 WRITE32(2);
2778 WRITE32(open->op_bmval[0]);
2779 WRITE32(open->op_bmval[1]);
2780 WRITE32(open->op_delegate_type);
2781 ADJUST_ARGS();
2782
2783 switch (open->op_delegate_type) {
2784 case NFS4_OPEN_DELEGATE_NONE:
2785 break;
2786 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002787 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2788 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002789 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
2791 /*
2792 * TODO: ACE's in delegations
2793 */
2794 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2795 WRITE32(0);
2796 WRITE32(0);
2797 WRITE32(0); /* XXX: is NULL principal ok? */
2798 ADJUST_ARGS();
2799 break;
2800 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002801 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2802 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 WRITE32(0);
2804
2805 /*
2806 * TODO: space_limit's in delegations
2807 */
2808 WRITE32(NFS4_LIMIT_SIZE);
2809 WRITE32(~(u32)0);
2810 WRITE32(~(u32)0);
2811
2812 /*
2813 * TODO: ACE's in delegations
2814 */
2815 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2816 WRITE32(0);
2817 WRITE32(0);
2818 WRITE32(0); /* XXX: is NULL principal ok? */
2819 ADJUST_ARGS();
2820 break;
Benny Halevyd24433c2012-02-16 20:57:17 +02002821 case NFS4_OPEN_DELEGATE_NONE_EXT: /* 4.1 */
2822 switch (open->op_why_no_deleg) {
2823 case WND4_CONTENTION:
2824 case WND4_RESOURCE:
2825 RESERVE_SPACE(8);
2826 WRITE32(open->op_why_no_deleg);
2827 WRITE32(0); /* deleg signaling not supported yet */
2828 break;
2829 default:
2830 RESERVE_SPACE(4);
2831 WRITE32(open->op_why_no_deleg);
2832 }
2833 ADJUST_ARGS();
2834 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 default:
2836 BUG();
2837 }
2838 /* XXX save filehandle here */
2839out:
Benny Halevy695e12f2008-07-04 14:38:33 +03002840 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841}
2842
Benny Halevy695e12f2008-07-04 14:38:33 +03002843static __be32
Al Virob37ad282006-10-19 23:28:59 -07002844nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845{
Benny Halevye2f282b2008-08-12 20:45:07 +03002846 if (!nfserr)
2847 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Benny Halevy695e12f2008-07-04 14:38:33 +03002849 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850}
2851
Benny Halevy695e12f2008-07-04 14:38:33 +03002852static __be32
Al Virob37ad282006-10-19 23:28:59 -07002853nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854{
Benny Halevye2f282b2008-08-12 20:45:07 +03002855 if (!nfserr)
2856 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Benny Halevy695e12f2008-07-04 14:38:33 +03002858 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859}
2860
Al Virob37ad282006-10-19 23:28:59 -07002861static __be32
2862nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002863 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864{
2865 u32 eof;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002866 int v;
2867 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 unsigned long maxcount;
2869 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002870 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
2872 if (nfserr)
2873 return nfserr;
2874 if (resp->xbuf->page_len)
2875 return nfserr_resource;
2876
2877 RESERVE_SPACE(8); /* eof flag and byte count */
2878
Greg Banks7adae482006-10-04 02:15:47 -07002879 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 if (maxcount > read->rd_length)
2881 maxcount = read->rd_length;
2882
2883 len = maxcount;
2884 v = 0;
2885 while (len > 0) {
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002886 page = *(resp->rqstp->rq_next_page);
2887 if (!page) { /* ran out of pages */
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05002888 maxcount -= len;
2889 break;
2890 }
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002891 resp->rqstp->rq_vec[v].iov_base = page_address(page);
NeilBrown3cc03b12006-10-04 02:15:47 -07002892 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002893 len < PAGE_SIZE ? len : PAGE_SIZE;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002894 resp->rqstp->rq_next_page++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 v++;
2896 len -= PAGE_SIZE;
2897 }
2898 read->rd_vlen = v;
2899
J. Bruce Fields039a87c2010-07-30 11:33:32 -04002900 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002901 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 &maxcount);
2903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 if (nfserr)
2905 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002906 eof = (read->rd_offset + maxcount >=
2907 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
2909 WRITE32(eof);
2910 WRITE32(maxcount);
2911 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002912 resp->xbuf->head[0].iov_len = (char*)p
2913 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 resp->xbuf->page_len = maxcount;
2915
NeilBrown6ed6dec2006-04-10 22:55:32 -07002916 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002917 resp->xbuf->tail[0].iov_base = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002920 RESERVE_SPACE(4);
2921 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 resp->xbuf->tail[0].iov_base += maxcount&3;
2923 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002924 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 }
2926 return 0;
2927}
2928
Al Virob37ad282006-10-19 23:28:59 -07002929static __be32
2930nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931{
2932 int maxcount;
2933 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002934 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
2936 if (nfserr)
2937 return nfserr;
2938 if (resp->xbuf->page_len)
2939 return nfserr_resource;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002940 if (!*resp->rqstp->rq_next_page)
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05002941 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002943 page = page_address(*(resp->rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
2945 maxcount = PAGE_SIZE;
2946 RESERVE_SPACE(4);
2947
2948 /*
2949 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2950 * if they would overflow the buffer. Is this kosher in NFSv4? If
2951 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2952 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2953 */
2954 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
2955 if (nfserr == nfserr_isdir)
2956 return nfserr_inval;
2957 if (nfserr)
2958 return nfserr;
2959
2960 WRITE32(maxcount);
2961 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002962 resp->xbuf->head[0].iov_len = (char*)p
2963 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 resp->xbuf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07002965
2966 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002967 resp->xbuf->tail[0].iov_base = p;
2968 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002970 RESERVE_SPACE(4);
2971 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 resp->xbuf->tail[0].iov_base += maxcount&3;
2973 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002974 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 }
2976 return 0;
2977}
2978
Al Virob37ad282006-10-19 23:28:59 -07002979static __be32
2980nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
2982 int maxcount;
2983 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07002984 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002985 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
2987 if (nfserr)
2988 return nfserr;
2989 if (resp->xbuf->page_len)
2990 return nfserr_resource;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05002991 if (!*resp->rqstp->rq_next_page)
J. Bruce Fieldsd5f50b02012-12-04 18:25:10 -05002992 return nfserr_resource;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Chuck Leverab4684d2012-03-02 17:13:50 -05002994 RESERVE_SPACE(NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 savep = p;
2996
2997 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2998 WRITE32(0);
2999 WRITE32(0);
3000 ADJUST_ARGS();
3001 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07003002 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003
3004 maxcount = PAGE_SIZE;
3005 if (maxcount > readdir->rd_maxcount)
3006 maxcount = readdir->rd_maxcount;
3007
3008 /*
3009 * Convert from bytes to words, account for the two words already
3010 * written, make sure to leave two words at the end for the next
3011 * pointer and eof field.
3012 */
3013 maxcount = (maxcount >> 2) - 4;
3014 if (maxcount < 0) {
3015 nfserr = nfserr_toosmall;
3016 goto err_no_verf;
3017 }
3018
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003019 page = page_address(*(resp->rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 readdir->common.err = 0;
3021 readdir->buflen = maxcount;
3022 readdir->buffer = page;
3023 readdir->offset = NULL;
3024
3025 offset = readdir->rd_cookie;
3026 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
3027 &offset,
3028 &readdir->common, nfsd4_encode_dirent);
3029 if (nfserr == nfs_ok &&
3030 readdir->common.err == nfserr_toosmall &&
3031 readdir->buffer == page)
3032 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 if (nfserr)
3034 goto err_no_verf;
3035
3036 if (readdir->offset)
3037 xdr_encode_hyper(readdir->offset, offset);
3038
3039 p = readdir->buffer;
3040 *p++ = 0; /* no more entries */
3041 *p++ = htonl(readdir->common.err == nfserr_eof);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -05003042 resp->xbuf->page_len = ((char*)p) -
3043 (char*)page_address(*(resp->rqstp->rq_next_page-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
NeilBrownbb6e8a92006-04-10 22:55:33 -07003045 /* Use rest of head for padding and remaining ops: */
NeilBrownbb6e8a92006-04-10 22:55:33 -07003046 resp->xbuf->tail[0].iov_base = tailbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 resp->xbuf->tail[0].iov_len = 0;
3048 resp->p = resp->xbuf->tail[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07003049 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051 return 0;
3052err_no_verf:
3053 p = savep;
3054 ADJUST_ARGS();
3055 return nfserr;
3056}
3057
Benny Halevy695e12f2008-07-04 14:38:33 +03003058static __be32
Al Virob37ad282006-10-19 23:28:59 -07003059nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003061 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
3063 if (!nfserr) {
3064 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04003065 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 ADJUST_ARGS();
3067 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003068 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069}
3070
Benny Halevy695e12f2008-07-04 14:38:33 +03003071static __be32
Al Virob37ad282006-10-19 23:28:59 -07003072nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003074 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075
3076 if (!nfserr) {
3077 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04003078 write_cinfo(&p, &rename->rn_sinfo);
3079 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 ADJUST_ARGS();
3081 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003082 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
Benny Halevy695e12f2008-07-04 14:38:33 +03003085static __be32
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003086nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
Chuck Levera77c8062013-03-16 15:55:10 -04003087 __be32 nfserr, struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07003088{
Chuck Lever676e4eb2013-04-30 18:48:54 -04003089 u32 i, nflavs, supported;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003090 struct exp_flavor_info *flavs;
3091 struct exp_flavor_info def_flavs[2];
Chuck Lever676e4eb2013-04-30 18:48:54 -04003092 __be32 *p, *flavorsp;
3093 static bool report = true;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003094
3095 if (nfserr)
3096 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07003097 if (exp->ex_nflavors) {
3098 flavs = exp->ex_flavors;
3099 nflavs = exp->ex_nflavors;
3100 } else { /* Handling of some defaults in absence of real secinfo: */
3101 flavs = def_flavs;
3102 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
3103 nflavs = 2;
3104 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
3105 flavs[1].pseudoflavor = RPC_AUTH_NULL;
3106 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
3107 nflavs = 1;
3108 flavs[0].pseudoflavor
3109 = svcauth_gss_flavor(exp->ex_client);
3110 } else {
3111 nflavs = 1;
3112 flavs[0].pseudoflavor
3113 = exp->ex_client->flavour->flavour;
3114 }
3115 }
3116
Chuck Lever676e4eb2013-04-30 18:48:54 -04003117 supported = 0;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003118 RESERVE_SPACE(4);
Chuck Lever676e4eb2013-04-30 18:48:54 -04003119 flavorsp = p++; /* to be backfilled later */
Andy Adamsondcb488a32007-07-17 04:04:51 -07003120 ADJUST_ARGS();
Chuck Lever676e4eb2013-04-30 18:48:54 -04003121
J. Bruce Fields4796f452007-07-17 04:04:51 -07003122 for (i = 0; i < nflavs; i++) {
Chuck Lever676e4eb2013-04-30 18:48:54 -04003123 rpc_authflavor_t pf = flavs[i].pseudoflavor;
Chuck Levera77c8062013-03-16 15:55:10 -04003124 struct rpcsec_gss_info info;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003125
Chuck Lever676e4eb2013-04-30 18:48:54 -04003126 if (rpcauth_get_gssinfo(pf, &info) == 0) {
3127 supported++;
Chuck Levered9411a2013-04-30 18:48:45 -04003128 RESERVE_SPACE(4 + 4 + info.oid.len + 4 + 4);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003129 WRITE32(RPC_AUTH_GSS);
Chuck Levera77c8062013-03-16 15:55:10 -04003130 WRITE32(info.oid.len);
3131 WRITEMEM(info.oid.data, info.oid.len);
Chuck Levera77c8062013-03-16 15:55:10 -04003132 WRITE32(info.qop);
Chuck Levera77c8062013-03-16 15:55:10 -04003133 WRITE32(info.service);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003134 ADJUST_ARGS();
Chuck Lever676e4eb2013-04-30 18:48:54 -04003135 } else if (pf < RPC_AUTH_MAXFLAVOR) {
3136 supported++;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003137 RESERVE_SPACE(4);
Chuck Lever676e4eb2013-04-30 18:48:54 -04003138 WRITE32(pf);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003139 ADJUST_ARGS();
Chuck Lever676e4eb2013-04-30 18:48:54 -04003140 } else {
3141 if (report)
3142 pr_warn("NFS: SECINFO: security flavor %u "
3143 "is not supported\n", pf);
Andy Adamsondcb488a32007-07-17 04:04:51 -07003144 }
3145 }
Chuck Levera77c8062013-03-16 15:55:10 -04003146
Chuck Lever676e4eb2013-04-30 18:48:54 -04003147 if (nflavs != supported)
3148 report = false;
3149 *flavorsp = htonl(supported);
3150
Andy Adamsondcb488a32007-07-17 04:04:51 -07003151out:
3152 if (exp)
3153 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03003154 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07003155}
3156
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003157static __be32
3158nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
3159 struct nfsd4_secinfo *secinfo)
3160{
3161 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
3162}
3163
3164static __be32
3165nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
3166 struct nfsd4_secinfo_no_name *secinfo)
3167{
3168 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
3169}
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171/*
3172 * The SETATTR encode routine is special -- it always encodes a bitmap,
3173 * regardless of the error status.
3174 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003175static __be32
Al Virob37ad282006-10-19 23:28:59 -07003176nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003178 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179
3180 RESERVE_SPACE(12);
3181 if (nfserr) {
3182 WRITE32(2);
3183 WRITE32(0);
3184 WRITE32(0);
3185 }
3186 else {
3187 WRITE32(2);
3188 WRITE32(setattr->sa_bmval[0]);
3189 WRITE32(setattr->sa_bmval[1]);
3190 }
3191 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03003192 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193}
3194
Benny Halevy695e12f2008-07-04 14:38:33 +03003195static __be32
Al Virob37ad282006-10-19 23:28:59 -07003196nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003198 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
3200 if (!nfserr) {
Chuck Leverab4684d2012-03-02 17:13:50 -05003201 RESERVE_SPACE(8 + NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 WRITEMEM(&scd->se_clientid, 8);
Chuck Leverab4684d2012-03-02 17:13:50 -05003203 WRITEMEM(&scd->se_confirm, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 ADJUST_ARGS();
3205 }
3206 else if (nfserr == nfserr_clid_inuse) {
3207 RESERVE_SPACE(8);
3208 WRITE32(0);
3209 WRITE32(0);
3210 ADJUST_ARGS();
3211 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003212 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213}
3214
Benny Halevy695e12f2008-07-04 14:38:33 +03003215static __be32
Al Virob37ad282006-10-19 23:28:59 -07003216nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003218 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
3220 if (!nfserr) {
3221 RESERVE_SPACE(16);
3222 WRITE32(write->wr_bytes_written);
3223 WRITE32(write->wr_how_written);
Chuck Leverab4684d2012-03-02 17:13:50 -05003224 WRITEMEM(write->wr_verifier.data, NFS4_VERIFIER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 ADJUST_ARGS();
3226 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003227 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228}
3229
Benny Halevy695e12f2008-07-04 14:38:33 +03003230static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003231nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003232 struct nfsd4_exchange_id *exid)
3233{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003234 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03003235 char *major_id;
3236 char *server_scope;
3237 int major_id_sz;
3238 int server_scope_sz;
3239 uint64_t minor_id = 0;
3240
3241 if (nfserr)
3242 return nfserr;
3243
3244 major_id = utsname()->nodename;
3245 major_id_sz = strlen(major_id);
3246 server_scope = utsname()->nodename;
3247 server_scope_sz = strlen(server_scope);
3248
3249 RESERVE_SPACE(
3250 8 /* eir_clientid */ +
3251 4 /* eir_sequenceid */ +
3252 4 /* eir_flags */ +
3253 4 /* spr_how (SP4_NONE) */ +
3254 8 /* so_minor_id */ +
3255 4 /* so_major_id.len */ +
3256 (XDR_QUADLEN(major_id_sz) * 4) +
3257 4 /* eir_server_scope.len */ +
3258 (XDR_QUADLEN(server_scope_sz) * 4) +
3259 4 /* eir_server_impl_id.count (0) */);
3260
3261 WRITEMEM(&exid->clientid, 8);
3262 WRITE32(exid->seqid);
3263 WRITE32(exid->flags);
3264
3265 /* state_protect4_r. Currently only support SP4_NONE */
3266 BUG_ON(exid->spa_how != SP4_NONE);
3267 WRITE32(exid->spa_how);
3268
3269 /* The server_owner struct */
3270 WRITE64(minor_id); /* Minor id */
3271 /* major id */
3272 WRITE32(major_id_sz);
3273 WRITEMEM(major_id, major_id_sz);
3274
3275 /* Server scope */
3276 WRITE32(server_scope_sz);
3277 WRITEMEM(server_scope, server_scope_sz);
3278
3279 /* Implementation id */
3280 WRITE32(0); /* zero length nfs_impl_id4 array */
3281 ADJUST_ARGS();
3282 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003283}
3284
3285static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003286nfsd4_encode_create_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003287 struct nfsd4_create_session *sess)
3288{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003289 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003290
3291 if (nfserr)
3292 return nfserr;
3293
3294 RESERVE_SPACE(24);
3295 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3296 WRITE32(sess->seqid);
3297 WRITE32(sess->flags);
3298 ADJUST_ARGS();
3299
3300 RESERVE_SPACE(28);
3301 WRITE32(0); /* headerpadsz */
3302 WRITE32(sess->fore_channel.maxreq_sz);
3303 WRITE32(sess->fore_channel.maxresp_sz);
3304 WRITE32(sess->fore_channel.maxresp_cached);
3305 WRITE32(sess->fore_channel.maxops);
3306 WRITE32(sess->fore_channel.maxreqs);
3307 WRITE32(sess->fore_channel.nr_rdma_attrs);
3308 ADJUST_ARGS();
3309
3310 if (sess->fore_channel.nr_rdma_attrs) {
3311 RESERVE_SPACE(4);
3312 WRITE32(sess->fore_channel.rdma_attrs);
3313 ADJUST_ARGS();
3314 }
3315
3316 RESERVE_SPACE(28);
3317 WRITE32(0); /* headerpadsz */
3318 WRITE32(sess->back_channel.maxreq_sz);
3319 WRITE32(sess->back_channel.maxresp_sz);
3320 WRITE32(sess->back_channel.maxresp_cached);
3321 WRITE32(sess->back_channel.maxops);
3322 WRITE32(sess->back_channel.maxreqs);
3323 WRITE32(sess->back_channel.nr_rdma_attrs);
3324 ADJUST_ARGS();
3325
3326 if (sess->back_channel.nr_rdma_attrs) {
3327 RESERVE_SPACE(4);
3328 WRITE32(sess->back_channel.rdma_attrs);
3329 ADJUST_ARGS();
3330 }
3331 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003332}
3333
3334static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003335nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003336 struct nfsd4_destroy_session *destroy_session)
3337{
Andy Adamson2db134e2009-04-03 08:27:55 +03003338 return nfserr;
3339}
3340
Daniel Mackc47d8322011-05-16 16:38:14 +02003341static __be32
J. Bruce Fieldsd1829b32012-04-25 18:04:54 -04003342nfsd4_encode_free_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003343 struct nfsd4_free_stateid *free_stateid)
3344{
3345 __be32 *p;
3346
3347 if (nfserr)
3348 return nfserr;
3349
3350 RESERVE_SPACE(4);
J. Bruce Fieldsd1829b32012-04-25 18:04:54 -04003351 *p++ = nfserr;
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003352 ADJUST_ARGS();
3353 return nfserr;
3354}
3355
3356static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003357nfsd4_encode_sequence(struct nfsd4_compoundres *resp, __be32 nfserr,
Andy Adamson2db134e2009-04-03 08:27:55 +03003358 struct nfsd4_sequence *seq)
3359{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003360 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003361
3362 if (nfserr)
3363 return nfserr;
3364
3365 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3366 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3367 WRITE32(seq->seqid);
3368 WRITE32(seq->slotid);
J. Bruce Fieldsb7d7ca32011-08-31 15:39:30 -04003369 /* Note slotid's are numbered from zero: */
3370 WRITE32(seq->maxslots - 1); /* sr_highest_slotid */
3371 WRITE32(seq->maxslots - 1); /* sr_target_highest_slotid */
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05003372 WRITE32(seq->status_flags);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003373
3374 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003375 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003376 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003377}
3378
J. Bruce Fields2355c592012-04-25 16:56:22 -04003379static __be32
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003380nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, __be32 nfserr,
Bryan Schumaker17456802011-07-13 10:50:48 -04003381 struct nfsd4_test_stateid *test_stateid)
3382{
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003383 struct nfsd4_test_stateid_id *stateid, *next;
Bryan Schumaker17456802011-07-13 10:50:48 -04003384 __be32 *p;
Bryan Schumaker17456802011-07-13 10:50:48 -04003385
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003386 RESERVE_SPACE(4 + (4 * test_stateid->ts_num_ids));
Bryan Schumaker17456802011-07-13 10:50:48 -04003387 *p++ = htonl(test_stateid->ts_num_ids);
Bryan Schumaker17456802011-07-13 10:50:48 -04003388
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003389 list_for_each_entry_safe(stateid, next, &test_stateid->ts_stateid_list, ts_id_list) {
Al Viro02f5fde2012-04-13 00:10:34 -04003390 *p++ = stateid->ts_id_status;
Bryan Schumaker17456802011-07-13 10:50:48 -04003391 }
Bryan Schumaker17456802011-07-13 10:50:48 -04003392
Bryan Schumaker03cfb422012-01-27 10:22:49 -05003393 ADJUST_ARGS();
Bryan Schumaker17456802011-07-13 10:50:48 -04003394 return nfserr;
3395}
3396
Andy Adamson2db134e2009-04-03 08:27:55 +03003397static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003398nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3399{
3400 return nfserr;
3401}
3402
3403typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3404
Andy Adamson2db134e2009-04-03 08:27:55 +03003405/*
3406 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3407 * since we don't need to filter out obsolete ops as this is
3408 * done in the decoding phase.
3409 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003410static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003411 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3412 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3413 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3414 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3415 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3416 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3417 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3418 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3419 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3420 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3421 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3422 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3423 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3424 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3425 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3426 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003427 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003428 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3429 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3430 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3431 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3432 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3433 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3434 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3435 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3436 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3437 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3438 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3439 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3440 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3441 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3442 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3443 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3444 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3445 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3446 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3447 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003448
3449 /* NFSv4.1 operations */
3450 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003451 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
Andy Adamson2db134e2009-04-03 08:27:55 +03003452 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3453 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3454 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04003455 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_free_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003456 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3457 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3458 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3459 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3460 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3461 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003462 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003463 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3464 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
Bryan Schumaker17456802011-07-13 10:50:48 -04003465 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_test_stateid,
Andy Adamson2db134e2009-04-03 08:27:55 +03003466 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3467 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3468 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003469};
3470
Andy Adamson496c2622009-04-03 08:28:48 +03003471/*
3472 * Calculate the total amount of memory that the compound response has taken
Mi Jinlong58e7b332011-08-28 18:18:56 +08003473 * after encoding the current operation with pad.
Andy Adamson496c2622009-04-03 08:28:48 +03003474 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003475 * pad: if operation is non-idempotent, pad was calculate by op_rsize_bop()
3476 * which was specified at nfsd4_operation, else pad is zero.
Andy Adamson496c2622009-04-03 08:28:48 +03003477 *
Mi Jinlong58e7b332011-08-28 18:18:56 +08003478 * Compare this length to the session se_fmaxresp_sz and se_fmaxresp_cached.
Andy Adamson496c2622009-04-03 08:28:48 +03003479 *
3480 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3481 * will be at least a page and will therefore hold the xdr_buf head.
3482 */
J. Bruce Fields57b7b432012-04-25 17:58:50 -04003483__be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 pad)
Andy Adamson496c2622009-04-03 08:28:48 +03003484{
Andy Adamson496c2622009-04-03 08:28:48 +03003485 struct xdr_buf *xb = &resp->rqstp->rq_res;
Andy Adamson496c2622009-04-03 08:28:48 +03003486 struct nfsd4_session *session = NULL;
3487 struct nfsd4_slot *slot = resp->cstate.slot;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003488 u32 length, tlen = 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003489
3490 if (!nfsd4_has_session(&resp->cstate))
Mi Jinlong58e7b332011-08-28 18:18:56 +08003491 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003492
3493 session = resp->cstate.session;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003494 if (session == NULL)
3495 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003496
3497 if (xb->page_len == 0) {
3498 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3499 } else {
3500 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3501 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3502
3503 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3504 }
3505 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3506 length, xb->page_len, tlen, pad);
3507
Mi Jinlong58e7b332011-08-28 18:18:56 +08003508 if (length > session->se_fchannel.maxresp_sz)
3509 return nfserr_rep_too_big;
3510
J. Bruce Fields73e79482012-02-13 16:39:00 -05003511 if ((slot->sl_flags & NFSD4_SLOT_CACHETHIS) &&
Mi Jinlong58e7b332011-08-28 18:18:56 +08003512 length > session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003513 return nfserr_rep_too_big_to_cache;
Mi Jinlong58e7b332011-08-28 18:18:56 +08003514
3515 return 0;
Andy Adamson496c2622009-04-03 08:28:48 +03003516}
3517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518void
3519nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3520{
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003521 struct nfs4_stateowner *so = resp->cstate.replay_owner;
Al Viro2ebbc012006-10-19 23:28:58 -07003522 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003523 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
3525 RESERVE_SPACE(8);
3526 WRITE32(op->opnum);
3527 statp = p++; /* to be backfilled at the end */
3528 ADJUST_ARGS();
3529
Benny Halevy695e12f2008-07-04 14:38:33 +03003530 if (op->opnum == OP_ILLEGAL)
3531 goto status;
3532 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3533 !nfsd4_enc_ops[op->opnum]);
3534 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
Andy Adamson496c2622009-04-03 08:28:48 +03003535 /* nfsd4_check_drc_limit guarantees enough room for error status */
Mi Jinlong58e7b332011-08-28 18:18:56 +08003536 if (!op->status)
3537 op->status = nfsd4_check_resp_size(resp, 0);
J. Bruce Fields9411b1d2013-04-01 16:37:12 -04003538 if (so) {
3539 so->so_replay.rp_status = op->status;
3540 so->so_replay.rp_buflen = (char *)resp->p - (char *)(statp+1);
3541 memcpy(so->so_replay.rp_buf, statp+1, so->so_replay.rp_buflen);
3542 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003543status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 /*
3545 * Note: We write the status directly, instead of using WRITE32(),
3546 * since it is already in network byte order.
3547 */
3548 *statp = op->status;
3549}
3550
3551/*
3552 * Encode the reply stored in the stateowner reply cache
3553 *
3554 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3555 * previously sent already encoded operation.
3556 *
3557 * called with nfs4_lock_state() held
3558 */
3559void
3560nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3561{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003562 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 struct nfs4_replay *rp = op->replay;
3564
3565 BUG_ON(!rp);
3566
3567 RESERVE_SPACE(8);
3568 WRITE32(op->opnum);
3569 *p++ = rp->rp_status; /* already xdr'ed */
3570 ADJUST_ARGS();
3571
3572 RESERVE_SPACE(rp->rp_buflen);
3573 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3574 ADJUST_ARGS();
3575}
3576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577int
Al Viro2ebbc012006-10-19 23:28:58 -07003578nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579{
3580 return xdr_ressize_check(rqstp, p);
3581}
3582
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003583int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584{
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003585 struct svc_rqst *rqstp = rq;
3586 struct nfsd4_compoundargs *args = rqstp->rq_argp;
3587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 if (args->ops != args->iops) {
3589 kfree(args->ops);
3590 args->ops = args->iops;
3591 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003592 kfree(args->tmpp);
3593 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 while (args->to_free) {
3595 struct tmpbuf *tb = args->to_free;
3596 args->to_free = tb->next;
3597 tb->release(tb->buf);
3598 kfree(tb);
3599 }
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003600 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601}
3602
3603int
Al Viro2ebbc012006-10-19 23:28:58 -07003604nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 args->p = p;
3607 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3608 args->pagelist = rqstp->rq_arg.pages;
3609 args->pagelen = rqstp->rq_arg.page_len;
3610 args->tmpp = NULL;
3611 args->to_free = NULL;
3612 args->ops = args->iops;
3613 args->rqstp = rqstp;
3614
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04003615 return !nfsd4_decode_compound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616}
3617
3618int
Al Viro2ebbc012006-10-19 23:28:58 -07003619nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620{
3621 /*
3622 * All that remains is to write the tag and operation count...
3623 */
Andy Adamson557ce262009-08-28 08:45:04 -04003624 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 struct kvec *iov;
3626 p = resp->tagp;
3627 *p++ = htonl(resp->taglen);
3628 memcpy(p, resp->tag, resp->taglen);
3629 p += XDR_QUADLEN(resp->taglen);
3630 *p++ = htonl(resp->opcnt);
3631
3632 if (rqstp->rq_res.page_len)
3633 iov = &rqstp->rq_res.tail[0];
3634 else
3635 iov = &rqstp->rq_res.head[0];
3636 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3637 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003638 if (nfsd4_has_session(cs)) {
3639 if (cs->status != nfserr_replay_cache) {
3640 nfsd4_store_cache_entry(resp);
J. Bruce Fields73e79482012-02-13 16:39:00 -05003641 cs->slot->sl_flags &= ~NFSD4_SLOT_INUSE;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003642 }
Benny Halevyd7682982010-05-12 00:13:54 +03003643 /* Renew the clientid on success and on replay */
J. Bruce Fields221a6872013-04-01 22:23:49 -04003644 put_client_renew(cs->session->se_client);
3645 nfsd4_put_session(cs->session);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 return 1;
3648}
3649
3650/*
3651 * Local variables:
3652 * c-basic-offset: 8
3653 * End:
3654 */