blob: 6e7f10a8935456ef336d03c05595d62f3b30c085 [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>
J. Bruce Fields4796f452007-07-17 04:04:51 -070047#include <linux/sunrpc/svcauth_gss.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020048
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050049#include "idmap.h"
50#include "acl.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020051#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050052#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define NFSDDBG_FACILITY NFSDDBG_XDR
56
J.Bruce Fields42ca0992006-10-04 02:16:20 -070057/*
58 * As per referral draft, the fsid for a referral MUST be different from the fsid of the containing
59 * directory in order to indicate to the client that a filesystem boundary is present
60 * We use a fixed fsid for a referral
61 */
62#define NFS4_REFERRAL_FSID_MAJOR 0x8000000ULL
63#define NFS4_REFERRAL_FSID_MINOR 0x8000000ULL
64
Al Virob37ad282006-10-19 23:28:59 -070065static __be32
66check_filename(char *str, int len, __be32 err)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 int i;
69
70 if (len == 0)
71 return nfserr_inval;
72 if (isdotent(str, len))
73 return err;
74 for (i = 0; i < len; i++)
75 if (str[i] == '/')
76 return err;
77 return 0;
78}
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define DECODE_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -070081 __be32 *p; \
Al Virob37ad282006-10-19 23:28:59 -070082 __be32 status
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define DECODE_TAIL \
84 status = 0; \
85out: \
86 return status; \
87xdr_error: \
Chuck Lever817cb9d2007-09-11 18:01:20 -040088 dprintk("NFSD: xdr error (%s:%d)\n", \
89 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 status = nfserr_bad_xdr; \
91 goto out
92
93#define READ32(x) (x) = ntohl(*p++)
94#define READ64(x) do { \
95 (x) = (u64)ntohl(*p++) << 32; \
96 (x) |= ntohl(*p++); \
97} while (0)
98#define READTIME(x) do { \
99 p++; \
100 (x) = ntohl(*p++); \
101 p++; \
102} while (0)
103#define READMEM(x,nbytes) do { \
104 x = (char *)p; \
105 p += XDR_QUADLEN(nbytes); \
106} while (0)
107#define SAVEMEM(x,nbytes) do { \
108 if (!(x = (p==argp->tmp || p == argp->tmpp) ? \
109 savemem(argp, p, nbytes) : \
110 (char *)p)) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400111 dprintk("NFSD: xdr error (%s:%d)\n", \
112 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 goto xdr_error; \
114 } \
115 p += XDR_QUADLEN(nbytes); \
116} while (0)
117#define COPYMEM(x,nbytes) do { \
118 memcpy((x), p, nbytes); \
119 p += XDR_QUADLEN(nbytes); \
120} while (0)
121
122/* READ_BUF, read_buf(): nbytes must be <= PAGE_SIZE */
123#define READ_BUF(nbytes) do { \
124 if (nbytes <= (u32)((char *)argp->end - (char *)argp->p)) { \
125 p = argp->p; \
126 argp->p += XDR_QUADLEN(nbytes); \
127 } else if (!(p = read_buf(argp, nbytes))) { \
Chuck Lever817cb9d2007-09-11 18:01:20 -0400128 dprintk("NFSD: xdr error (%s:%d)\n", \
129 __FILE__, __LINE__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 goto xdr_error; \
131 } \
132} while (0)
133
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500134static __be32 *read_buf(struct nfsd4_compoundargs *argp, u32 nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 /* We want more bytes than seem to be available.
137 * Maybe we need a new page, maybe we have just run out
138 */
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500139 unsigned int avail = (char *)argp->end - (char *)argp->p;
Al Viro2ebbc012006-10-19 23:28:58 -0700140 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (avail + argp->pagelen < nbytes)
142 return NULL;
143 if (avail + PAGE_SIZE < nbytes) /* need more than a page !! */
144 return NULL;
145 /* ok, we can do it with the current plus the next page */
146 if (nbytes <= sizeof(argp->tmp))
147 p = argp->tmp;
148 else {
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800149 kfree(argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 p = argp->tmpp = kmalloc(nbytes, GFP_KERNEL);
151 if (!p)
152 return NULL;
153
154 }
J. Bruce Fieldsca2a05a2007-11-11 15:43:12 -0500155 /*
156 * The following memcpy is safe because read_buf is always
157 * called with nbytes > avail, and the two cases above both
158 * guarantee p points to at least nbytes bytes.
159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 memcpy(p, argp->p, avail);
161 /* step to next page */
162 argp->p = page_address(argp->pagelist[0]);
163 argp->pagelist++;
164 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +1000165 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 argp->pagelen = 0;
167 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +1000168 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 argp->pagelen -= PAGE_SIZE;
170 }
171 memcpy(((char*)p)+avail, argp->p, (nbytes - avail));
172 argp->p += XDR_QUADLEN(nbytes - avail);
173 return p;
174}
175
Andy Adamson60adfc52009-04-03 08:28:50 +0300176static int zero_clientid(clientid_t *clid)
177{
178 return (clid->cl_boot == 0) && (clid->cl_id == 0);
179}
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static int
182defer_free(struct nfsd4_compoundargs *argp,
183 void (*release)(const void *), void *p)
184{
185 struct tmpbuf *tb;
186
187 tb = kmalloc(sizeof(*tb), GFP_KERNEL);
188 if (!tb)
189 return -ENOMEM;
190 tb->buf = p;
191 tb->release = release;
192 tb->next = argp->to_free;
193 argp->to_free = tb;
194 return 0;
195}
196
Al Viro2ebbc012006-10-19 23:28:58 -0700197static char *savemem(struct nfsd4_compoundargs *argp, __be32 *p, int nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (p == argp->tmp) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800200 p = kmalloc(nbytes, GFP_KERNEL);
201 if (!p)
202 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 memcpy(p, argp->tmp, nbytes);
204 } else {
Eric Sesterhenn73dff8b2006-10-03 23:37:14 +0200205 BUG_ON(p != argp->tmpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 argp->tmpp = NULL;
207 }
208 if (defer_free(argp, kfree, p)) {
J. Bruce Fieldsa4db5fe2007-02-16 01:28:30 -0800209 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 return NULL;
211 } else
212 return (char *)p;
213}
214
Al Virob37ad282006-10-19 23:28:59 -0700215static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216nfsd4_decode_bitmap(struct nfsd4_compoundargs *argp, u32 *bmval)
217{
218 u32 bmlen;
219 DECODE_HEAD;
220
221 bmval[0] = 0;
222 bmval[1] = 0;
Andy Adamson7e705702009-04-03 08:29:11 +0300223 bmval[2] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 READ_BUF(4);
226 READ32(bmlen);
227 if (bmlen > 1000)
228 goto xdr_error;
229
230 READ_BUF(bmlen << 2);
231 if (bmlen > 0)
232 READ32(bmval[0]);
233 if (bmlen > 1)
234 READ32(bmval[1]);
Andy Adamson7e705702009-04-03 08:29:11 +0300235 if (bmlen > 2)
236 READ32(bmval[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 DECODE_TAIL;
239}
240
Al Virob37ad282006-10-19 23:28:59 -0700241static __be32
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800242nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300243 struct iattr *iattr, struct nfs4_acl **acl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 int expected_len, len = 0;
246 u32 dummy32;
247 char *buf;
Al Virob8dd7b92006-10-19 23:29:01 -0700248 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 DECODE_HEAD;
251 iattr->ia_valid = 0;
252 if ((status = nfsd4_decode_bitmap(argp, bmval)))
253 return status;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 READ_BUF(4);
256 READ32(expected_len);
257
258 if (bmval[0] & FATTR4_WORD0_SIZE) {
259 READ_BUF(8);
260 len += 8;
261 READ64(iattr->ia_size);
262 iattr->ia_valid |= ATTR_SIZE;
263 }
264 if (bmval[0] & FATTR4_WORD0_ACL) {
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800265 int nace;
266 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 READ_BUF(4); len += 4;
269 READ32(nace);
270
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800271 if (nace > NFS4_ACL_MAX)
272 return nfserr_resource;
273
274 *acl = nfs4_acl_new(nace);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (*acl == NULL) {
Al Virob8dd7b92006-10-19 23:29:01 -0700276 host_err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 goto out_nfserr;
278 }
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800279 defer_free(argp, kfree, *acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800281 (*acl)->naces = nace;
282 for (ace = (*acl)->aces; ace < (*acl)->aces + nace; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 READ_BUF(16); len += 16;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800284 READ32(ace->type);
285 READ32(ace->flag);
286 READ32(ace->access_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 READ32(dummy32);
288 READ_BUF(dummy32);
289 len += XDR_QUADLEN(dummy32) << 2;
290 READMEM(buf, dummy32);
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800291 ace->whotype = nfs4_acl_get_whotype(buf, dummy32);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500292 status = nfs_ok;
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800293 if (ace->whotype != NFS4_ACL_WHO_NAMED)
294 ace->who = 0;
295 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP)
J. Bruce Fields3c726022011-01-04 17:53:52 -0500296 status = nfsd_map_name_to_gid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800297 buf, dummy32, &ace->who);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 else
J. Bruce Fields3c726022011-01-04 17:53:52 -0500299 status = nfsd_map_name_to_uid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800300 buf, dummy32, &ace->who);
J. Bruce Fields3c726022011-01-04 17:53:52 -0500301 if (status)
302 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304 } else
305 *acl = NULL;
306 if (bmval[1] & FATTR4_WORD1_MODE) {
307 READ_BUF(4);
308 len += 4;
309 READ32(iattr->ia_mode);
310 iattr->ia_mode &= (S_IFMT | S_IALLUGO);
311 iattr->ia_valid |= ATTR_MODE;
312 }
313 if (bmval[1] & FATTR4_WORD1_OWNER) {
314 READ_BUF(4);
315 len += 4;
316 READ32(dummy32);
317 READ_BUF(dummy32);
318 len += (XDR_QUADLEN(dummy32) << 2);
319 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100320 if ((status = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
321 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 iattr->ia_valid |= ATTR_UID;
323 }
324 if (bmval[1] & FATTR4_WORD1_OWNER_GROUP) {
325 READ_BUF(4);
326 len += 4;
327 READ32(dummy32);
328 READ_BUF(dummy32);
329 len += (XDR_QUADLEN(dummy32) << 2);
330 READMEM(buf, dummy32);
NeilBrown47c85292011-02-16 13:08:35 +1100331 if ((status = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
332 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 iattr->ia_valid |= ATTR_GID;
334 }
335 if (bmval[1] & FATTR4_WORD1_TIME_ACCESS_SET) {
336 READ_BUF(4);
337 len += 4;
338 READ32(dummy32);
339 switch (dummy32) {
340 case NFS4_SET_TO_CLIENT_TIME:
341 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
342 all 32 bits of 'nseconds'. */
343 READ_BUF(12);
344 len += 12;
345 READ32(dummy32);
346 if (dummy32)
347 return nfserr_inval;
348 READ32(iattr->ia_atime.tv_sec);
349 READ32(iattr->ia_atime.tv_nsec);
350 if (iattr->ia_atime.tv_nsec >= (u32)1000000000)
351 return nfserr_inval;
352 iattr->ia_valid |= (ATTR_ATIME | ATTR_ATIME_SET);
353 break;
354 case NFS4_SET_TO_SERVER_TIME:
355 iattr->ia_valid |= ATTR_ATIME;
356 break;
357 default:
358 goto xdr_error;
359 }
360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (bmval[1] & FATTR4_WORD1_TIME_MODIFY_SET) {
362 READ_BUF(4);
363 len += 4;
364 READ32(dummy32);
365 switch (dummy32) {
366 case NFS4_SET_TO_CLIENT_TIME:
367 /* We require the high 32 bits of 'seconds' to be 0, and we ignore
368 all 32 bits of 'nseconds'. */
369 READ_BUF(12);
370 len += 12;
371 READ32(dummy32);
372 if (dummy32)
373 return nfserr_inval;
374 READ32(iattr->ia_mtime.tv_sec);
375 READ32(iattr->ia_mtime.tv_nsec);
376 if (iattr->ia_mtime.tv_nsec >= (u32)1000000000)
377 return nfserr_inval;
378 iattr->ia_valid |= (ATTR_MTIME | ATTR_MTIME_SET);
379 break;
380 case NFS4_SET_TO_SERVER_TIME:
381 iattr->ia_valid |= ATTR_MTIME;
382 break;
383 default:
384 goto xdr_error;
385 }
386 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800387 if (bmval[0] & ~NFSD_WRITEABLE_ATTRS_WORD0
388 || bmval[1] & ~NFSD_WRITEABLE_ATTRS_WORD1
389 || bmval[2] & ~NFSD_WRITEABLE_ATTRS_WORD2)
390 READ_BUF(expected_len - len);
391 else if (len != expected_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 goto xdr_error;
393
394 DECODE_TAIL;
395
396out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -0700397 status = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 goto out;
399}
400
Al Virob37ad282006-10-19 23:28:59 -0700401static __be32
Benny Halevye31a1b62008-08-12 20:46:18 +0300402nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid)
403{
404 DECODE_HEAD;
405
406 READ_BUF(sizeof(stateid_t));
407 READ32(sid->si_generation);
408 COPYMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
409
410 DECODE_TAIL;
411}
412
413static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414nfsd4_decode_access(struct nfsd4_compoundargs *argp, struct nfsd4_access *access)
415{
416 DECODE_HEAD;
417
418 READ_BUF(4);
419 READ32(access->ac_req_access);
420
421 DECODE_TAIL;
422}
423
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -0400424static __be32 nfsd4_decode_bind_conn_to_session(struct nfsd4_compoundargs *argp, struct nfsd4_bind_conn_to_session *bcts)
425{
426 DECODE_HEAD;
427 u32 dummy;
428
429 READ_BUF(NFS4_MAX_SESSIONID_LEN + 8);
430 COPYMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
431 READ32(bcts->dir);
432 /* XXX: Perhaps Tom Tucker could help us figure out how we
433 * should be using ctsa_use_conn_in_rdma_mode: */
434 READ32(dummy);
435
436 DECODE_TAIL;
437}
438
Al Virob37ad282006-10-19 23:28:59 -0700439static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
441{
442 DECODE_HEAD;
443
444 close->cl_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300445 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300447 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 DECODE_TAIL;
450}
451
452
Al Virob37ad282006-10-19 23:28:59 -0700453static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
455{
456 DECODE_HEAD;
457
458 READ_BUF(12);
459 READ64(commit->co_offset);
460 READ32(commit->co_count);
461
462 DECODE_TAIL;
463}
464
Al Virob37ad282006-10-19 23:28:59 -0700465static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
467{
468 DECODE_HEAD;
469
470 READ_BUF(4);
471 READ32(create->cr_type);
472 switch (create->cr_type) {
473 case NF4LNK:
474 READ_BUF(4);
475 READ32(create->cr_linklen);
476 READ_BUF(create->cr_linklen);
477 SAVEMEM(create->cr_linkname, create->cr_linklen);
478 break;
479 case NF4BLK:
480 case NF4CHR:
481 READ_BUF(8);
482 READ32(create->cr_specdata1);
483 READ32(create->cr_specdata2);
484 break;
485 case NF4SOCK:
486 case NF4FIFO:
487 case NF4DIR:
488 default:
489 break;
490 }
491
492 READ_BUF(4);
493 READ32(create->cr_namelen);
494 READ_BUF(create->cr_namelen);
495 SAVEMEM(create->cr_name, create->cr_namelen);
496 if ((status = check_filename(create->cr_name, create->cr_namelen, nfserr_inval)))
497 return status;
498
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800499 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
500 &create->cr_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300501 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 goto out;
503
504 DECODE_TAIL;
505}
506
Al Virob37ad282006-10-19 23:28:59 -0700507static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
509{
Benny Halevye31a1b62008-08-12 20:46:18 +0300510 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
Al Virob37ad282006-10-19 23:28:59 -0700513static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
515{
516 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
517}
518
Al Virob37ad282006-10-19 23:28:59 -0700519static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
521{
522 DECODE_HEAD;
523
524 READ_BUF(4);
525 READ32(link->li_namelen);
526 READ_BUF(link->li_namelen);
527 SAVEMEM(link->li_name, link->li_namelen);
528 if ((status = check_filename(link->li_name, link->li_namelen, nfserr_inval)))
529 return status;
530
531 DECODE_TAIL;
532}
533
Al Virob37ad282006-10-19 23:28:59 -0700534static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
536{
537 DECODE_HEAD;
538
J. Bruce Fields3a655882006-01-18 17:43:19 -0800539 lock->lk_replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /*
541 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
542 */
543 READ_BUF(28);
544 READ32(lock->lk_type);
545 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
546 goto xdr_error;
547 READ32(lock->lk_reclaim);
548 READ64(lock->lk_offset);
549 READ64(lock->lk_length);
550 READ32(lock->lk_is_new);
551
552 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300553 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300555 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
556 if (status)
557 return status;
558 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 READ32(lock->lk_new_lock_seqid);
560 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
561 READ32(lock->lk_new_owner.len);
562 READ_BUF(lock->lk_new_owner.len);
563 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
564 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300565 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
566 if (status)
567 return status;
568 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 READ32(lock->lk_old_lock_seqid);
570 }
571
572 DECODE_TAIL;
573}
574
Al Virob37ad282006-10-19 23:28:59 -0700575static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
577{
578 DECODE_HEAD;
579
580 READ_BUF(32);
581 READ32(lockt->lt_type);
582 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
583 goto xdr_error;
584 READ64(lockt->lt_offset);
585 READ64(lockt->lt_length);
586 COPYMEM(&lockt->lt_clientid, 8);
587 READ32(lockt->lt_owner.len);
588 READ_BUF(lockt->lt_owner.len);
589 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
590
591 DECODE_TAIL;
592}
593
Al Virob37ad282006-10-19 23:28:59 -0700594static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
596{
597 DECODE_HEAD;
598
599 locku->lu_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300600 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 READ32(locku->lu_type);
602 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
603 goto xdr_error;
604 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300605 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
606 if (status)
607 return status;
608 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 READ64(locku->lu_offset);
610 READ64(locku->lu_length);
611
612 DECODE_TAIL;
613}
614
Al Virob37ad282006-10-19 23:28:59 -0700615static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
617{
618 DECODE_HEAD;
619
620 READ_BUF(4);
621 READ32(lookup->lo_len);
622 READ_BUF(lookup->lo_len);
623 SAVEMEM(lookup->lo_name, lookup->lo_len);
624 if ((status = check_filename(lookup->lo_name, lookup->lo_len, nfserr_noent)))
625 return status;
626
627 DECODE_TAIL;
628}
629
Al Virob37ad282006-10-19 23:28:59 -0700630static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
632{
633 DECODE_HEAD;
634
635 memset(open->op_bmval, 0, sizeof(open->op_bmval));
636 open->op_iattr.ia_valid = 0;
637 open->op_stateowner = NULL;
638
639 /* seqid, share_access, share_deny, clientid, ownerlen */
640 READ_BUF(16 + sizeof(clientid_t));
641 READ32(open->op_seqid);
642 READ32(open->op_share_access);
643 READ32(open->op_share_deny);
644 COPYMEM(&open->op_clientid, sizeof(clientid_t));
645 READ32(open->op_owner.len);
646
647 /* owner, open_flag */
648 READ_BUF(open->op_owner.len + 4);
649 SAVEMEM(open->op_owner.data, open->op_owner.len);
650 READ32(open->op_create);
651 switch (open->op_create) {
652 case NFS4_OPEN_NOCREATE:
653 break;
654 case NFS4_OPEN_CREATE:
655 READ_BUF(4);
656 READ32(open->op_createmode);
657 switch (open->op_createmode) {
658 case NFS4_CREATE_UNCHECKED:
659 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300660 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800661 &open->op_iattr, &open->op_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300662 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 goto out;
664 break;
665 case NFS4_CREATE_EXCLUSIVE:
666 READ_BUF(8);
667 COPYMEM(open->op_verf.data, 8);
668 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300669 case NFS4_CREATE_EXCLUSIVE4_1:
670 if (argp->minorversion < 1)
671 goto xdr_error;
672 READ_BUF(8);
673 COPYMEM(open->op_verf.data, 8);
674 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800675 &open->op_iattr, &open->op_acl);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300676 if (status)
677 goto out;
678 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 default:
680 goto xdr_error;
681 }
682 break;
683 default:
684 goto xdr_error;
685 }
686
687 /* open_claim */
688 READ_BUF(4);
689 READ32(open->op_claim_type);
690 switch (open->op_claim_type) {
691 case NFS4_OPEN_CLAIM_NULL:
692 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
693 READ_BUF(4);
694 READ32(open->op_fname.len);
695 READ_BUF(open->op_fname.len);
696 SAVEMEM(open->op_fname.data, open->op_fname.len);
697 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
698 return status;
699 break;
700 case NFS4_OPEN_CLAIM_PREVIOUS:
701 READ_BUF(4);
702 READ32(open->op_delegate_type);
703 break;
704 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300705 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
706 if (status)
707 return status;
708 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 READ32(open->op_fname.len);
710 READ_BUF(open->op_fname.len);
711 SAVEMEM(open->op_fname.data, open->op_fname.len);
712 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
713 return status;
714 break;
715 default:
716 goto xdr_error;
717 }
718
719 DECODE_TAIL;
720}
721
Al Virob37ad282006-10-19 23:28:59 -0700722static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
724{
725 DECODE_HEAD;
726
727 open_conf->oc_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300728 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
729 if (status)
730 return status;
731 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 READ32(open_conf->oc_seqid);
733
734 DECODE_TAIL;
735}
736
Al Virob37ad282006-10-19 23:28:59 -0700737static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
739{
740 DECODE_HEAD;
741
742 open_down->od_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300743 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
744 if (status)
745 return status;
746 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 READ32(open_down->od_seqid);
748 READ32(open_down->od_share_access);
749 READ32(open_down->od_share_deny);
750
751 DECODE_TAIL;
752}
753
Al Virob37ad282006-10-19 23:28:59 -0700754static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
756{
757 DECODE_HEAD;
758
759 READ_BUF(4);
760 READ32(putfh->pf_fhlen);
761 if (putfh->pf_fhlen > NFS4_FHSIZE)
762 goto xdr_error;
763 READ_BUF(putfh->pf_fhlen);
764 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
765
766 DECODE_TAIL;
767}
768
Al Virob37ad282006-10-19 23:28:59 -0700769static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
771{
772 DECODE_HEAD;
773
Benny Halevye31a1b62008-08-12 20:46:18 +0300774 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
775 if (status)
776 return status;
777 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 READ64(read->rd_offset);
779 READ32(read->rd_length);
780
781 DECODE_TAIL;
782}
783
Al Virob37ad282006-10-19 23:28:59 -0700784static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
786{
787 DECODE_HEAD;
788
789 READ_BUF(24);
790 READ64(readdir->rd_cookie);
791 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
792 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
793 READ32(readdir->rd_maxcount);
794 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
795 goto out;
796
797 DECODE_TAIL;
798}
799
Al Virob37ad282006-10-19 23:28:59 -0700800static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
802{
803 DECODE_HEAD;
804
805 READ_BUF(4);
806 READ32(remove->rm_namelen);
807 READ_BUF(remove->rm_namelen);
808 SAVEMEM(remove->rm_name, remove->rm_namelen);
809 if ((status = check_filename(remove->rm_name, remove->rm_namelen, nfserr_noent)))
810 return status;
811
812 DECODE_TAIL;
813}
814
Al Virob37ad282006-10-19 23:28:59 -0700815static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
817{
818 DECODE_HEAD;
819
820 READ_BUF(4);
821 READ32(rename->rn_snamelen);
822 READ_BUF(rename->rn_snamelen + 4);
823 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
824 READ32(rename->rn_tnamelen);
825 READ_BUF(rename->rn_tnamelen);
826 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
827 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen, nfserr_noent)))
828 return status;
829 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen, nfserr_inval)))
830 return status;
831
832 DECODE_TAIL;
833}
834
Al Virob37ad282006-10-19 23:28:59 -0700835static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
837{
838 DECODE_HEAD;
839
840 READ_BUF(sizeof(clientid_t));
841 COPYMEM(clientid, sizeof(clientid_t));
842
843 DECODE_TAIL;
844}
845
Al Virob37ad282006-10-19 23:28:59 -0700846static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700847nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
848 struct nfsd4_secinfo *secinfo)
849{
850 DECODE_HEAD;
851
852 READ_BUF(4);
853 READ32(secinfo->si_namelen);
854 READ_BUF(secinfo->si_namelen);
855 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
856 status = check_filename(secinfo->si_name, secinfo->si_namelen,
857 nfserr_noent);
858 if (status)
859 return status;
860 DECODE_TAIL;
861}
862
863static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500864nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
865 struct nfsd4_secinfo_no_name *sin)
866{
867 DECODE_HEAD;
868
869 READ_BUF(4);
870 READ32(sin->sin_style);
871 DECODE_TAIL;
872}
873
874static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
876{
Benny Halevye31a1b62008-08-12 20:46:18 +0300877 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Benny Halevye31a1b62008-08-12 20:46:18 +0300879 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
880 if (status)
881 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800882 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
883 &setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Al Virob37ad282006-10-19 23:28:59 -0700886static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
888{
889 DECODE_HEAD;
890
891 READ_BUF(12);
892 COPYMEM(setclientid->se_verf.data, 8);
893 READ32(setclientid->se_namelen);
894
895 READ_BUF(setclientid->se_namelen + 8);
896 SAVEMEM(setclientid->se_name, setclientid->se_namelen);
897 READ32(setclientid->se_callback_prog);
898 READ32(setclientid->se_callback_netid_len);
899
900 READ_BUF(setclientid->se_callback_netid_len + 4);
901 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
902 READ32(setclientid->se_callback_addr_len);
903
904 READ_BUF(setclientid->se_callback_addr_len + 4);
905 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
906 READ32(setclientid->se_callback_ident);
907
908 DECODE_TAIL;
909}
910
Al Virob37ad282006-10-19 23:28:59 -0700911static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
913{
914 DECODE_HEAD;
915
916 READ_BUF(8 + sizeof(nfs4_verifier));
917 COPYMEM(&scd_c->sc_clientid, 8);
918 COPYMEM(&scd_c->sc_confirm, sizeof(nfs4_verifier));
919
920 DECODE_TAIL;
921}
922
923/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -0700924static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
926{
927#if 0
928 struct nfsd4_compoundargs save = {
929 .p = argp->p,
930 .end = argp->end,
931 .rqstp = argp->rqstp,
932 };
933 u32 ve_bmval[2];
934 struct iattr ve_iattr; /* request */
935 struct nfs4_acl *ve_acl; /* request */
936#endif
937 DECODE_HEAD;
938
939 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
940 goto out;
941
942 /* For convenience's sake, we compare raw xdr'd attributes in
943 * nfsd4_proc_verify; however we still decode here just to return
944 * correct error in case of bad xdr. */
945#if 0
946 status = nfsd4_decode_fattr(ve_bmval, &ve_iattr, &ve_acl);
947 if (status == nfserr_inval) {
948 status = nfserrno(status);
949 goto out;
950 }
951#endif
952 READ_BUF(4);
953 READ32(verify->ve_attrlen);
954 READ_BUF(verify->ve_attrlen);
955 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
956
957 DECODE_TAIL;
958}
959
Al Virob37ad282006-10-19 23:28:59 -0700960static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
962{
963 int avail;
964 int v;
965 int len;
966 DECODE_HEAD;
967
Benny Halevye31a1b62008-08-12 20:46:18 +0300968 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
969 if (status)
970 return status;
971 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 READ64(write->wr_offset);
973 READ32(write->wr_stable_how);
974 if (write->wr_stable_how > 2)
975 goto xdr_error;
976 READ32(write->wr_buflen);
977
978 /* Sorry .. no magic macros for this.. *
979 * READ_BUF(write->wr_buflen);
980 * SAVEMEM(write->wr_buf, write->wr_buflen);
981 */
982 avail = (char*)argp->end - (char*)argp->p;
983 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -0400984 dprintk("NFSD: xdr error (%s:%d)\n",
985 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 goto xdr_error;
987 }
NeilBrown3cc03b12006-10-04 02:15:47 -0700988 argp->rqstp->rq_vec[0].iov_base = p;
989 argp->rqstp->rq_vec[0].iov_len = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 v = 0;
991 len = write->wr_buflen;
NeilBrown3cc03b12006-10-04 02:15:47 -0700992 while (len > argp->rqstp->rq_vec[v].iov_len) {
993 len -= argp->rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700995 argp->rqstp->rq_vec[v].iov_base = page_address(argp->pagelist[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 argp->pagelist++;
997 if (argp->pagelen >= PAGE_SIZE) {
NeilBrown3cc03b12006-10-04 02:15:47 -0700998 argp->rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 argp->pagelen -= PAGE_SIZE;
1000 } else {
NeilBrown3cc03b12006-10-04 02:15:47 -07001001 argp->rqstp->rq_vec[v].iov_len = argp->pagelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 argp->pagelen -= len;
1003 }
1004 }
Al Viro2ebbc012006-10-19 23:28:58 -07001005 argp->end = (__be32*) (argp->rqstp->rq_vec[v].iov_base + argp->rqstp->rq_vec[v].iov_len);
1006 argp->p = (__be32*) (argp->rqstp->rq_vec[v].iov_base + (XDR_QUADLEN(len) << 2));
NeilBrown3cc03b12006-10-04 02:15:47 -07001007 argp->rqstp->rq_vec[v].iov_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 write->wr_vlen = v+1;
1009
1010 DECODE_TAIL;
1011}
1012
Al Virob37ad282006-10-19 23:28:59 -07001013static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1015{
1016 DECODE_HEAD;
1017
1018 READ_BUF(12);
1019 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1020 READ32(rlockowner->rl_owner.len);
1021 READ_BUF(rlockowner->rl_owner.len);
1022 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1023
Andy Adamson60adfc52009-04-03 08:28:50 +03001024 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1025 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 DECODE_TAIL;
1027}
1028
Al Virob37ad282006-10-19 23:28:59 -07001029static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001030nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001031 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001032{
Mi Jinlong5afa0402010-11-09 09:39:23 +08001033 int dummy, tmp;
Andy Adamson0733d212009-04-03 08:28:01 +03001034 DECODE_HEAD;
1035
1036 READ_BUF(NFS4_VERIFIER_SIZE);
1037 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1038
1039 READ_BUF(4);
1040 READ32(exid->clname.len);
1041
1042 READ_BUF(exid->clname.len);
1043 SAVEMEM(exid->clname.data, exid->clname.len);
1044
1045 READ_BUF(4);
1046 READ32(exid->flags);
1047
1048 /* Ignore state_protect4_a */
1049 READ_BUF(4);
1050 READ32(exid->spa_how);
1051 switch (exid->spa_how) {
1052 case SP4_NONE:
1053 break;
1054 case SP4_MACH_CRED:
1055 /* spo_must_enforce */
1056 READ_BUF(4);
1057 READ32(dummy);
1058 READ_BUF(dummy * 4);
1059 p += dummy;
1060
1061 /* spo_must_allow */
1062 READ_BUF(4);
1063 READ32(dummy);
1064 READ_BUF(dummy * 4);
1065 p += dummy;
1066 break;
1067 case SP4_SSV:
1068 /* ssp_ops */
1069 READ_BUF(4);
1070 READ32(dummy);
1071 READ_BUF(dummy * 4);
1072 p += dummy;
1073
1074 READ_BUF(4);
1075 READ32(dummy);
1076 READ_BUF(dummy * 4);
1077 p += dummy;
1078
1079 /* ssp_hash_algs<> */
1080 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001081 READ32(tmp);
1082 while (tmp--) {
1083 READ_BUF(4);
1084 READ32(dummy);
1085 READ_BUF(dummy);
1086 p += XDR_QUADLEN(dummy);
1087 }
Andy Adamson0733d212009-04-03 08:28:01 +03001088
1089 /* ssp_encr_algs<> */
1090 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001091 READ32(tmp);
1092 while (tmp--) {
1093 READ_BUF(4);
1094 READ32(dummy);
1095 READ_BUF(dummy);
1096 p += XDR_QUADLEN(dummy);
1097 }
Andy Adamson0733d212009-04-03 08:28:01 +03001098
1099 /* ssp_window and ssp_num_gss_handles */
1100 READ_BUF(8);
1101 READ32(dummy);
1102 READ32(dummy);
1103 break;
1104 default:
1105 goto xdr_error;
1106 }
1107
1108 /* Ignore Implementation ID */
1109 READ_BUF(4); /* nfs_impl_id4 array length */
1110 READ32(dummy);
1111
1112 if (dummy > 1)
1113 goto xdr_error;
1114
1115 if (dummy == 1) {
1116 /* nii_domain */
1117 READ_BUF(4);
1118 READ32(dummy);
1119 READ_BUF(dummy);
1120 p += XDR_QUADLEN(dummy);
1121
1122 /* nii_name */
1123 READ_BUF(4);
1124 READ32(dummy);
1125 READ_BUF(dummy);
1126 p += XDR_QUADLEN(dummy);
1127
1128 /* nii_date */
1129 READ_BUF(12);
1130 p += 3;
1131 }
1132 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001133}
1134
1135static __be32
1136nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1137 struct nfsd4_create_session *sess)
1138{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001139 DECODE_HEAD;
1140
1141 u32 dummy;
1142 char *machine_name;
Mi Jinlong5a02ab72011-03-11 12:13:55 +08001143 int i;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001144 int nr_secflavs;
1145
1146 READ_BUF(16);
1147 COPYMEM(&sess->clientid, 8);
1148 READ32(sess->seqid);
1149 READ32(sess->flags);
1150
1151 /* Fore channel attrs */
1152 READ_BUF(28);
1153 READ32(dummy); /* headerpadsz is always 0 */
1154 READ32(sess->fore_channel.maxreq_sz);
1155 READ32(sess->fore_channel.maxresp_sz);
1156 READ32(sess->fore_channel.maxresp_cached);
1157 READ32(sess->fore_channel.maxops);
1158 READ32(sess->fore_channel.maxreqs);
1159 READ32(sess->fore_channel.nr_rdma_attrs);
1160 if (sess->fore_channel.nr_rdma_attrs == 1) {
1161 READ_BUF(4);
1162 READ32(sess->fore_channel.rdma_attrs);
1163 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1164 dprintk("Too many fore channel attr bitmaps!\n");
1165 goto xdr_error;
1166 }
1167
1168 /* Back channel attrs */
1169 READ_BUF(28);
1170 READ32(dummy); /* headerpadsz is always 0 */
1171 READ32(sess->back_channel.maxreq_sz);
1172 READ32(sess->back_channel.maxresp_sz);
1173 READ32(sess->back_channel.maxresp_cached);
1174 READ32(sess->back_channel.maxops);
1175 READ32(sess->back_channel.maxreqs);
1176 READ32(sess->back_channel.nr_rdma_attrs);
1177 if (sess->back_channel.nr_rdma_attrs == 1) {
1178 READ_BUF(4);
1179 READ32(sess->back_channel.rdma_attrs);
1180 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1181 dprintk("Too many back channel attr bitmaps!\n");
1182 goto xdr_error;
1183 }
1184
1185 READ_BUF(8);
1186 READ32(sess->callback_prog);
1187
1188 /* callback_sec_params4 */
1189 READ32(nr_secflavs);
1190 for (i = 0; i < nr_secflavs; ++i) {
1191 READ_BUF(4);
1192 READ32(dummy);
1193 switch (dummy) {
1194 case RPC_AUTH_NULL:
1195 /* Nothing to read */
1196 break;
1197 case RPC_AUTH_UNIX:
1198 READ_BUF(8);
1199 /* stamp */
1200 READ32(dummy);
1201
1202 /* machine name */
1203 READ32(dummy);
1204 READ_BUF(dummy);
1205 SAVEMEM(machine_name, dummy);
1206
1207 /* uid, gid */
1208 READ_BUF(8);
1209 READ32(sess->uid);
1210 READ32(sess->gid);
1211
1212 /* more gids */
1213 READ_BUF(4);
1214 READ32(dummy);
1215 READ_BUF(dummy * 4);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001216 break;
1217 case RPC_AUTH_GSS:
1218 dprintk("RPC_AUTH_GSS callback secflavor "
1219 "not supported!\n");
1220 READ_BUF(8);
1221 /* gcbp_service */
1222 READ32(dummy);
1223 /* gcbp_handle_from_server */
1224 READ32(dummy);
1225 READ_BUF(dummy);
1226 p += XDR_QUADLEN(dummy);
1227 /* gcbp_handle_from_client */
1228 READ_BUF(4);
1229 READ32(dummy);
1230 READ_BUF(dummy);
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001231 break;
1232 default:
1233 dprintk("Illegal callback secflavor\n");
1234 return nfserr_inval;
1235 }
1236 }
1237 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001238}
1239
1240static __be32
1241nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1242 struct nfsd4_destroy_session *destroy_session)
1243{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001244 DECODE_HEAD;
1245 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1246 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1247
1248 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001249}
1250
1251static __be32
1252nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1253 struct nfsd4_sequence *seq)
1254{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001255 DECODE_HEAD;
1256
1257 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1258 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1259 READ32(seq->seqid);
1260 READ32(seq->slotid);
1261 READ32(seq->maxslots);
1262 READ32(seq->cachethis);
1263
1264 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001265}
1266
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001267static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1268{
1269 DECODE_HEAD;
1270
1271 READ_BUF(4);
1272 READ32(rc->rca_one_fs);
1273
1274 DECODE_TAIL;
1275}
1276
Andy Adamson2db134e2009-04-03 08:27:55 +03001277static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001278nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1279{
1280 return nfs_ok;
1281}
1282
Benny Halevy3c375c62008-07-02 11:14:01 +03001283static __be32
1284nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1285{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001286 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001287}
1288
Benny Halevy347e0ad2008-07-02 11:13:41 +03001289typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1290
1291static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001292 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1293 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1294 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1295 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1296 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1297 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1298 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1299 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1300 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1301 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1302 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1303 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1304 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1305 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1306 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1307 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1308 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1309 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1310 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1311 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001312 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001313 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1314 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1315 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1316 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1317 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1318 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1319 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1320 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1321 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1322 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1323 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1324 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1325 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1326 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1327 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1328 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Benny Halevy347e0ad2008-07-02 11:13:41 +03001329};
1330
Andy Adamson2db134e2009-04-03 08:27:55 +03001331static nfsd4_dec nfsd41_dec_ops[] = {
Randy Dunlap9064caa2009-04-28 16:48:25 -07001332 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1333 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1334 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1335 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1336 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1337 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1338 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1339 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1340 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1341 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1342 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1343 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1344 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1345 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1346 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1347 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1348 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1349 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp,
1350 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1351 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
1352 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp,
1353 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1354 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1355 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1356 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1357 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1358 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1359 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp,
1360 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1361 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1362 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1363 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1364 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1365 [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp,
1366 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1367 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1368 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001369
1370 /* new operations for NFSv4.1 */
Randy Dunlap9064caa2009-04-28 16:48:25 -07001371 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001372 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_bind_conn_to_session,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001373 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1374 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1375 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
1376 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_notsupp,
1377 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1378 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1379 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1380 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1381 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1382 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001383 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001384 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1385 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
1386 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_notsupp,
1387 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1388 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001389 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Andy Adamson2db134e2009-04-03 08:27:55 +03001390};
1391
Benny Halevyf2feb962008-07-02 11:14:22 +03001392struct nfsd4_minorversion_ops {
1393 nfsd4_dec *decoders;
1394 int nops;
1395};
1396
1397static struct nfsd4_minorversion_ops nfsd4_minorversion[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001398 [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) },
Andy Adamson2db134e2009-04-03 08:27:55 +03001399 [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Benny Halevyf2feb962008-07-02 11:14:22 +03001400};
1401
Benny Halevy347e0ad2008-07-02 11:13:41 +03001402static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1404{
1405 DECODE_HEAD;
1406 struct nfsd4_op *op;
Benny Halevyf2feb962008-07-02 11:14:22 +03001407 struct nfsd4_minorversion_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 int i;
1409
1410 /*
1411 * XXX: According to spec, we should check the tag
1412 * for UTF-8 compliance. I'm postponing this for
1413 * now because it seems that some clients do use
1414 * binary tags.
1415 */
1416 READ_BUF(4);
1417 READ32(argp->taglen);
1418 READ_BUF(argp->taglen + 8);
1419 SAVEMEM(argp->tag, argp->taglen);
1420 READ32(argp->minorversion);
1421 READ32(argp->opcnt);
1422
1423 if (argp->taglen > NFSD4_MAX_TAGLEN)
1424 goto xdr_error;
1425 if (argp->opcnt > 100)
1426 goto xdr_error;
1427
Tobias Klausere8c96f82006-03-24 03:15:34 -08001428 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1430 if (!argp->ops) {
1431 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001432 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 goto xdr_error;
1434 }
1435 }
1436
Benny Halevyf2feb962008-07-02 11:14:22 +03001437 if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion))
Benny Halevy30cff1f2008-07-02 11:13:18 +03001438 argp->opcnt = 0;
1439
Benny Halevyf2feb962008-07-02 11:14:22 +03001440 ops = &nfsd4_minorversion[argp->minorversion];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 for (i = 0; i < argp->opcnt; i++) {
1442 op = &argp->ops[i];
1443 op->replay = NULL;
1444
1445 /*
1446 * We can't use READ_BUF() here because we need to handle
1447 * a missing opcode as an OP_WRITE + 1. So we need to check
1448 * to see if we're truly at the end of our buffer or if there
1449 * is another page we need to flip to.
1450 */
1451
1452 if (argp->p == argp->end) {
1453 if (argp->pagelen < 4) {
1454 /* There isn't an opcode still on the wire */
1455 op->opnum = OP_WRITE + 1;
1456 op->status = nfserr_bad_xdr;
1457 argp->opcnt = i+1;
1458 break;
1459 }
1460
1461 /*
1462 * False alarm. We just hit a page boundary, but there
1463 * is still data available. Move pointer across page
1464 * boundary. *snip from READ_BUF*
1465 */
1466 argp->p = page_address(argp->pagelist[0]);
1467 argp->pagelist++;
1468 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +10001469 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 argp->pagelen = 0;
1471 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +10001472 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 argp->pagelen -= PAGE_SIZE;
1474 }
1475 }
1476 op->opnum = ntohl(*argp->p++);
1477
Ricardo Labiagade3cab72009-12-11 20:03:27 -08001478 if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP)
Benny Halevyf2feb962008-07-02 11:14:22 +03001479 op->status = ops->decoders[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001480 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 op->opnum = OP_ILLEGAL;
1482 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484
1485 if (op->status) {
1486 argp->opcnt = i+1;
1487 break;
1488 }
1489 }
1490
1491 DECODE_TAIL;
1492}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494#define WRITE32(n) *p++ = htonl(n)
1495#define WRITE64(n) do { \
1496 *p++ = htonl((u32)((n) >> 32)); \
1497 *p++ = htonl((u32)(n)); \
1498} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001499#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1501 memcpy(p, ptr, nbytes); \
1502 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001503}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001504
1505static void write32(__be32 **p, u32 n)
1506{
1507 *(*p)++ = n;
1508}
1509
1510static void write64(__be32 **p, u64 n)
1511{
1512 write32(p, (u32)(n >> 32));
1513 write32(p, (u32)n);
1514}
1515
1516static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1517{
1518 if (IS_I_VERSION(inode)) {
1519 write64(p, inode->i_version);
1520 } else {
1521 write32(p, stat->ctime.tv_sec);
1522 write32(p, stat->ctime.tv_nsec);
1523 }
1524}
1525
1526static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1527{
1528 write32(p, c->atomic);
1529 if (c->change_supported) {
1530 write64(p, c->before_change);
1531 write64(p, c->after_change);
1532 } else {
1533 write32(p, c->before_ctime_sec);
1534 write32(p, c->before_ctime_nsec);
1535 write32(p, c->after_ctime_sec);
1536 write32(p, c->after_ctime_nsec);
1537 }
1538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540#define RESERVE_SPACE(nbytes) do { \
1541 p = resp->p; \
1542 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1543} while (0)
1544#define ADJUST_ARGS() resp->p = p
1545
1546/*
1547 * Header routine to setup seqid operation replay cache
1548 */
1549#define ENCODE_SEQID_OP_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -07001550 __be32 *save; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 \
1552 save = resp->p;
1553
1554/*
NeilBrown7fb64ce2005-07-07 17:59:20 -07001555 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1556 * is where sequence id's are incremented, and the replay cache is filled.
1557 * Note that we increment sequence id's here, at the last moment, so we're sure
1558 * we know whether the error to be returned is a sequence id mutating error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 */
1560
1561#define ENCODE_SEQID_OP_TAIL(stateowner) do { \
1562 if (seqid_mutating_err(nfserr) && stateowner) { \
NeilBrownbd9aac52005-07-07 17:59:19 -07001563 stateowner->so_seqid++; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 stateowner->so_replay.rp_status = nfserr; \
1565 stateowner->so_replay.rp_buflen = \
1566 (((char *)(resp)->p - (char *)save)); \
1567 memcpy(stateowner->so_replay.rp_buf, save, \
1568 stateowner->so_replay.rp_buflen); \
1569 } } while (0);
1570
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001571/* Encode as an array of strings the string given with components
Daniel Mack3ad2f3fb2010-02-03 08:01:28 +08001572 * separated @sep.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001573 */
Al Virob37ad282006-10-19 23:28:59 -07001574static __be32 nfsd4_encode_components(char sep, char *components,
Al Viro2ebbc012006-10-19 23:28:58 -07001575 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001576{
Al Viro2ebbc012006-10-19 23:28:58 -07001577 __be32 *p = *pp;
1578 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001579 int strlen, count=0;
1580 char *str, *end;
1581
1582 dprintk("nfsd4_encode_components(%s)\n", components);
1583 if ((*buflen -= 4) < 0)
1584 return nfserr_resource;
1585 WRITE32(0); /* We will fill this in with @count later */
1586 end = str = components;
1587 while (*end) {
1588 for (; *end && (*end != sep); end++)
1589 ; /* Point to end of component */
1590 strlen = end - str;
1591 if (strlen) {
1592 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1593 return nfserr_resource;
1594 WRITE32(strlen);
1595 WRITEMEM(str, strlen);
1596 count++;
1597 }
1598 else
1599 end++;
1600 str = end;
1601 }
1602 *pp = p;
1603 p = countp;
1604 WRITE32(count);
1605 return 0;
1606}
1607
1608/*
1609 * encode a location element of a fs_locations structure
1610 */
Al Virob37ad282006-10-19 23:28:59 -07001611static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001612 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001613{
Al Virob37ad282006-10-19 23:28:59 -07001614 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001615 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001616
1617 status = nfsd4_encode_components(':', location->hosts, &p, buflen);
1618 if (status)
1619 return status;
1620 status = nfsd4_encode_components('/', location->path, &p, buflen);
1621 if (status)
1622 return status;
1623 *pp = p;
1624 return 0;
1625}
1626
1627/*
1628 * Return the path to an export point in the pseudo filesystem namespace
1629 * Returned string is safe to use as long as the caller holds a reference
1630 * to @exp.
1631 */
Al Virob37ad282006-10-19 23:28:59 -07001632static char *nfsd4_path(struct svc_rqst *rqstp, struct svc_export *exp, __be32 *stat)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001633{
1634 struct svc_fh tmp_fh;
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001635 char *path = NULL, *rootpath;
1636 size_t rootlen;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001637
1638 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -07001639 *stat = exp_pseudoroot(rqstp, &tmp_fh);
Al Virocc45f012006-10-19 23:28:44 -07001640 if (*stat)
1641 return NULL;
Jan Blunck54775492008-02-14 19:38:39 -08001642 rootpath = tmp_fh.fh_export->ex_pathname;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001643
Jan Blunck54775492008-02-14 19:38:39 -08001644 path = exp->ex_pathname;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001645
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001646 rootlen = strlen(rootpath);
1647 if (strncmp(path, rootpath, rootlen)) {
Chuck Lever817cb9d2007-09-11 18:01:20 -04001648 dprintk("nfsd: fs_locations failed;"
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001649 "%s is not contained in %s\n", path, rootpath);
Al Virocc45f012006-10-19 23:28:44 -07001650 *stat = nfserr_notsupp;
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001651 path = NULL;
1652 goto out;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001653 }
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001654 path += rootlen;
1655out:
1656 fh_put(&tmp_fh);
1657 return path;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001658}
1659
1660/*
1661 * encode a fs_locations structure
1662 */
Al Virob37ad282006-10-19 23:28:59 -07001663static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001664 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001665 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001666{
Al Virob37ad282006-10-19 23:28:59 -07001667 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001668 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001669 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001670 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
Al Virocc45f012006-10-19 23:28:44 -07001671 char *root = nfsd4_path(rqstp, exp, &status);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001672
Al Virocc45f012006-10-19 23:28:44 -07001673 if (status)
1674 return status;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001675 status = nfsd4_encode_components('/', root, &p, buflen);
1676 if (status)
1677 return status;
1678 if ((*buflen -= 4) < 0)
1679 return nfserr_resource;
1680 WRITE32(fslocs->locations_count);
1681 for (i=0; i<fslocs->locations_count; i++) {
1682 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1683 &p, buflen);
1684 if (status)
1685 return status;
1686 }
1687 *pp = p;
1688 return 0;
1689}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691static u32 nfs4_ftypes[16] = {
1692 NF4BAD, NF4FIFO, NF4CHR, NF4BAD,
1693 NF4DIR, NF4BAD, NF4BLK, NF4BAD,
1694 NF4REG, NF4BAD, NF4LNK, NF4BAD,
1695 NF4SOCK, NF4BAD, NF4LNK, NF4BAD,
1696};
1697
Al Virob37ad282006-10-19 23:28:59 -07001698static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001700 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
1702 int status;
1703
1704 if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1705 return nfserr_resource;
1706 if (whotype != NFS4_ACL_WHO_NAMED)
1707 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
1708 else if (group)
1709 status = nfsd_map_gid_to_name(rqstp, id, (u8 *)(*p + 1));
1710 else
1711 status = nfsd_map_uid_to_name(rqstp, id, (u8 *)(*p + 1));
1712 if (status < 0)
1713 return nfserrno(status);
1714 *p = xdr_encode_opaque(*p, NULL, status);
1715 *buflen -= (XDR_QUADLEN(status) << 2) + 4;
1716 BUG_ON(*buflen < 0);
1717 return 0;
1718}
1719
Al Virob37ad282006-10-19 23:28:59 -07001720static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001721nfsd4_encode_user(struct svc_rqst *rqstp, uid_t uid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
1723 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, uid, 0, p, buflen);
1724}
1725
Al Virob37ad282006-10-19 23:28:59 -07001726static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001727nfsd4_encode_group(struct svc_rqst *rqstp, uid_t gid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
1729 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, gid, 1, p, buflen);
1730}
1731
Al Virob37ad282006-10-19 23:28:59 -07001732static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733nfsd4_encode_aclname(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001734 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
1736 return nfsd4_encode_name(rqstp, whotype, id, group, p, buflen);
1737}
1738
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001739#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1740 FATTR4_WORD0_RDATTR_ERROR)
1741#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1742
Al Virob37ad282006-10-19 23:28:59 -07001743static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001744{
1745 /* As per referral draft: */
1746 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
1747 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
1748 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
1749 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
1750 *rdattr_err = NFSERR_MOVED;
1751 else
1752 return nfserr_moved;
1753 }
1754 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
1755 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
1756 return 0;
1757}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759/*
1760 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1761 * ourselves.
1762 *
1763 * @countp is the buffer size in _words_; upon successful return this becomes
1764 * replaced with the number of words written.
1765 */
Al Virob37ad282006-10-19 23:28:59 -07001766__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001768 struct dentry *dentry, __be32 *buffer, int *countp, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001769 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
1771 u32 bmval0 = bmval[0];
1772 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03001773 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 struct kstat stat;
1775 struct svc_fh tempfh;
1776 struct kstatfs statfs;
1777 int buflen = *countp << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07001778 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 u32 dummy;
1780 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001781 u32 rdattr_err = 0;
Al Viro2ebbc012006-10-19 23:28:58 -07001782 __be32 *p = buffer;
Al Virob37ad282006-10-19 23:28:59 -07001783 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07001784 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 int aclsupport = 0;
1786 struct nfs4_acl *acl = NULL;
Andy Adamson7e705702009-04-03 08:29:11 +03001787 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1788 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001789 struct path path = {
1790 .mnt = exp->ex_path.mnt,
1791 .dentry = dentry,
1792 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03001795 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
1796 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
1797 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001799 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03001800 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001801 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
1802 if (status)
1803 goto out;
1804 }
1805
Jan Blunck54775492008-02-14 19:38:39 -08001806 err = vfs_getattr(exp->ex_path.mnt, dentry, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07001807 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04001809 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
1810 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
1812 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001813 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07001814 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 goto out_nfserr;
1816 }
1817 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
1818 fh_init(&tempfh, NFS4_FHSIZE);
1819 status = fh_compose(&tempfh, exp, dentry, NULL);
1820 if (status)
1821 goto out;
1822 fhp = &tempfh;
1823 }
1824 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
1825 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07001826 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
1827 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07001829 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07001831 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 status = nfserr_attrnotsupp;
1833 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07001834 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 goto out_nfserr;
1836 }
1837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001839 if (bmval2) {
1840 if ((buflen -= 16) < 0)
1841 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001842 WRITE32(3);
1843 WRITE32(bmval0);
1844 WRITE32(bmval1);
1845 WRITE32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001846 } else if (bmval1) {
1847 if ((buflen -= 12) < 0)
1848 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001849 WRITE32(2);
1850 WRITE32(bmval0);
1851 WRITE32(bmval1);
1852 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001853 if ((buflen -= 8) < 0)
1854 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001855 WRITE32(1);
1856 WRITE32(bmval0);
1857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 attrlenp = p++; /* to be backfilled later */
1859
1860 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03001861 u32 word0 = nfsd_suppattrs0(minorversion);
1862 u32 word1 = nfsd_suppattrs1(minorversion);
1863 u32 word2 = nfsd_suppattrs2(minorversion);
1864
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001865 if (!aclsupport)
1866 word0 &= ~FATTR4_WORD0_ACL;
Andy Adamson7e705702009-04-03 08:29:11 +03001867 if (!word2) {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001868 if ((buflen -= 12) < 0)
1869 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001870 WRITE32(2);
1871 WRITE32(word0);
1872 WRITE32(word1);
1873 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001874 if ((buflen -= 16) < 0)
1875 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001876 WRITE32(3);
1877 WRITE32(word0);
1878 WRITE32(word1);
1879 WRITE32(word2);
1880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882 if (bmval0 & FATTR4_WORD0_TYPE) {
1883 if ((buflen -= 4) < 0)
1884 goto out_resource;
1885 dummy = nfs4_ftypes[(stat.mode & S_IFMT) >> 12];
1886 if (dummy == NF4BAD)
1887 goto out_serverfault;
1888 WRITE32(dummy);
1889 }
1890 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
1891 if ((buflen -= 4) < 0)
1892 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07001893 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07001894 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07001895 else
NeilBrowne34ac862005-07-07 17:59:30 -07001896 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
1898 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if ((buflen -= 8) < 0)
1900 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001901 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
1903 if (bmval0 & FATTR4_WORD0_SIZE) {
1904 if ((buflen -= 8) < 0)
1905 goto out_resource;
1906 WRITE64(stat.size);
1907 }
1908 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
1909 if ((buflen -= 4) < 0)
1910 goto out_resource;
1911 WRITE32(1);
1912 }
1913 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
1914 if ((buflen -= 4) < 0)
1915 goto out_resource;
1916 WRITE32(1);
1917 }
1918 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
1919 if ((buflen -= 4) < 0)
1920 goto out_resource;
1921 WRITE32(0);
1922 }
1923 if (bmval0 & FATTR4_WORD0_FSID) {
1924 if ((buflen -= 16) < 0)
1925 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001926 if (exp->ex_fslocs.migrated) {
1927 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
1928 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08001929 } else switch(fsid_source(fhp)) {
1930 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 WRITE64((u64)exp->ex_fsid);
1932 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08001933 break;
1934 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 WRITE32(0);
1936 WRITE32(MAJOR(stat.dev));
1937 WRITE32(0);
1938 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08001939 break;
1940 case FSIDSOURCE_UUID:
1941 WRITEMEM(exp->ex_uuid, 16);
1942 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944 }
1945 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
1946 if ((buflen -= 4) < 0)
1947 goto out_resource;
1948 WRITE32(0);
1949 }
1950 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
1951 if ((buflen -= 4) < 0)
1952 goto out_resource;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05001953 WRITE32(nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
1955 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
1956 if ((buflen -= 4) < 0)
1957 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001958 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960 if (bmval0 & FATTR4_WORD0_ACL) {
1961 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 if (acl == NULL) {
1964 if ((buflen -= 4) < 0)
1965 goto out_resource;
1966
1967 WRITE32(0);
1968 goto out_acl;
1969 }
1970 if ((buflen -= 4) < 0)
1971 goto out_resource;
1972 WRITE32(acl->naces);
1973
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08001974 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 if ((buflen -= 4*3) < 0)
1976 goto out_resource;
1977 WRITE32(ace->type);
1978 WRITE32(ace->flag);
1979 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
1980 status = nfsd4_encode_aclname(rqstp, ace->whotype,
1981 ace->who, ace->flag & NFS4_ACE_IDENTIFIER_GROUP,
1982 &p, &buflen);
1983 if (status == nfserr_resource)
1984 goto out_resource;
1985 if (status)
1986 goto out;
1987 }
1988 }
1989out_acl:
1990 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
1991 if ((buflen -= 4) < 0)
1992 goto out_resource;
1993 WRITE32(aclsupport ?
1994 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
1995 }
1996 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
1997 if ((buflen -= 4) < 0)
1998 goto out_resource;
1999 WRITE32(1);
2000 }
2001 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
2002 if ((buflen -= 4) < 0)
2003 goto out_resource;
2004 WRITE32(1);
2005 }
2006 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
2007 if ((buflen -= 4) < 0)
2008 goto out_resource;
2009 WRITE32(1);
2010 }
2011 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2012 if ((buflen -= 4) < 0)
2013 goto out_resource;
2014 WRITE32(1);
2015 }
2016 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2017 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2018 if (buflen < 0)
2019 goto out_resource;
2020 WRITE32(fhp->fh_handle.fh_size);
2021 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2022 }
2023 if (bmval0 & FATTR4_WORD0_FILEID) {
2024 if ((buflen -= 8) < 0)
2025 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002026 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
2028 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2029 if ((buflen -= 8) < 0)
2030 goto out_resource;
2031 WRITE64((u64) statfs.f_ffree);
2032 }
2033 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2034 if ((buflen -= 8) < 0)
2035 goto out_resource;
2036 WRITE64((u64) statfs.f_ffree);
2037 }
2038 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2039 if ((buflen -= 8) < 0)
2040 goto out_resource;
2041 WRITE64((u64) statfs.f_files);
2042 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002043 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2044 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
2045 if (status == nfserr_resource)
2046 goto out_resource;
2047 if (status)
2048 goto out;
2049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2051 if ((buflen -= 4) < 0)
2052 goto out_resource;
2053 WRITE32(1);
2054 }
2055 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2056 if ((buflen -= 8) < 0)
2057 goto out_resource;
2058 WRITE64(~(u64)0);
2059 }
2060 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2061 if ((buflen -= 4) < 0)
2062 goto out_resource;
2063 WRITE32(255);
2064 }
2065 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2066 if ((buflen -= 4) < 0)
2067 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002068 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
2070 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2071 if ((buflen -= 8) < 0)
2072 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002073 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
2075 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2076 if ((buflen -= 8) < 0)
2077 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002078 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 }
2080 if (bmval1 & FATTR4_WORD1_MODE) {
2081 if ((buflen -= 4) < 0)
2082 goto out_resource;
2083 WRITE32(stat.mode & S_IALLUGO);
2084 }
2085 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2086 if ((buflen -= 4) < 0)
2087 goto out_resource;
2088 WRITE32(1);
2089 }
2090 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2091 if ((buflen -= 4) < 0)
2092 goto out_resource;
2093 WRITE32(stat.nlink);
2094 }
2095 if (bmval1 & FATTR4_WORD1_OWNER) {
2096 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
2097 if (status == nfserr_resource)
2098 goto out_resource;
2099 if (status)
2100 goto out;
2101 }
2102 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2103 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
2104 if (status == nfserr_resource)
2105 goto out_resource;
2106 if (status)
2107 goto out;
2108 }
2109 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2110 if ((buflen -= 8) < 0)
2111 goto out_resource;
2112 WRITE32((u32) MAJOR(stat.rdev));
2113 WRITE32((u32) MINOR(stat.rdev));
2114 }
2115 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2116 if ((buflen -= 8) < 0)
2117 goto out_resource;
2118 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2119 WRITE64(dummy64);
2120 }
2121 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2122 if ((buflen -= 8) < 0)
2123 goto out_resource;
2124 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2125 WRITE64(dummy64);
2126 }
2127 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2128 if ((buflen -= 8) < 0)
2129 goto out_resource;
2130 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2131 WRITE64(dummy64);
2132 }
2133 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2134 if ((buflen -= 8) < 0)
2135 goto out_resource;
2136 dummy64 = (u64)stat.blocks << 9;
2137 WRITE64(dummy64);
2138 }
2139 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2140 if ((buflen -= 12) < 0)
2141 goto out_resource;
2142 WRITE32(0);
2143 WRITE32(stat.atime.tv_sec);
2144 WRITE32(stat.atime.tv_nsec);
2145 }
2146 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2147 if ((buflen -= 12) < 0)
2148 goto out_resource;
2149 WRITE32(0);
2150 WRITE32(1);
2151 WRITE32(0);
2152 }
2153 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2154 if ((buflen -= 12) < 0)
2155 goto out_resource;
2156 WRITE32(0);
2157 WRITE32(stat.ctime.tv_sec);
2158 WRITE32(stat.ctime.tv_nsec);
2159 }
2160 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2161 if ((buflen -= 12) < 0)
2162 goto out_resource;
2163 WRITE32(0);
2164 WRITE32(stat.mtime.tv_sec);
2165 WRITE32(stat.mtime.tv_nsec);
2166 }
2167 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if ((buflen -= 8) < 0)
2169 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002170 /*
2171 * Get parent's attributes if not ignoring crossmount
2172 * and this is the root of a cross-mounted filesystem.
2173 */
2174 if (ignore_crossmnt == 0 &&
Al Viro462d6052010-01-30 16:11:21 -05002175 dentry == exp->ex_path.mnt->mnt_root) {
2176 struct path path = exp->ex_path;
2177 path_get(&path);
2178 while (follow_up(&path)) {
2179 if (path.dentry != path.mnt->mnt_root)
2180 break;
2181 }
2182 err = vfs_getattr(path.mnt, path.dentry, &stat);
2183 path_put(&path);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002184 if (err)
2185 goto out_nfserr;
2186 }
2187 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002189 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
2190 WRITE32(3);
2191 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2192 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2193 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2194 }
Andy Adamson7e705702009-04-03 08:29:11 +03002195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2197 *countp = p - buffer;
2198 status = nfs_ok;
2199
2200out:
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002201 kfree(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (fhp == &tempfh)
2203 fh_put(&tempfh);
2204 return status;
2205out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002206 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 goto out;
2208out_resource:
2209 *countp = 0;
2210 status = nfserr_resource;
2211 goto out;
2212out_serverfault:
2213 status = nfserr_serverfault;
2214 goto out;
2215}
2216
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002217static inline int attributes_need_mount(u32 *bmval)
2218{
2219 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2220 return 1;
2221 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2222 return 1;
2223 return 0;
2224}
2225
Al Virob37ad282006-10-19 23:28:59 -07002226static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
Al Viro2ebbc012006-10-19 23:28:58 -07002228 const char *name, int namlen, __be32 *p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
2230 struct svc_export *exp = cd->rd_fhp->fh_export;
2231 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002232 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002233 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2236 if (IS_ERR(dentry))
2237 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002238 if (!dentry->d_inode) {
2239 /*
2240 * nfsd_buffered_readdir drops the i_mutex between
2241 * readdir and calling this callback, leaving a window
2242 * where this directory entry could have gone away.
2243 */
2244 dput(dentry);
2245 return nfserr_noent;
2246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002249 /*
2250 * In the case of a mountpoint, the client may be asking for
2251 * attributes that are only properties of the underlying filesystem
2252 * as opposed to the cross-mounted file system. In such a case,
2253 * we will not follow the cross mount and will fill the attribtutes
2254 * directly from the mountpoint dentry.
2255 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002256 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002257 int err;
2258
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002259 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2260 && !attributes_need_mount(cd->rd_bmval)) {
2261 ignore_crossmnt = 1;
2262 goto out_encode;
2263 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002264 /*
2265 * Why the heck aren't we just using nfsd_lookup??
2266 * Different "."/".." handling? Something else?
2267 * At least, add a comment here to explain....
2268 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002269 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2270 if (err) {
2271 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 goto out_put;
2273 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002274 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2275 if (nfserr)
2276 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002279out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002281 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282out_put:
2283 dput(dentry);
2284 exp_put(exp);
2285 return nfserr;
2286}
2287
Al Viro2ebbc012006-10-19 23:28:58 -07002288static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002289nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
Al Viro2ebbc012006-10-19 23:28:58 -07002291 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 if (buflen < 6)
2294 return NULL;
2295 *p++ = htonl(2);
2296 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2297 *p++ = htonl(0); /* bmval1 */
2298
2299 attrlenp = p++;
2300 *p++ = nfserr; /* no htonl */
2301 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2302 return p;
2303}
2304
2305static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002306nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2307 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002309 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2311 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002312 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002313 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002314 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
2316 /* In nfsv4, "." and ".." never make it onto the wire.. */
2317 if (name && isdotent(name, namlen)) {
2318 cd->common.err = nfs_ok;
2319 return 0;
2320 }
2321
2322 if (cd->offset)
2323 xdr_encode_hyper(cd->offset, (u64) offset);
2324
2325 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2326 if (buflen < 0)
2327 goto fail;
2328
2329 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002330 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2332 p = xdr_encode_array(p, name, namlen); /* name length & name */
2333
2334 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, p, &buflen);
2335 switch (nfserr) {
2336 case nfs_ok:
2337 p += buflen;
2338 break;
2339 case nfserr_resource:
2340 nfserr = nfserr_toosmall;
2341 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002342 case nfserr_noent:
2343 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 default:
2345 /*
2346 * If the client requested the RDATTR_ERROR attribute,
2347 * we stuff the error code into this attribute
2348 * and continue. If this attribute was not requested,
2349 * then in accordance with the spec, we fail the
2350 * entire READDIR operation(!)
2351 */
2352 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2353 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002355 if (p == NULL) {
2356 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 }
2360 cd->buflen -= (p - cd->buffer);
2361 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002362 cd->offset = cookiep;
2363skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 cd->common.err = nfs_ok;
2365 return 0;
2366fail:
2367 cd->common.err = nfserr;
2368 return -EINVAL;
2369}
2370
Benny Halevye2f282b2008-08-12 20:45:07 +03002371static void
2372nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2373{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002374 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002375
2376 RESERVE_SPACE(sizeof(stateid_t));
2377 WRITE32(sid->si_generation);
2378 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2379 ADJUST_ARGS();
2380}
2381
Benny Halevy695e12f2008-07-04 14:38:33 +03002382static __be32
Al Virob37ad282006-10-19 23:28:59 -07002383nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002385 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 if (!nfserr) {
2388 RESERVE_SPACE(8);
2389 WRITE32(access->ac_supported);
2390 WRITE32(access->ac_resp_access);
2391 ADJUST_ARGS();
2392 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002393 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394}
2395
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04002396static __be32 nfsd4_encode_bind_conn_to_session(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_bind_conn_to_session *bcts)
2397{
2398 __be32 *p;
2399
2400 if (!nfserr) {
2401 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 8);
2402 WRITEMEM(bcts->sessionid.data, NFS4_MAX_SESSIONID_LEN);
2403 WRITE32(bcts->dir);
2404 /* XXX: ? */
2405 WRITE32(0);
2406 ADJUST_ARGS();
2407 }
2408 return nfserr;
2409}
2410
Benny Halevy695e12f2008-07-04 14:38:33 +03002411static __be32
Al Virob37ad282006-10-19 23:28:59 -07002412nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
2414 ENCODE_SEQID_OP_HEAD;
2415
Benny Halevye2f282b2008-08-12 20:45:07 +03002416 if (!nfserr)
2417 nfsd4_encode_stateid(resp, &close->cl_stateid);
2418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 ENCODE_SEQID_OP_TAIL(close->cl_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002420 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421}
2422
2423
Benny Halevy695e12f2008-07-04 14:38:33 +03002424static __be32
Al Virob37ad282006-10-19 23:28:59 -07002425nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002427 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429 if (!nfserr) {
2430 RESERVE_SPACE(8);
2431 WRITEMEM(commit->co_verf.data, 8);
2432 ADJUST_ARGS();
2433 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002434 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435}
2436
Benny Halevy695e12f2008-07-04 14:38:33 +03002437static __be32
Al Virob37ad282006-10-19 23:28:59 -07002438nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002440 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442 if (!nfserr) {
2443 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002444 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 WRITE32(2);
2446 WRITE32(create->cr_bmval[0]);
2447 WRITE32(create->cr_bmval[1]);
2448 ADJUST_ARGS();
2449 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002450 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451}
2452
Al Virob37ad282006-10-19 23:28:59 -07002453static __be32
2454nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
2456 struct svc_fh *fhp = getattr->ga_fhp;
2457 int buflen;
2458
2459 if (nfserr)
2460 return nfserr;
2461
2462 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2463 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
2464 resp->p, &buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002465 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 if (!nfserr)
2467 resp->p += buflen;
2468 return nfserr;
2469}
2470
Benny Halevy695e12f2008-07-04 14:38:33 +03002471static __be32
2472nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
Benny Halevy695e12f2008-07-04 14:38:33 +03002474 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002476 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478 if (!nfserr) {
2479 len = fhp->fh_handle.fh_size;
2480 RESERVE_SPACE(len + 4);
2481 WRITE32(len);
2482 WRITEMEM(&fhp->fh_handle.fh_base, len);
2483 ADJUST_ARGS();
2484 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002485 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
2488/*
2489* Including all fields other than the name, a LOCK4denied structure requires
2490* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2491*/
2492static void
2493nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2494{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002495 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 RESERVE_SPACE(32 + XDR_LEN(ld->ld_sop ? ld->ld_sop->so_owner.len : 0));
2498 WRITE64(ld->ld_start);
2499 WRITE64(ld->ld_length);
2500 WRITE32(ld->ld_type);
2501 if (ld->ld_sop) {
2502 WRITEMEM(&ld->ld_clientid, 8);
2503 WRITE32(ld->ld_sop->so_owner.len);
2504 WRITEMEM(ld->ld_sop->so_owner.data, ld->ld_sop->so_owner.len);
2505 kref_put(&ld->ld_sop->so_ref, nfs4_free_stateowner);
2506 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2507 WRITE64((u64)0); /* clientid */
2508 WRITE32(0); /* length of owner name */
2509 }
2510 ADJUST_ARGS();
2511}
2512
Benny Halevy695e12f2008-07-04 14:38:33 +03002513static __be32
Al Virob37ad282006-10-19 23:28:59 -07002514nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 ENCODE_SEQID_OP_HEAD;
2517
Benny Halevye2f282b2008-08-12 20:45:07 +03002518 if (!nfserr)
2519 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2520 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2522
J. Bruce Fields3a655882006-01-18 17:43:19 -08002523 ENCODE_SEQID_OP_TAIL(lock->lk_replay_owner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002524 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
2526
Benny Halevy695e12f2008-07-04 14:38:33 +03002527static __be32
Al Virob37ad282006-10-19 23:28:59 -07002528nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
2530 if (nfserr == nfserr_denied)
2531 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002532 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533}
2534
Benny Halevy695e12f2008-07-04 14:38:33 +03002535static __be32
Al Virob37ad282006-10-19 23:28:59 -07002536nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
2538 ENCODE_SEQID_OP_HEAD;
2539
Benny Halevye2f282b2008-08-12 20:45:07 +03002540 if (!nfserr)
2541 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 ENCODE_SEQID_OP_TAIL(locku->lu_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002544 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
2546
2547
Benny Halevy695e12f2008-07-04 14:38:33 +03002548static __be32
Al Virob37ad282006-10-19 23:28:59 -07002549nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002551 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
2553 if (!nfserr) {
2554 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002555 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 ADJUST_ARGS();
2557 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002558 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559}
2560
2561
Benny Halevy695e12f2008-07-04 14:38:33 +03002562static __be32
Al Virob37ad282006-10-19 23:28:59 -07002563nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002565 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 ENCODE_SEQID_OP_HEAD;
2567
2568 if (nfserr)
2569 goto out;
2570
Benny Halevye2f282b2008-08-12 20:45:07 +03002571 nfsd4_encode_stateid(resp, &open->op_stateid);
2572 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002573 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 WRITE32(open->op_rflags);
2575 WRITE32(2);
2576 WRITE32(open->op_bmval[0]);
2577 WRITE32(open->op_bmval[1]);
2578 WRITE32(open->op_delegate_type);
2579 ADJUST_ARGS();
2580
2581 switch (open->op_delegate_type) {
2582 case NFS4_OPEN_DELEGATE_NONE:
2583 break;
2584 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002585 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2586 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002587 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
2589 /*
2590 * TODO: ACE's in delegations
2591 */
2592 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2593 WRITE32(0);
2594 WRITE32(0);
2595 WRITE32(0); /* XXX: is NULL principal ok? */
2596 ADJUST_ARGS();
2597 break;
2598 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002599 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2600 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 WRITE32(0);
2602
2603 /*
2604 * TODO: space_limit's in delegations
2605 */
2606 WRITE32(NFS4_LIMIT_SIZE);
2607 WRITE32(~(u32)0);
2608 WRITE32(~(u32)0);
2609
2610 /*
2611 * TODO: ACE's in delegations
2612 */
2613 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2614 WRITE32(0);
2615 WRITE32(0);
2616 WRITE32(0); /* XXX: is NULL principal ok? */
2617 ADJUST_ARGS();
2618 break;
2619 default:
2620 BUG();
2621 }
2622 /* XXX save filehandle here */
2623out:
2624 ENCODE_SEQID_OP_TAIL(open->op_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002625 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626}
2627
Benny Halevy695e12f2008-07-04 14:38:33 +03002628static __be32
Al Virob37ad282006-10-19 23:28:59 -07002629nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
2631 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002632
2633 if (!nfserr)
2634 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 ENCODE_SEQID_OP_TAIL(oc->oc_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002637 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
Benny Halevy695e12f2008-07-04 14:38:33 +03002640static __be32
Al Virob37ad282006-10-19 23:28:59 -07002641nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
2643 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002644
2645 if (!nfserr)
2646 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
2648 ENCODE_SEQID_OP_TAIL(od->od_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002649 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650}
2651
Al Virob37ad282006-10-19 23:28:59 -07002652static __be32
2653nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002654 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
2656 u32 eof;
2657 int v, pn;
2658 unsigned long maxcount;
2659 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002660 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
2662 if (nfserr)
2663 return nfserr;
2664 if (resp->xbuf->page_len)
2665 return nfserr_resource;
2666
2667 RESERVE_SPACE(8); /* eof flag and byte count */
2668
Greg Banks7adae482006-10-04 02:15:47 -07002669 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 if (maxcount > read->rd_length)
2671 maxcount = read->rd_length;
2672
2673 len = maxcount;
2674 v = 0;
2675 while (len > 0) {
NeilBrown44524352006-10-04 02:15:46 -07002676 pn = resp->rqstp->rq_resused++;
NeilBrown3cc03b12006-10-04 02:15:47 -07002677 resp->rqstp->rq_vec[v].iov_base =
NeilBrown44524352006-10-04 02:15:46 -07002678 page_address(resp->rqstp->rq_respages[pn]);
NeilBrown3cc03b12006-10-04 02:15:47 -07002679 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002680 len < PAGE_SIZE ? len : PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 v++;
2682 len -= PAGE_SIZE;
2683 }
2684 read->rd_vlen = v;
2685
J. Bruce Fields039a87c2010-07-30 11:33:32 -04002686 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002687 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 &maxcount);
2689
2690 if (nfserr == nfserr_symlink)
2691 nfserr = nfserr_inval;
2692 if (nfserr)
2693 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002694 eof = (read->rd_offset + maxcount >=
2695 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 WRITE32(eof);
2698 WRITE32(maxcount);
2699 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002700 resp->xbuf->head[0].iov_len = (char*)p
2701 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 resp->xbuf->page_len = maxcount;
2703
NeilBrown6ed6dec2006-04-10 22:55:32 -07002704 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002705 resp->xbuf->tail[0].iov_base = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002708 RESERVE_SPACE(4);
2709 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 resp->xbuf->tail[0].iov_base += maxcount&3;
2711 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002712 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 }
2714 return 0;
2715}
2716
Al Virob37ad282006-10-19 23:28:59 -07002717static __be32
2718nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719{
2720 int maxcount;
2721 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002722 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 if (nfserr)
2725 return nfserr;
2726 if (resp->xbuf->page_len)
2727 return nfserr_resource;
2728
NeilBrown44524352006-10-04 02:15:46 -07002729 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
2731 maxcount = PAGE_SIZE;
2732 RESERVE_SPACE(4);
2733
2734 /*
2735 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2736 * if they would overflow the buffer. Is this kosher in NFSv4? If
2737 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2738 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2739 */
2740 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
2741 if (nfserr == nfserr_isdir)
2742 return nfserr_inval;
2743 if (nfserr)
2744 return nfserr;
2745
2746 WRITE32(maxcount);
2747 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002748 resp->xbuf->head[0].iov_len = (char*)p
2749 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 resp->xbuf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07002751
2752 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002753 resp->xbuf->tail[0].iov_base = p;
2754 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002756 RESERVE_SPACE(4);
2757 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 resp->xbuf->tail[0].iov_base += maxcount&3;
2759 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002760 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 }
2762 return 0;
2763}
2764
Al Virob37ad282006-10-19 23:28:59 -07002765static __be32
2766nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767{
2768 int maxcount;
2769 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07002770 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002771 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
2773 if (nfserr)
2774 return nfserr;
2775 if (resp->xbuf->page_len)
2776 return nfserr_resource;
2777
2778 RESERVE_SPACE(8); /* verifier */
2779 savep = p;
2780
2781 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2782 WRITE32(0);
2783 WRITE32(0);
2784 ADJUST_ARGS();
2785 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002786 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
2788 maxcount = PAGE_SIZE;
2789 if (maxcount > readdir->rd_maxcount)
2790 maxcount = readdir->rd_maxcount;
2791
2792 /*
2793 * Convert from bytes to words, account for the two words already
2794 * written, make sure to leave two words at the end for the next
2795 * pointer and eof field.
2796 */
2797 maxcount = (maxcount >> 2) - 4;
2798 if (maxcount < 0) {
2799 nfserr = nfserr_toosmall;
2800 goto err_no_verf;
2801 }
2802
NeilBrown44524352006-10-04 02:15:46 -07002803 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 readdir->common.err = 0;
2805 readdir->buflen = maxcount;
2806 readdir->buffer = page;
2807 readdir->offset = NULL;
2808
2809 offset = readdir->rd_cookie;
2810 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
2811 &offset,
2812 &readdir->common, nfsd4_encode_dirent);
2813 if (nfserr == nfs_ok &&
2814 readdir->common.err == nfserr_toosmall &&
2815 readdir->buffer == page)
2816 nfserr = nfserr_toosmall;
2817 if (nfserr == nfserr_symlink)
2818 nfserr = nfserr_notdir;
2819 if (nfserr)
2820 goto err_no_verf;
2821
2822 if (readdir->offset)
2823 xdr_encode_hyper(readdir->offset, offset);
2824
2825 p = readdir->buffer;
2826 *p++ = 0; /* no more entries */
2827 *p++ = htonl(readdir->common.err == nfserr_eof);
NeilBrown44524352006-10-04 02:15:46 -07002828 resp->xbuf->page_len = ((char*)p) - (char*)page_address(
2829 resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
NeilBrownbb6e8a92006-04-10 22:55:33 -07002831 /* Use rest of head for padding and remaining ops: */
NeilBrownbb6e8a92006-04-10 22:55:33 -07002832 resp->xbuf->tail[0].iov_base = tailbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 resp->xbuf->tail[0].iov_len = 0;
2834 resp->p = resp->xbuf->tail[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002835 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
2837 return 0;
2838err_no_verf:
2839 p = savep;
2840 ADJUST_ARGS();
2841 return nfserr;
2842}
2843
Benny Halevy695e12f2008-07-04 14:38:33 +03002844static __be32
Al Virob37ad282006-10-19 23:28:59 -07002845nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002847 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 if (!nfserr) {
2850 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002851 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 ADJUST_ARGS();
2853 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002854 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855}
2856
Benny Halevy695e12f2008-07-04 14:38:33 +03002857static __be32
Al Virob37ad282006-10-19 23:28:59 -07002858nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002860 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
2862 if (!nfserr) {
2863 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002864 write_cinfo(&p, &rename->rn_sinfo);
2865 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 ADJUST_ARGS();
2867 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002868 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869}
2870
Benny Halevy695e12f2008-07-04 14:38:33 +03002871static __be32
Mi Jinlong22b6dee2010-12-27 14:29:57 +08002872nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
2873 __be32 nfserr,struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07002874{
2875 int i = 0;
J. Bruce Fields4796f452007-07-17 04:04:51 -07002876 u32 nflavs;
2877 struct exp_flavor_info *flavs;
2878 struct exp_flavor_info def_flavs[2];
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002879 __be32 *p;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002880
2881 if (nfserr)
2882 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07002883 if (exp->ex_nflavors) {
2884 flavs = exp->ex_flavors;
2885 nflavs = exp->ex_nflavors;
2886 } else { /* Handling of some defaults in absence of real secinfo: */
2887 flavs = def_flavs;
2888 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
2889 nflavs = 2;
2890 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
2891 flavs[1].pseudoflavor = RPC_AUTH_NULL;
2892 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
2893 nflavs = 1;
2894 flavs[0].pseudoflavor
2895 = svcauth_gss_flavor(exp->ex_client);
2896 } else {
2897 nflavs = 1;
2898 flavs[0].pseudoflavor
2899 = exp->ex_client->flavour->flavour;
2900 }
2901 }
2902
Andy Adamsondcb488a32007-07-17 04:04:51 -07002903 RESERVE_SPACE(4);
J. Bruce Fields4796f452007-07-17 04:04:51 -07002904 WRITE32(nflavs);
Andy Adamsondcb488a32007-07-17 04:04:51 -07002905 ADJUST_ARGS();
J. Bruce Fields4796f452007-07-17 04:04:51 -07002906 for (i = 0; i < nflavs; i++) {
2907 u32 flav = flavs[i].pseudoflavor;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002908 struct gss_api_mech *gm = gss_mech_get_by_pseudoflavor(flav);
2909
2910 if (gm) {
2911 RESERVE_SPACE(4);
2912 WRITE32(RPC_AUTH_GSS);
2913 ADJUST_ARGS();
2914 RESERVE_SPACE(4 + gm->gm_oid.len);
2915 WRITE32(gm->gm_oid.len);
2916 WRITEMEM(gm->gm_oid.data, gm->gm_oid.len);
2917 ADJUST_ARGS();
2918 RESERVE_SPACE(4);
2919 WRITE32(0); /* qop */
2920 ADJUST_ARGS();
2921 RESERVE_SPACE(4);
2922 WRITE32(gss_pseudoflavor_to_service(gm, flav));
2923 ADJUST_ARGS();
2924 gss_mech_put(gm);
2925 } else {
2926 RESERVE_SPACE(4);
2927 WRITE32(flav);
2928 ADJUST_ARGS();
2929 }
2930 }
2931out:
2932 if (exp)
2933 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03002934 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002935}
2936
Mi Jinlong22b6dee2010-12-27 14:29:57 +08002937static __be32
2938nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
2939 struct nfsd4_secinfo *secinfo)
2940{
2941 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
2942}
2943
2944static __be32
2945nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
2946 struct nfsd4_secinfo_no_name *secinfo)
2947{
2948 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
2949}
2950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951/*
2952 * The SETATTR encode routine is special -- it always encodes a bitmap,
2953 * regardless of the error status.
2954 */
Benny Halevy695e12f2008-07-04 14:38:33 +03002955static __be32
Al Virob37ad282006-10-19 23:28:59 -07002956nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002958 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960 RESERVE_SPACE(12);
2961 if (nfserr) {
2962 WRITE32(2);
2963 WRITE32(0);
2964 WRITE32(0);
2965 }
2966 else {
2967 WRITE32(2);
2968 WRITE32(setattr->sa_bmval[0]);
2969 WRITE32(setattr->sa_bmval[1]);
2970 }
2971 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03002972 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973}
2974
Benny Halevy695e12f2008-07-04 14:38:33 +03002975static __be32
Al Virob37ad282006-10-19 23:28:59 -07002976nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002978 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
2980 if (!nfserr) {
2981 RESERVE_SPACE(8 + sizeof(nfs4_verifier));
2982 WRITEMEM(&scd->se_clientid, 8);
2983 WRITEMEM(&scd->se_confirm, sizeof(nfs4_verifier));
2984 ADJUST_ARGS();
2985 }
2986 else if (nfserr == nfserr_clid_inuse) {
2987 RESERVE_SPACE(8);
2988 WRITE32(0);
2989 WRITE32(0);
2990 ADJUST_ARGS();
2991 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002992 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993}
2994
Benny Halevy695e12f2008-07-04 14:38:33 +03002995static __be32
Al Virob37ad282006-10-19 23:28:59 -07002996nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002998 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
3000 if (!nfserr) {
3001 RESERVE_SPACE(16);
3002 WRITE32(write->wr_bytes_written);
3003 WRITE32(write->wr_how_written);
3004 WRITEMEM(write->wr_verifier.data, 8);
3005 ADJUST_ARGS();
3006 }
Benny Halevy695e12f2008-07-04 14:38:33 +03003007 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008}
3009
Benny Halevy695e12f2008-07-04 14:38:33 +03003010static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03003011nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, int nfserr,
3012 struct nfsd4_exchange_id *exid)
3013{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003014 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03003015 char *major_id;
3016 char *server_scope;
3017 int major_id_sz;
3018 int server_scope_sz;
3019 uint64_t minor_id = 0;
3020
3021 if (nfserr)
3022 return nfserr;
3023
3024 major_id = utsname()->nodename;
3025 major_id_sz = strlen(major_id);
3026 server_scope = utsname()->nodename;
3027 server_scope_sz = strlen(server_scope);
3028
3029 RESERVE_SPACE(
3030 8 /* eir_clientid */ +
3031 4 /* eir_sequenceid */ +
3032 4 /* eir_flags */ +
3033 4 /* spr_how (SP4_NONE) */ +
3034 8 /* so_minor_id */ +
3035 4 /* so_major_id.len */ +
3036 (XDR_QUADLEN(major_id_sz) * 4) +
3037 4 /* eir_server_scope.len */ +
3038 (XDR_QUADLEN(server_scope_sz) * 4) +
3039 4 /* eir_server_impl_id.count (0) */);
3040
3041 WRITEMEM(&exid->clientid, 8);
3042 WRITE32(exid->seqid);
3043 WRITE32(exid->flags);
3044
3045 /* state_protect4_r. Currently only support SP4_NONE */
3046 BUG_ON(exid->spa_how != SP4_NONE);
3047 WRITE32(exid->spa_how);
3048
3049 /* The server_owner struct */
3050 WRITE64(minor_id); /* Minor id */
3051 /* major id */
3052 WRITE32(major_id_sz);
3053 WRITEMEM(major_id, major_id_sz);
3054
3055 /* Server scope */
3056 WRITE32(server_scope_sz);
3057 WRITEMEM(server_scope, server_scope_sz);
3058
3059 /* Implementation id */
3060 WRITE32(0); /* zero length nfs_impl_id4 array */
3061 ADJUST_ARGS();
3062 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003063}
3064
3065static __be32
3066nfsd4_encode_create_session(struct nfsd4_compoundres *resp, int nfserr,
3067 struct nfsd4_create_session *sess)
3068{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003069 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003070
3071 if (nfserr)
3072 return nfserr;
3073
3074 RESERVE_SPACE(24);
3075 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3076 WRITE32(sess->seqid);
3077 WRITE32(sess->flags);
3078 ADJUST_ARGS();
3079
3080 RESERVE_SPACE(28);
3081 WRITE32(0); /* headerpadsz */
3082 WRITE32(sess->fore_channel.maxreq_sz);
3083 WRITE32(sess->fore_channel.maxresp_sz);
3084 WRITE32(sess->fore_channel.maxresp_cached);
3085 WRITE32(sess->fore_channel.maxops);
3086 WRITE32(sess->fore_channel.maxreqs);
3087 WRITE32(sess->fore_channel.nr_rdma_attrs);
3088 ADJUST_ARGS();
3089
3090 if (sess->fore_channel.nr_rdma_attrs) {
3091 RESERVE_SPACE(4);
3092 WRITE32(sess->fore_channel.rdma_attrs);
3093 ADJUST_ARGS();
3094 }
3095
3096 RESERVE_SPACE(28);
3097 WRITE32(0); /* headerpadsz */
3098 WRITE32(sess->back_channel.maxreq_sz);
3099 WRITE32(sess->back_channel.maxresp_sz);
3100 WRITE32(sess->back_channel.maxresp_cached);
3101 WRITE32(sess->back_channel.maxops);
3102 WRITE32(sess->back_channel.maxreqs);
3103 WRITE32(sess->back_channel.nr_rdma_attrs);
3104 ADJUST_ARGS();
3105
3106 if (sess->back_channel.nr_rdma_attrs) {
3107 RESERVE_SPACE(4);
3108 WRITE32(sess->back_channel.rdma_attrs);
3109 ADJUST_ARGS();
3110 }
3111 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003112}
3113
3114static __be32
3115nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, int nfserr,
3116 struct nfsd4_destroy_session *destroy_session)
3117{
Andy Adamson2db134e2009-04-03 08:27:55 +03003118 return nfserr;
3119}
3120
Andy Adamsonbf864a32009-04-03 08:28:35 +03003121__be32
Andy Adamson2db134e2009-04-03 08:27:55 +03003122nfsd4_encode_sequence(struct nfsd4_compoundres *resp, int nfserr,
3123 struct nfsd4_sequence *seq)
3124{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003125 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003126
3127 if (nfserr)
3128 return nfserr;
3129
3130 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3131 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3132 WRITE32(seq->seqid);
3133 WRITE32(seq->slotid);
3134 WRITE32(seq->maxslots);
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05003135 /* For now: target_maxslots = maxslots */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003136 WRITE32(seq->maxslots);
J. Bruce Fields0d7bb712010-11-18 08:30:33 -05003137 WRITE32(seq->status_flags);
Benny Halevyb85d4c02009-04-03 08:28:08 +03003138
3139 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003140 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003141 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003142}
3143
3144static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003145nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3146{
3147 return nfserr;
3148}
3149
3150typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3151
Andy Adamson2db134e2009-04-03 08:27:55 +03003152/*
3153 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3154 * since we don't need to filter out obsolete ops as this is
3155 * done in the decoding phase.
3156 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003157static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003158 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3159 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3160 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3161 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3162 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3163 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3164 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3165 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3166 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3167 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3168 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3169 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3170 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3171 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3172 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3173 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003174 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003175 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3176 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3177 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3178 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3179 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3180 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3181 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3182 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3183 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3184 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3185 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3186 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3187 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3188 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3189 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3190 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3191 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3192 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3193 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3194 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003195
3196 /* NFSv4.1 operations */
3197 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04003198 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_bind_conn_to_session,
Andy Adamson2db134e2009-04-03 08:27:55 +03003199 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3200 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3201 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session,
3202 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3203 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3204 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3205 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3206 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3207 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3208 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003209 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003210 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3211 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
3212 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3213 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3214 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3215 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003216};
3217
Andy Adamson496c2622009-04-03 08:28:48 +03003218/*
3219 * Calculate the total amount of memory that the compound response has taken
3220 * after encoding the current operation.
3221 *
3222 * pad: add on 8 bytes for the next operation's op_code and status so that
3223 * there is room to cache a failure on the next operation.
3224 *
3225 * Compare this length to the session se_fmaxresp_cached.
3226 *
3227 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3228 * will be at least a page and will therefore hold the xdr_buf head.
3229 */
3230static int nfsd4_check_drc_limit(struct nfsd4_compoundres *resp)
3231{
3232 int status = 0;
3233 struct xdr_buf *xb = &resp->rqstp->rq_res;
3234 struct nfsd4_compoundargs *args = resp->rqstp->rq_argp;
3235 struct nfsd4_session *session = NULL;
3236 struct nfsd4_slot *slot = resp->cstate.slot;
3237 u32 length, tlen = 0, pad = 8;
3238
3239 if (!nfsd4_has_session(&resp->cstate))
3240 return status;
3241
3242 session = resp->cstate.session;
Andy Adamson557ce262009-08-28 08:45:04 -04003243 if (session == NULL || slot->sl_cachethis == 0)
Andy Adamson496c2622009-04-03 08:28:48 +03003244 return status;
3245
3246 if (resp->opcnt >= args->opcnt)
3247 pad = 0; /* this is the last operation */
3248
3249 if (xb->page_len == 0) {
3250 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3251 } else {
3252 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3253 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3254
3255 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3256 }
3257 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3258 length, xb->page_len, tlen, pad);
3259
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003260 if (length <= session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003261 return status;
3262 else
3263 return nfserr_rep_too_big_to_cache;
3264}
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266void
3267nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3268{
Al Viro2ebbc012006-10-19 23:28:58 -07003269 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003270 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271
3272 RESERVE_SPACE(8);
3273 WRITE32(op->opnum);
3274 statp = p++; /* to be backfilled at the end */
3275 ADJUST_ARGS();
3276
Benny Halevy695e12f2008-07-04 14:38:33 +03003277 if (op->opnum == OP_ILLEGAL)
3278 goto status;
3279 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3280 !nfsd4_enc_ops[op->opnum]);
3281 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
Andy Adamson496c2622009-04-03 08:28:48 +03003282 /* nfsd4_check_drc_limit guarantees enough room for error status */
3283 if (!op->status && nfsd4_check_drc_limit(resp))
3284 op->status = nfserr_rep_too_big_to_cache;
Benny Halevy695e12f2008-07-04 14:38:33 +03003285status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 /*
3287 * Note: We write the status directly, instead of using WRITE32(),
3288 * since it is already in network byte order.
3289 */
3290 *statp = op->status;
3291}
3292
3293/*
3294 * Encode the reply stored in the stateowner reply cache
3295 *
3296 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3297 * previously sent already encoded operation.
3298 *
3299 * called with nfs4_lock_state() held
3300 */
3301void
3302nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3303{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003304 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 struct nfs4_replay *rp = op->replay;
3306
3307 BUG_ON(!rp);
3308
3309 RESERVE_SPACE(8);
3310 WRITE32(op->opnum);
3311 *p++ = rp->rp_status; /* already xdr'ed */
3312 ADJUST_ARGS();
3313
3314 RESERVE_SPACE(rp->rp_buflen);
3315 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3316 ADJUST_ARGS();
3317}
3318
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319int
Al Viro2ebbc012006-10-19 23:28:58 -07003320nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321{
3322 return xdr_ressize_check(rqstp, p);
3323}
3324
3325void nfsd4_release_compoundargs(struct nfsd4_compoundargs *args)
3326{
3327 if (args->ops != args->iops) {
3328 kfree(args->ops);
3329 args->ops = args->iops;
3330 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003331 kfree(args->tmpp);
3332 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 while (args->to_free) {
3334 struct tmpbuf *tb = args->to_free;
3335 args->to_free = tb->next;
3336 tb->release(tb->buf);
3337 kfree(tb);
3338 }
3339}
3340
3341int
Al Viro2ebbc012006-10-19 23:28:58 -07003342nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343{
Al Virob37ad282006-10-19 23:28:59 -07003344 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
3346 args->p = p;
3347 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3348 args->pagelist = rqstp->rq_arg.pages;
3349 args->pagelen = rqstp->rq_arg.page_len;
3350 args->tmpp = NULL;
3351 args->to_free = NULL;
3352 args->ops = args->iops;
3353 args->rqstp = rqstp;
3354
3355 status = nfsd4_decode_compound(args);
3356 if (status) {
3357 nfsd4_release_compoundargs(args);
3358 }
3359 return !status;
3360}
3361
3362int
Al Viro2ebbc012006-10-19 23:28:58 -07003363nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364{
3365 /*
3366 * All that remains is to write the tag and operation count...
3367 */
Andy Adamson557ce262009-08-28 08:45:04 -04003368 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 struct kvec *iov;
3370 p = resp->tagp;
3371 *p++ = htonl(resp->taglen);
3372 memcpy(p, resp->tag, resp->taglen);
3373 p += XDR_QUADLEN(resp->taglen);
3374 *p++ = htonl(resp->opcnt);
3375
3376 if (rqstp->rq_res.page_len)
3377 iov = &rqstp->rq_res.tail[0];
3378 else
3379 iov = &rqstp->rq_res.head[0];
3380 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3381 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003382 if (nfsd4_has_session(cs)) {
3383 if (cs->status != nfserr_replay_cache) {
3384 nfsd4_store_cache_entry(resp);
3385 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__);
Benny Halevydbd65a72010-05-03 19:31:33 +03003386 cs->slot->sl_inuse = false;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003387 }
Benny Halevyd7682982010-05-12 00:13:54 +03003388 /* Renew the clientid on success and on replay */
3389 release_session_client(cs->session);
J. Bruce Fields76407f72010-06-22 14:10:14 -04003390 nfsd4_put_session(cs->session);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 return 1;
3393}
3394
3395/*
3396 * Local variables:
3397 * c-basic-offset: 8
3398 * End:
3399 */