blob: 2a0814d0ab1ae5afa54c05c0221551c1b2a8051e [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);
Al Virob8dd7b92006-10-19 23:29:01 -0700292 host_err = 0;
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)
Al Virob8dd7b92006-10-19 23:29:01 -0700296 host_err = 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
Al Virob8dd7b92006-10-19 23:29:01 -0700299 host_err = nfsd_map_name_to_uid(argp->rqstp,
J. Bruce Fields28e05dd2007-02-16 01:28:30 -0800300 buf, dummy32, &ace->who);
Al Virob8dd7b92006-10-19 23:29:01 -0700301 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 goto out_nfserr;
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);
Al Virob8dd7b92006-10-19 23:29:01 -0700320 if ((host_err = nfsd_map_name_to_uid(argp->rqstp, buf, dummy32, &iattr->ia_uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto out_nfserr;
322 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);
Al Virob8dd7b92006-10-19 23:29:01 -0700331 if ((host_err = nfsd_map_name_to_gid(argp->rqstp, buf, dummy32, &iattr->ia_gid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 goto out_nfserr;
333 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
Al Virob37ad282006-10-19 23:28:59 -0700424static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425nfsd4_decode_close(struct nfsd4_compoundargs *argp, struct nfsd4_close *close)
426{
427 DECODE_HEAD;
428
429 close->cl_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300430 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 READ32(close->cl_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300432 return nfsd4_decode_stateid(argp, &close->cl_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 DECODE_TAIL;
435}
436
437
Al Virob37ad282006-10-19 23:28:59 -0700438static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439nfsd4_decode_commit(struct nfsd4_compoundargs *argp, struct nfsd4_commit *commit)
440{
441 DECODE_HEAD;
442
443 READ_BUF(12);
444 READ64(commit->co_offset);
445 READ32(commit->co_count);
446
447 DECODE_TAIL;
448}
449
Al Virob37ad282006-10-19 23:28:59 -0700450static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create)
452{
453 DECODE_HEAD;
454
455 READ_BUF(4);
456 READ32(create->cr_type);
457 switch (create->cr_type) {
458 case NF4LNK:
459 READ_BUF(4);
460 READ32(create->cr_linklen);
461 READ_BUF(create->cr_linklen);
462 SAVEMEM(create->cr_linkname, create->cr_linklen);
463 break;
464 case NF4BLK:
465 case NF4CHR:
466 READ_BUF(8);
467 READ32(create->cr_specdata1);
468 READ32(create->cr_specdata2);
469 break;
470 case NF4SOCK:
471 case NF4FIFO:
472 case NF4DIR:
473 default:
474 break;
475 }
476
477 READ_BUF(4);
478 READ32(create->cr_namelen);
479 READ_BUF(create->cr_namelen);
480 SAVEMEM(create->cr_name, create->cr_namelen);
481 if ((status = check_filename(create->cr_name, create->cr_namelen, nfserr_inval)))
482 return status;
483
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800484 status = nfsd4_decode_fattr(argp, create->cr_bmval, &create->cr_iattr,
485 &create->cr_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300486 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto out;
488
489 DECODE_TAIL;
490}
491
Al Virob37ad282006-10-19 23:28:59 -0700492static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493nfsd4_decode_delegreturn(struct nfsd4_compoundargs *argp, struct nfsd4_delegreturn *dr)
494{
Benny Halevye31a1b62008-08-12 20:46:18 +0300495 return nfsd4_decode_stateid(argp, &dr->dr_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Al Virob37ad282006-10-19 23:28:59 -0700498static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499nfsd4_decode_getattr(struct nfsd4_compoundargs *argp, struct nfsd4_getattr *getattr)
500{
501 return nfsd4_decode_bitmap(argp, getattr->ga_bmval);
502}
503
Al Virob37ad282006-10-19 23:28:59 -0700504static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505nfsd4_decode_link(struct nfsd4_compoundargs *argp, struct nfsd4_link *link)
506{
507 DECODE_HEAD;
508
509 READ_BUF(4);
510 READ32(link->li_namelen);
511 READ_BUF(link->li_namelen);
512 SAVEMEM(link->li_name, link->li_namelen);
513 if ((status = check_filename(link->li_name, link->li_namelen, nfserr_inval)))
514 return status;
515
516 DECODE_TAIL;
517}
518
Al Virob37ad282006-10-19 23:28:59 -0700519static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520nfsd4_decode_lock(struct nfsd4_compoundargs *argp, struct nfsd4_lock *lock)
521{
522 DECODE_HEAD;
523
J. Bruce Fields3a655882006-01-18 17:43:19 -0800524 lock->lk_replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /*
526 * type, reclaim(boolean), offset, length, new_lock_owner(boolean)
527 */
528 READ_BUF(28);
529 READ32(lock->lk_type);
530 if ((lock->lk_type < NFS4_READ_LT) || (lock->lk_type > NFS4_WRITEW_LT))
531 goto xdr_error;
532 READ32(lock->lk_reclaim);
533 READ64(lock->lk_offset);
534 READ64(lock->lk_length);
535 READ32(lock->lk_is_new);
536
537 if (lock->lk_is_new) {
Benny Halevye31a1b62008-08-12 20:46:18 +0300538 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 READ32(lock->lk_new_open_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300540 status = nfsd4_decode_stateid(argp, &lock->lk_new_open_stateid);
541 if (status)
542 return status;
543 READ_BUF(8 + sizeof(clientid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 READ32(lock->lk_new_lock_seqid);
545 COPYMEM(&lock->lk_new_clientid, sizeof(clientid_t));
546 READ32(lock->lk_new_owner.len);
547 READ_BUF(lock->lk_new_owner.len);
548 READMEM(lock->lk_new_owner.data, lock->lk_new_owner.len);
549 } else {
Benny Halevye31a1b62008-08-12 20:46:18 +0300550 status = nfsd4_decode_stateid(argp, &lock->lk_old_lock_stateid);
551 if (status)
552 return status;
553 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 READ32(lock->lk_old_lock_seqid);
555 }
556
557 DECODE_TAIL;
558}
559
Al Virob37ad282006-10-19 23:28:59 -0700560static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561nfsd4_decode_lockt(struct nfsd4_compoundargs *argp, struct nfsd4_lockt *lockt)
562{
563 DECODE_HEAD;
564
565 READ_BUF(32);
566 READ32(lockt->lt_type);
567 if((lockt->lt_type < NFS4_READ_LT) || (lockt->lt_type > NFS4_WRITEW_LT))
568 goto xdr_error;
569 READ64(lockt->lt_offset);
570 READ64(lockt->lt_length);
571 COPYMEM(&lockt->lt_clientid, 8);
572 READ32(lockt->lt_owner.len);
573 READ_BUF(lockt->lt_owner.len);
574 READMEM(lockt->lt_owner.data, lockt->lt_owner.len);
575
Andy Adamson60adfc52009-04-03 08:28:50 +0300576 if (argp->minorversion && !zero_clientid(&lockt->lt_clientid))
577 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 DECODE_TAIL;
579}
580
Al Virob37ad282006-10-19 23:28:59 -0700581static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582nfsd4_decode_locku(struct nfsd4_compoundargs *argp, struct nfsd4_locku *locku)
583{
584 DECODE_HEAD;
585
586 locku->lu_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300587 READ_BUF(8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 READ32(locku->lu_type);
589 if ((locku->lu_type < NFS4_READ_LT) || (locku->lu_type > NFS4_WRITEW_LT))
590 goto xdr_error;
591 READ32(locku->lu_seqid);
Benny Halevye31a1b62008-08-12 20:46:18 +0300592 status = nfsd4_decode_stateid(argp, &locku->lu_stateid);
593 if (status)
594 return status;
595 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 READ64(locku->lu_offset);
597 READ64(locku->lu_length);
598
599 DECODE_TAIL;
600}
601
Al Virob37ad282006-10-19 23:28:59 -0700602static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603nfsd4_decode_lookup(struct nfsd4_compoundargs *argp, struct nfsd4_lookup *lookup)
604{
605 DECODE_HEAD;
606
607 READ_BUF(4);
608 READ32(lookup->lo_len);
609 READ_BUF(lookup->lo_len);
610 SAVEMEM(lookup->lo_name, lookup->lo_len);
611 if ((status = check_filename(lookup->lo_name, lookup->lo_len, nfserr_noent)))
612 return status;
613
614 DECODE_TAIL;
615}
616
Al Virob37ad282006-10-19 23:28:59 -0700617static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open)
619{
620 DECODE_HEAD;
621
622 memset(open->op_bmval, 0, sizeof(open->op_bmval));
623 open->op_iattr.ia_valid = 0;
624 open->op_stateowner = NULL;
625
626 /* seqid, share_access, share_deny, clientid, ownerlen */
627 READ_BUF(16 + sizeof(clientid_t));
628 READ32(open->op_seqid);
629 READ32(open->op_share_access);
630 READ32(open->op_share_deny);
631 COPYMEM(&open->op_clientid, sizeof(clientid_t));
632 READ32(open->op_owner.len);
633
634 /* owner, open_flag */
635 READ_BUF(open->op_owner.len + 4);
636 SAVEMEM(open->op_owner.data, open->op_owner.len);
637 READ32(open->op_create);
638 switch (open->op_create) {
639 case NFS4_OPEN_NOCREATE:
640 break;
641 case NFS4_OPEN_CREATE:
642 READ_BUF(4);
643 READ32(open->op_createmode);
644 switch (open->op_createmode) {
645 case NFS4_CREATE_UNCHECKED:
646 case NFS4_CREATE_GUARDED:
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300647 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800648 &open->op_iattr, &open->op_acl);
Benny Halevyc0d6fc82009-04-03 08:29:05 +0300649 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 goto out;
651 break;
652 case NFS4_CREATE_EXCLUSIVE:
653 READ_BUF(8);
654 COPYMEM(open->op_verf.data, 8);
655 break;
Benny Halevy79fb54a2009-04-03 08:29:17 +0300656 case NFS4_CREATE_EXCLUSIVE4_1:
657 if (argp->minorversion < 1)
658 goto xdr_error;
659 READ_BUF(8);
660 COPYMEM(open->op_verf.data, 8);
661 status = nfsd4_decode_fattr(argp, open->op_bmval,
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800662 &open->op_iattr, &open->op_acl);
Benny Halevy79fb54a2009-04-03 08:29:17 +0300663 if (status)
664 goto out;
665 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 default:
667 goto xdr_error;
668 }
669 break;
670 default:
671 goto xdr_error;
672 }
673
674 /* open_claim */
675 READ_BUF(4);
676 READ32(open->op_claim_type);
677 switch (open->op_claim_type) {
678 case NFS4_OPEN_CLAIM_NULL:
679 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
680 READ_BUF(4);
681 READ32(open->op_fname.len);
682 READ_BUF(open->op_fname.len);
683 SAVEMEM(open->op_fname.data, open->op_fname.len);
684 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
685 return status;
686 break;
687 case NFS4_OPEN_CLAIM_PREVIOUS:
688 READ_BUF(4);
689 READ32(open->op_delegate_type);
690 break;
691 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Benny Halevye31a1b62008-08-12 20:46:18 +0300692 status = nfsd4_decode_stateid(argp, &open->op_delegate_stateid);
693 if (status)
694 return status;
695 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 READ32(open->op_fname.len);
697 READ_BUF(open->op_fname.len);
698 SAVEMEM(open->op_fname.data, open->op_fname.len);
699 if ((status = check_filename(open->op_fname.data, open->op_fname.len, nfserr_inval)))
700 return status;
701 break;
702 default:
703 goto xdr_error;
704 }
705
706 DECODE_TAIL;
707}
708
Al Virob37ad282006-10-19 23:28:59 -0700709static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710nfsd4_decode_open_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_open_confirm *open_conf)
711{
712 DECODE_HEAD;
713
714 open_conf->oc_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300715 status = nfsd4_decode_stateid(argp, &open_conf->oc_req_stateid);
716 if (status)
717 return status;
718 READ_BUF(4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 READ32(open_conf->oc_seqid);
720
721 DECODE_TAIL;
722}
723
Al Virob37ad282006-10-19 23:28:59 -0700724static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725nfsd4_decode_open_downgrade(struct nfsd4_compoundargs *argp, struct nfsd4_open_downgrade *open_down)
726{
727 DECODE_HEAD;
728
729 open_down->od_stateowner = NULL;
Benny Halevye31a1b62008-08-12 20:46:18 +0300730 status = nfsd4_decode_stateid(argp, &open_down->od_stateid);
731 if (status)
732 return status;
733 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 READ32(open_down->od_seqid);
735 READ32(open_down->od_share_access);
736 READ32(open_down->od_share_deny);
737
738 DECODE_TAIL;
739}
740
Al Virob37ad282006-10-19 23:28:59 -0700741static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742nfsd4_decode_putfh(struct nfsd4_compoundargs *argp, struct nfsd4_putfh *putfh)
743{
744 DECODE_HEAD;
745
746 READ_BUF(4);
747 READ32(putfh->pf_fhlen);
748 if (putfh->pf_fhlen > NFS4_FHSIZE)
749 goto xdr_error;
750 READ_BUF(putfh->pf_fhlen);
751 SAVEMEM(putfh->pf_fhval, putfh->pf_fhlen);
752
753 DECODE_TAIL;
754}
755
Al Virob37ad282006-10-19 23:28:59 -0700756static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757nfsd4_decode_read(struct nfsd4_compoundargs *argp, struct nfsd4_read *read)
758{
759 DECODE_HEAD;
760
Benny Halevye31a1b62008-08-12 20:46:18 +0300761 status = nfsd4_decode_stateid(argp, &read->rd_stateid);
762 if (status)
763 return status;
764 READ_BUF(12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 READ64(read->rd_offset);
766 READ32(read->rd_length);
767
768 DECODE_TAIL;
769}
770
Al Virob37ad282006-10-19 23:28:59 -0700771static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772nfsd4_decode_readdir(struct nfsd4_compoundargs *argp, struct nfsd4_readdir *readdir)
773{
774 DECODE_HEAD;
775
776 READ_BUF(24);
777 READ64(readdir->rd_cookie);
778 COPYMEM(readdir->rd_verf.data, sizeof(readdir->rd_verf.data));
779 READ32(readdir->rd_dircount); /* just in case you needed a useless field... */
780 READ32(readdir->rd_maxcount);
781 if ((status = nfsd4_decode_bitmap(argp, readdir->rd_bmval)))
782 goto out;
783
784 DECODE_TAIL;
785}
786
Al Virob37ad282006-10-19 23:28:59 -0700787static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788nfsd4_decode_remove(struct nfsd4_compoundargs *argp, struct nfsd4_remove *remove)
789{
790 DECODE_HEAD;
791
792 READ_BUF(4);
793 READ32(remove->rm_namelen);
794 READ_BUF(remove->rm_namelen);
795 SAVEMEM(remove->rm_name, remove->rm_namelen);
796 if ((status = check_filename(remove->rm_name, remove->rm_namelen, nfserr_noent)))
797 return status;
798
799 DECODE_TAIL;
800}
801
Al Virob37ad282006-10-19 23:28:59 -0700802static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803nfsd4_decode_rename(struct nfsd4_compoundargs *argp, struct nfsd4_rename *rename)
804{
805 DECODE_HEAD;
806
807 READ_BUF(4);
808 READ32(rename->rn_snamelen);
809 READ_BUF(rename->rn_snamelen + 4);
810 SAVEMEM(rename->rn_sname, rename->rn_snamelen);
811 READ32(rename->rn_tnamelen);
812 READ_BUF(rename->rn_tnamelen);
813 SAVEMEM(rename->rn_tname, rename->rn_tnamelen);
814 if ((status = check_filename(rename->rn_sname, rename->rn_snamelen, nfserr_noent)))
815 return status;
816 if ((status = check_filename(rename->rn_tname, rename->rn_tnamelen, nfserr_inval)))
817 return status;
818
819 DECODE_TAIL;
820}
821
Al Virob37ad282006-10-19 23:28:59 -0700822static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823nfsd4_decode_renew(struct nfsd4_compoundargs *argp, clientid_t *clientid)
824{
825 DECODE_HEAD;
826
827 READ_BUF(sizeof(clientid_t));
828 COPYMEM(clientid, sizeof(clientid_t));
829
830 DECODE_TAIL;
831}
832
Al Virob37ad282006-10-19 23:28:59 -0700833static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700834nfsd4_decode_secinfo(struct nfsd4_compoundargs *argp,
835 struct nfsd4_secinfo *secinfo)
836{
837 DECODE_HEAD;
838
839 READ_BUF(4);
840 READ32(secinfo->si_namelen);
841 READ_BUF(secinfo->si_namelen);
842 SAVEMEM(secinfo->si_name, secinfo->si_namelen);
843 status = check_filename(secinfo->si_name, secinfo->si_namelen,
844 nfserr_noent);
845 if (status)
846 return status;
847 DECODE_TAIL;
848}
849
850static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500851nfsd4_decode_secinfo_no_name(struct nfsd4_compoundargs *argp,
852 struct nfsd4_secinfo_no_name *sin)
853{
854 DECODE_HEAD;
855
856 READ_BUF(4);
857 READ32(sin->sin_style);
858 DECODE_TAIL;
859}
860
861static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862nfsd4_decode_setattr(struct nfsd4_compoundargs *argp, struct nfsd4_setattr *setattr)
863{
Benny Halevye31a1b62008-08-12 20:46:18 +0300864 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Benny Halevye31a1b62008-08-12 20:46:18 +0300866 status = nfsd4_decode_stateid(argp, &setattr->sa_stateid);
867 if (status)
868 return status;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800869 return nfsd4_decode_fattr(argp, setattr->sa_bmval, &setattr->sa_iattr,
870 &setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Al Virob37ad282006-10-19 23:28:59 -0700873static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874nfsd4_decode_setclientid(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid *setclientid)
875{
876 DECODE_HEAD;
877
878 READ_BUF(12);
879 COPYMEM(setclientid->se_verf.data, 8);
880 READ32(setclientid->se_namelen);
881
882 READ_BUF(setclientid->se_namelen + 8);
883 SAVEMEM(setclientid->se_name, setclientid->se_namelen);
884 READ32(setclientid->se_callback_prog);
885 READ32(setclientid->se_callback_netid_len);
886
887 READ_BUF(setclientid->se_callback_netid_len + 4);
888 SAVEMEM(setclientid->se_callback_netid_val, setclientid->se_callback_netid_len);
889 READ32(setclientid->se_callback_addr_len);
890
891 READ_BUF(setclientid->se_callback_addr_len + 4);
892 SAVEMEM(setclientid->se_callback_addr_val, setclientid->se_callback_addr_len);
893 READ32(setclientid->se_callback_ident);
894
895 DECODE_TAIL;
896}
897
Al Virob37ad282006-10-19 23:28:59 -0700898static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899nfsd4_decode_setclientid_confirm(struct nfsd4_compoundargs *argp, struct nfsd4_setclientid_confirm *scd_c)
900{
901 DECODE_HEAD;
902
903 READ_BUF(8 + sizeof(nfs4_verifier));
904 COPYMEM(&scd_c->sc_clientid, 8);
905 COPYMEM(&scd_c->sc_confirm, sizeof(nfs4_verifier));
906
907 DECODE_TAIL;
908}
909
910/* Also used for NVERIFY */
Al Virob37ad282006-10-19 23:28:59 -0700911static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912nfsd4_decode_verify(struct nfsd4_compoundargs *argp, struct nfsd4_verify *verify)
913{
914#if 0
915 struct nfsd4_compoundargs save = {
916 .p = argp->p,
917 .end = argp->end,
918 .rqstp = argp->rqstp,
919 };
920 u32 ve_bmval[2];
921 struct iattr ve_iattr; /* request */
922 struct nfs4_acl *ve_acl; /* request */
923#endif
924 DECODE_HEAD;
925
926 if ((status = nfsd4_decode_bitmap(argp, verify->ve_bmval)))
927 goto out;
928
929 /* For convenience's sake, we compare raw xdr'd attributes in
930 * nfsd4_proc_verify; however we still decode here just to return
931 * correct error in case of bad xdr. */
932#if 0
933 status = nfsd4_decode_fattr(ve_bmval, &ve_iattr, &ve_acl);
934 if (status == nfserr_inval) {
935 status = nfserrno(status);
936 goto out;
937 }
938#endif
939 READ_BUF(4);
940 READ32(verify->ve_attrlen);
941 READ_BUF(verify->ve_attrlen);
942 SAVEMEM(verify->ve_attrval, verify->ve_attrlen);
943
944 DECODE_TAIL;
945}
946
Al Virob37ad282006-10-19 23:28:59 -0700947static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write)
949{
950 int avail;
951 int v;
952 int len;
953 DECODE_HEAD;
954
Benny Halevye31a1b62008-08-12 20:46:18 +0300955 status = nfsd4_decode_stateid(argp, &write->wr_stateid);
956 if (status)
957 return status;
958 READ_BUF(16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 READ64(write->wr_offset);
960 READ32(write->wr_stable_how);
961 if (write->wr_stable_how > 2)
962 goto xdr_error;
963 READ32(write->wr_buflen);
964
965 /* Sorry .. no magic macros for this.. *
966 * READ_BUF(write->wr_buflen);
967 * SAVEMEM(write->wr_buf, write->wr_buflen);
968 */
969 avail = (char*)argp->end - (char*)argp->p;
970 if (avail + argp->pagelen < write->wr_buflen) {
Chuck Lever817cb9d2007-09-11 18:01:20 -0400971 dprintk("NFSD: xdr error (%s:%d)\n",
972 __FILE__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 goto xdr_error;
974 }
NeilBrown3cc03b12006-10-04 02:15:47 -0700975 argp->rqstp->rq_vec[0].iov_base = p;
976 argp->rqstp->rq_vec[0].iov_len = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 v = 0;
978 len = write->wr_buflen;
NeilBrown3cc03b12006-10-04 02:15:47 -0700979 while (len > argp->rqstp->rq_vec[v].iov_len) {
980 len -= argp->rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700982 argp->rqstp->rq_vec[v].iov_base = page_address(argp->pagelist[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 argp->pagelist++;
984 if (argp->pagelen >= PAGE_SIZE) {
NeilBrown3cc03b12006-10-04 02:15:47 -0700985 argp->rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 argp->pagelen -= PAGE_SIZE;
987 } else {
NeilBrown3cc03b12006-10-04 02:15:47 -0700988 argp->rqstp->rq_vec[v].iov_len = argp->pagelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 argp->pagelen -= len;
990 }
991 }
Al Viro2ebbc012006-10-19 23:28:58 -0700992 argp->end = (__be32*) (argp->rqstp->rq_vec[v].iov_base + argp->rqstp->rq_vec[v].iov_len);
993 argp->p = (__be32*) (argp->rqstp->rq_vec[v].iov_base + (XDR_QUADLEN(len) << 2));
NeilBrown3cc03b12006-10-04 02:15:47 -0700994 argp->rqstp->rq_vec[v].iov_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 write->wr_vlen = v+1;
996
997 DECODE_TAIL;
998}
999
Al Virob37ad282006-10-19 23:28:59 -07001000static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001nfsd4_decode_release_lockowner(struct nfsd4_compoundargs *argp, struct nfsd4_release_lockowner *rlockowner)
1002{
1003 DECODE_HEAD;
1004
1005 READ_BUF(12);
1006 COPYMEM(&rlockowner->rl_clientid, sizeof(clientid_t));
1007 READ32(rlockowner->rl_owner.len);
1008 READ_BUF(rlockowner->rl_owner.len);
1009 READMEM(rlockowner->rl_owner.data, rlockowner->rl_owner.len);
1010
Andy Adamson60adfc52009-04-03 08:28:50 +03001011 if (argp->minorversion && !zero_clientid(&rlockowner->rl_clientid))
1012 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 DECODE_TAIL;
1014}
1015
Al Virob37ad282006-10-19 23:28:59 -07001016static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03001017nfsd4_decode_exchange_id(struct nfsd4_compoundargs *argp,
Andy Adamson0733d212009-04-03 08:28:01 +03001018 struct nfsd4_exchange_id *exid)
Andy Adamson2db134e2009-04-03 08:27:55 +03001019{
Mi Jinlong5afa0402010-11-09 09:39:23 +08001020 int dummy, tmp;
Andy Adamson0733d212009-04-03 08:28:01 +03001021 DECODE_HEAD;
1022
1023 READ_BUF(NFS4_VERIFIER_SIZE);
1024 COPYMEM(exid->verifier.data, NFS4_VERIFIER_SIZE);
1025
1026 READ_BUF(4);
1027 READ32(exid->clname.len);
1028
1029 READ_BUF(exid->clname.len);
1030 SAVEMEM(exid->clname.data, exid->clname.len);
1031
1032 READ_BUF(4);
1033 READ32(exid->flags);
1034
1035 /* Ignore state_protect4_a */
1036 READ_BUF(4);
1037 READ32(exid->spa_how);
1038 switch (exid->spa_how) {
1039 case SP4_NONE:
1040 break;
1041 case SP4_MACH_CRED:
1042 /* spo_must_enforce */
1043 READ_BUF(4);
1044 READ32(dummy);
1045 READ_BUF(dummy * 4);
1046 p += dummy;
1047
1048 /* spo_must_allow */
1049 READ_BUF(4);
1050 READ32(dummy);
1051 READ_BUF(dummy * 4);
1052 p += dummy;
1053 break;
1054 case SP4_SSV:
1055 /* ssp_ops */
1056 READ_BUF(4);
1057 READ32(dummy);
1058 READ_BUF(dummy * 4);
1059 p += dummy;
1060
1061 READ_BUF(4);
1062 READ32(dummy);
1063 READ_BUF(dummy * 4);
1064 p += dummy;
1065
1066 /* ssp_hash_algs<> */
1067 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001068 READ32(tmp);
1069 while (tmp--) {
1070 READ_BUF(4);
1071 READ32(dummy);
1072 READ_BUF(dummy);
1073 p += XDR_QUADLEN(dummy);
1074 }
Andy Adamson0733d212009-04-03 08:28:01 +03001075
1076 /* ssp_encr_algs<> */
1077 READ_BUF(4);
Mi Jinlong5afa0402010-11-09 09:39:23 +08001078 READ32(tmp);
1079 while (tmp--) {
1080 READ_BUF(4);
1081 READ32(dummy);
1082 READ_BUF(dummy);
1083 p += XDR_QUADLEN(dummy);
1084 }
Andy Adamson0733d212009-04-03 08:28:01 +03001085
1086 /* ssp_window and ssp_num_gss_handles */
1087 READ_BUF(8);
1088 READ32(dummy);
1089 READ32(dummy);
1090 break;
1091 default:
1092 goto xdr_error;
1093 }
1094
1095 /* Ignore Implementation ID */
1096 READ_BUF(4); /* nfs_impl_id4 array length */
1097 READ32(dummy);
1098
1099 if (dummy > 1)
1100 goto xdr_error;
1101
1102 if (dummy == 1) {
1103 /* nii_domain */
1104 READ_BUF(4);
1105 READ32(dummy);
1106 READ_BUF(dummy);
1107 p += XDR_QUADLEN(dummy);
1108
1109 /* nii_name */
1110 READ_BUF(4);
1111 READ32(dummy);
1112 READ_BUF(dummy);
1113 p += XDR_QUADLEN(dummy);
1114
1115 /* nii_date */
1116 READ_BUF(12);
1117 p += 3;
1118 }
1119 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001120}
1121
1122static __be32
1123nfsd4_decode_create_session(struct nfsd4_compoundargs *argp,
1124 struct nfsd4_create_session *sess)
1125{
Andy Adamsonec6b5d72009-04-03 08:28:28 +03001126 DECODE_HEAD;
1127
1128 u32 dummy;
1129 char *machine_name;
1130 int i;
1131 int nr_secflavs;
1132
1133 READ_BUF(16);
1134 COPYMEM(&sess->clientid, 8);
1135 READ32(sess->seqid);
1136 READ32(sess->flags);
1137
1138 /* Fore channel attrs */
1139 READ_BUF(28);
1140 READ32(dummy); /* headerpadsz is always 0 */
1141 READ32(sess->fore_channel.maxreq_sz);
1142 READ32(sess->fore_channel.maxresp_sz);
1143 READ32(sess->fore_channel.maxresp_cached);
1144 READ32(sess->fore_channel.maxops);
1145 READ32(sess->fore_channel.maxreqs);
1146 READ32(sess->fore_channel.nr_rdma_attrs);
1147 if (sess->fore_channel.nr_rdma_attrs == 1) {
1148 READ_BUF(4);
1149 READ32(sess->fore_channel.rdma_attrs);
1150 } else if (sess->fore_channel.nr_rdma_attrs > 1) {
1151 dprintk("Too many fore channel attr bitmaps!\n");
1152 goto xdr_error;
1153 }
1154
1155 /* Back channel attrs */
1156 READ_BUF(28);
1157 READ32(dummy); /* headerpadsz is always 0 */
1158 READ32(sess->back_channel.maxreq_sz);
1159 READ32(sess->back_channel.maxresp_sz);
1160 READ32(sess->back_channel.maxresp_cached);
1161 READ32(sess->back_channel.maxops);
1162 READ32(sess->back_channel.maxreqs);
1163 READ32(sess->back_channel.nr_rdma_attrs);
1164 if (sess->back_channel.nr_rdma_attrs == 1) {
1165 READ_BUF(4);
1166 READ32(sess->back_channel.rdma_attrs);
1167 } else if (sess->back_channel.nr_rdma_attrs > 1) {
1168 dprintk("Too many back channel attr bitmaps!\n");
1169 goto xdr_error;
1170 }
1171
1172 READ_BUF(8);
1173 READ32(sess->callback_prog);
1174
1175 /* callback_sec_params4 */
1176 READ32(nr_secflavs);
1177 for (i = 0; i < nr_secflavs; ++i) {
1178 READ_BUF(4);
1179 READ32(dummy);
1180 switch (dummy) {
1181 case RPC_AUTH_NULL:
1182 /* Nothing to read */
1183 break;
1184 case RPC_AUTH_UNIX:
1185 READ_BUF(8);
1186 /* stamp */
1187 READ32(dummy);
1188
1189 /* machine name */
1190 READ32(dummy);
1191 READ_BUF(dummy);
1192 SAVEMEM(machine_name, dummy);
1193
1194 /* uid, gid */
1195 READ_BUF(8);
1196 READ32(sess->uid);
1197 READ32(sess->gid);
1198
1199 /* more gids */
1200 READ_BUF(4);
1201 READ32(dummy);
1202 READ_BUF(dummy * 4);
1203 for (i = 0; i < dummy; ++i)
1204 READ32(dummy);
1205 break;
1206 case RPC_AUTH_GSS:
1207 dprintk("RPC_AUTH_GSS callback secflavor "
1208 "not supported!\n");
1209 READ_BUF(8);
1210 /* gcbp_service */
1211 READ32(dummy);
1212 /* gcbp_handle_from_server */
1213 READ32(dummy);
1214 READ_BUF(dummy);
1215 p += XDR_QUADLEN(dummy);
1216 /* gcbp_handle_from_client */
1217 READ_BUF(4);
1218 READ32(dummy);
1219 READ_BUF(dummy);
1220 p += XDR_QUADLEN(dummy);
1221 break;
1222 default:
1223 dprintk("Illegal callback secflavor\n");
1224 return nfserr_inval;
1225 }
1226 }
1227 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001228}
1229
1230static __be32
1231nfsd4_decode_destroy_session(struct nfsd4_compoundargs *argp,
1232 struct nfsd4_destroy_session *destroy_session)
1233{
Benny Halevye10e0cf2009-04-03 08:28:38 +03001234 DECODE_HEAD;
1235 READ_BUF(NFS4_MAX_SESSIONID_LEN);
1236 COPYMEM(destroy_session->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1237
1238 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001239}
1240
1241static __be32
1242nfsd4_decode_sequence(struct nfsd4_compoundargs *argp,
1243 struct nfsd4_sequence *seq)
1244{
Benny Halevyb85d4c02009-04-03 08:28:08 +03001245 DECODE_HEAD;
1246
1247 READ_BUF(NFS4_MAX_SESSIONID_LEN + 16);
1248 COPYMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
1249 READ32(seq->seqid);
1250 READ32(seq->slotid);
1251 READ32(seq->maxslots);
1252 READ32(seq->cachethis);
1253
1254 DECODE_TAIL;
Andy Adamson2db134e2009-04-03 08:27:55 +03001255}
1256
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001257static __be32 nfsd4_decode_reclaim_complete(struct nfsd4_compoundargs *argp, struct nfsd4_reclaim_complete *rc)
1258{
1259 DECODE_HEAD;
1260
1261 READ_BUF(4);
1262 READ32(rc->rca_one_fs);
1263
1264 DECODE_TAIL;
1265}
1266
Andy Adamson2db134e2009-04-03 08:27:55 +03001267static __be32
Benny Halevy347e0ad2008-07-02 11:13:41 +03001268nfsd4_decode_noop(struct nfsd4_compoundargs *argp, void *p)
1269{
1270 return nfs_ok;
1271}
1272
Benny Halevy3c375c62008-07-02 11:14:01 +03001273static __be32
1274nfsd4_decode_notsupp(struct nfsd4_compoundargs *argp, void *p)
1275{
Benny Halevy1e685ec2009-03-04 23:06:06 +02001276 return nfserr_notsupp;
Benny Halevy3c375c62008-07-02 11:14:01 +03001277}
1278
Benny Halevy347e0ad2008-07-02 11:13:41 +03001279typedef __be32(*nfsd4_dec)(struct nfsd4_compoundargs *argp, void *);
1280
1281static nfsd4_dec nfsd4_dec_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001282 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1283 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1284 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1285 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1286 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1287 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1288 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1289 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1290 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1291 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1292 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1293 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1294 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1295 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1296 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1297 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1298 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1299 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_open_confirm,
1300 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1301 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001302 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001303 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1304 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1305 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1306 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1307 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1308 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1309 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_renew,
1310 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1311 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1312 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1313 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1314 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_setclientid,
1315 [OP_SETCLIENTID_CONFIRM] = (nfsd4_dec)nfsd4_decode_setclientid_confirm,
1316 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1317 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1318 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_release_lockowner,
Benny Halevy347e0ad2008-07-02 11:13:41 +03001319};
1320
Andy Adamson2db134e2009-04-03 08:27:55 +03001321static nfsd4_dec nfsd41_dec_ops[] = {
Randy Dunlap9064caa2009-04-28 16:48:25 -07001322 [OP_ACCESS] = (nfsd4_dec)nfsd4_decode_access,
1323 [OP_CLOSE] = (nfsd4_dec)nfsd4_decode_close,
1324 [OP_COMMIT] = (nfsd4_dec)nfsd4_decode_commit,
1325 [OP_CREATE] = (nfsd4_dec)nfsd4_decode_create,
1326 [OP_DELEGPURGE] = (nfsd4_dec)nfsd4_decode_notsupp,
1327 [OP_DELEGRETURN] = (nfsd4_dec)nfsd4_decode_delegreturn,
1328 [OP_GETATTR] = (nfsd4_dec)nfsd4_decode_getattr,
1329 [OP_GETFH] = (nfsd4_dec)nfsd4_decode_noop,
1330 [OP_LINK] = (nfsd4_dec)nfsd4_decode_link,
1331 [OP_LOCK] = (nfsd4_dec)nfsd4_decode_lock,
1332 [OP_LOCKT] = (nfsd4_dec)nfsd4_decode_lockt,
1333 [OP_LOCKU] = (nfsd4_dec)nfsd4_decode_locku,
1334 [OP_LOOKUP] = (nfsd4_dec)nfsd4_decode_lookup,
1335 [OP_LOOKUPP] = (nfsd4_dec)nfsd4_decode_noop,
1336 [OP_NVERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1337 [OP_OPEN] = (nfsd4_dec)nfsd4_decode_open,
1338 [OP_OPENATTR] = (nfsd4_dec)nfsd4_decode_notsupp,
1339 [OP_OPEN_CONFIRM] = (nfsd4_dec)nfsd4_decode_notsupp,
1340 [OP_OPEN_DOWNGRADE] = (nfsd4_dec)nfsd4_decode_open_downgrade,
1341 [OP_PUTFH] = (nfsd4_dec)nfsd4_decode_putfh,
1342 [OP_PUTPUBFH] = (nfsd4_dec)nfsd4_decode_notsupp,
1343 [OP_PUTROOTFH] = (nfsd4_dec)nfsd4_decode_noop,
1344 [OP_READ] = (nfsd4_dec)nfsd4_decode_read,
1345 [OP_READDIR] = (nfsd4_dec)nfsd4_decode_readdir,
1346 [OP_READLINK] = (nfsd4_dec)nfsd4_decode_noop,
1347 [OP_REMOVE] = (nfsd4_dec)nfsd4_decode_remove,
1348 [OP_RENAME] = (nfsd4_dec)nfsd4_decode_rename,
1349 [OP_RENEW] = (nfsd4_dec)nfsd4_decode_notsupp,
1350 [OP_RESTOREFH] = (nfsd4_dec)nfsd4_decode_noop,
1351 [OP_SAVEFH] = (nfsd4_dec)nfsd4_decode_noop,
1352 [OP_SECINFO] = (nfsd4_dec)nfsd4_decode_secinfo,
1353 [OP_SETATTR] = (nfsd4_dec)nfsd4_decode_setattr,
1354 [OP_SETCLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
1355 [OP_SETCLIENTID_CONFIRM]= (nfsd4_dec)nfsd4_decode_notsupp,
1356 [OP_VERIFY] = (nfsd4_dec)nfsd4_decode_verify,
1357 [OP_WRITE] = (nfsd4_dec)nfsd4_decode_write,
1358 [OP_RELEASE_LOCKOWNER] = (nfsd4_dec)nfsd4_decode_notsupp,
Andy Adamson2db134e2009-04-03 08:27:55 +03001359
1360 /* new operations for NFSv4.1 */
Randy Dunlap9064caa2009-04-28 16:48:25 -07001361 [OP_BACKCHANNEL_CTL] = (nfsd4_dec)nfsd4_decode_notsupp,
1362 [OP_BIND_CONN_TO_SESSION]= (nfsd4_dec)nfsd4_decode_notsupp,
1363 [OP_EXCHANGE_ID] = (nfsd4_dec)nfsd4_decode_exchange_id,
1364 [OP_CREATE_SESSION] = (nfsd4_dec)nfsd4_decode_create_session,
1365 [OP_DESTROY_SESSION] = (nfsd4_dec)nfsd4_decode_destroy_session,
1366 [OP_FREE_STATEID] = (nfsd4_dec)nfsd4_decode_notsupp,
1367 [OP_GET_DIR_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1368 [OP_GETDEVICEINFO] = (nfsd4_dec)nfsd4_decode_notsupp,
1369 [OP_GETDEVICELIST] = (nfsd4_dec)nfsd4_decode_notsupp,
1370 [OP_LAYOUTCOMMIT] = (nfsd4_dec)nfsd4_decode_notsupp,
1371 [OP_LAYOUTGET] = (nfsd4_dec)nfsd4_decode_notsupp,
1372 [OP_LAYOUTRETURN] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001373 [OP_SECINFO_NO_NAME] = (nfsd4_dec)nfsd4_decode_secinfo_no_name,
Randy Dunlap9064caa2009-04-28 16:48:25 -07001374 [OP_SEQUENCE] = (nfsd4_dec)nfsd4_decode_sequence,
1375 [OP_SET_SSV] = (nfsd4_dec)nfsd4_decode_notsupp,
1376 [OP_TEST_STATEID] = (nfsd4_dec)nfsd4_decode_notsupp,
1377 [OP_WANT_DELEGATION] = (nfsd4_dec)nfsd4_decode_notsupp,
1378 [OP_DESTROY_CLIENTID] = (nfsd4_dec)nfsd4_decode_notsupp,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001379 [OP_RECLAIM_COMPLETE] = (nfsd4_dec)nfsd4_decode_reclaim_complete,
Andy Adamson2db134e2009-04-03 08:27:55 +03001380};
1381
Benny Halevyf2feb962008-07-02 11:14:22 +03001382struct nfsd4_minorversion_ops {
1383 nfsd4_dec *decoders;
1384 int nops;
1385};
1386
1387static struct nfsd4_minorversion_ops nfsd4_minorversion[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04001388 [0] = { nfsd4_dec_ops, ARRAY_SIZE(nfsd4_dec_ops) },
Andy Adamson2db134e2009-04-03 08:27:55 +03001389 [1] = { nfsd41_dec_ops, ARRAY_SIZE(nfsd41_dec_ops) },
Benny Halevyf2feb962008-07-02 11:14:22 +03001390};
1391
Benny Halevy347e0ad2008-07-02 11:13:41 +03001392static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393nfsd4_decode_compound(struct nfsd4_compoundargs *argp)
1394{
1395 DECODE_HEAD;
1396 struct nfsd4_op *op;
Benny Halevyf2feb962008-07-02 11:14:22 +03001397 struct nfsd4_minorversion_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 int i;
1399
1400 /*
1401 * XXX: According to spec, we should check the tag
1402 * for UTF-8 compliance. I'm postponing this for
1403 * now because it seems that some clients do use
1404 * binary tags.
1405 */
1406 READ_BUF(4);
1407 READ32(argp->taglen);
1408 READ_BUF(argp->taglen + 8);
1409 SAVEMEM(argp->tag, argp->taglen);
1410 READ32(argp->minorversion);
1411 READ32(argp->opcnt);
1412
1413 if (argp->taglen > NFSD4_MAX_TAGLEN)
1414 goto xdr_error;
1415 if (argp->opcnt > 100)
1416 goto xdr_error;
1417
Tobias Klausere8c96f82006-03-24 03:15:34 -08001418 if (argp->opcnt > ARRAY_SIZE(argp->iops)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL);
1420 if (!argp->ops) {
1421 argp->ops = argp->iops;
Chuck Lever817cb9d2007-09-11 18:01:20 -04001422 dprintk("nfsd: couldn't allocate room for COMPOUND\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 goto xdr_error;
1424 }
1425 }
1426
Benny Halevyf2feb962008-07-02 11:14:22 +03001427 if (argp->minorversion >= ARRAY_SIZE(nfsd4_minorversion))
Benny Halevy30cff1f2008-07-02 11:13:18 +03001428 argp->opcnt = 0;
1429
Benny Halevyf2feb962008-07-02 11:14:22 +03001430 ops = &nfsd4_minorversion[argp->minorversion];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 for (i = 0; i < argp->opcnt; i++) {
1432 op = &argp->ops[i];
1433 op->replay = NULL;
1434
1435 /*
1436 * We can't use READ_BUF() here because we need to handle
1437 * a missing opcode as an OP_WRITE + 1. So we need to check
1438 * to see if we're truly at the end of our buffer or if there
1439 * is another page we need to flip to.
1440 */
1441
1442 if (argp->p == argp->end) {
1443 if (argp->pagelen < 4) {
1444 /* There isn't an opcode still on the wire */
1445 op->opnum = OP_WRITE + 1;
1446 op->status = nfserr_bad_xdr;
1447 argp->opcnt = i+1;
1448 break;
1449 }
1450
1451 /*
1452 * False alarm. We just hit a page boundary, but there
1453 * is still data available. Move pointer across page
1454 * boundary. *snip from READ_BUF*
1455 */
1456 argp->p = page_address(argp->pagelist[0]);
1457 argp->pagelist++;
1458 if (argp->pagelen < PAGE_SIZE) {
Neil Brown2bc3c112010-04-20 12:16:52 +10001459 argp->end = argp->p + (argp->pagelen>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 argp->pagelen = 0;
1461 } else {
Neil Brown2bc3c112010-04-20 12:16:52 +10001462 argp->end = argp->p + (PAGE_SIZE>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 argp->pagelen -= PAGE_SIZE;
1464 }
1465 }
1466 op->opnum = ntohl(*argp->p++);
1467
Ricardo Labiagade3cab72009-12-11 20:03:27 -08001468 if (op->opnum >= FIRST_NFS4_OP && op->opnum <= LAST_NFS4_OP)
Benny Halevyf2feb962008-07-02 11:14:22 +03001469 op->status = ops->decoders[op->opnum](argp, &op->u);
Benny Halevy347e0ad2008-07-02 11:13:41 +03001470 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 op->opnum = OP_ILLEGAL;
1472 op->status = nfserr_op_illegal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474
1475 if (op->status) {
1476 argp->opcnt = i+1;
1477 break;
1478 }
1479 }
1480
1481 DECODE_TAIL;
1482}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484#define WRITE32(n) *p++ = htonl(n)
1485#define WRITE64(n) do { \
1486 *p++ = htonl((u32)((n) >> 32)); \
1487 *p++ = htonl((u32)(n)); \
1488} while (0)
Harvey Harrison5108b272008-07-17 21:33:04 -07001489#define WRITEMEM(ptr,nbytes) do { if (nbytes > 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 *(p + XDR_QUADLEN(nbytes) -1) = 0; \
1491 memcpy(p, ptr, nbytes); \
1492 p += XDR_QUADLEN(nbytes); \
Harvey Harrison5108b272008-07-17 21:33:04 -07001493}} while (0)
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001494
1495static void write32(__be32 **p, u32 n)
1496{
1497 *(*p)++ = n;
1498}
1499
1500static void write64(__be32 **p, u64 n)
1501{
1502 write32(p, (u32)(n >> 32));
1503 write32(p, (u32)n);
1504}
1505
1506static void write_change(__be32 **p, struct kstat *stat, struct inode *inode)
1507{
1508 if (IS_I_VERSION(inode)) {
1509 write64(p, inode->i_version);
1510 } else {
1511 write32(p, stat->ctime.tv_sec);
1512 write32(p, stat->ctime.tv_nsec);
1513 }
1514}
1515
1516static void write_cinfo(__be32 **p, struct nfsd4_change_info *c)
1517{
1518 write32(p, c->atomic);
1519 if (c->change_supported) {
1520 write64(p, c->before_change);
1521 write64(p, c->after_change);
1522 } else {
1523 write32(p, c->before_ctime_sec);
1524 write32(p, c->before_ctime_nsec);
1525 write32(p, c->after_ctime_sec);
1526 write32(p, c->after_ctime_nsec);
1527 }
1528}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530#define RESERVE_SPACE(nbytes) do { \
1531 p = resp->p; \
1532 BUG_ON(p + XDR_QUADLEN(nbytes) > resp->end); \
1533} while (0)
1534#define ADJUST_ARGS() resp->p = p
1535
1536/*
1537 * Header routine to setup seqid operation replay cache
1538 */
1539#define ENCODE_SEQID_OP_HEAD \
Al Viro2ebbc012006-10-19 23:28:58 -07001540 __be32 *save; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 \
1542 save = resp->p;
1543
1544/*
NeilBrown7fb64ce2005-07-07 17:59:20 -07001545 * Routine for encoding the result of a "seqid-mutating" NFSv4 operation. This
1546 * is where sequence id's are incremented, and the replay cache is filled.
1547 * Note that we increment sequence id's here, at the last moment, so we're sure
1548 * we know whether the error to be returned is a sequence id mutating error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 */
1550
1551#define ENCODE_SEQID_OP_TAIL(stateowner) do { \
1552 if (seqid_mutating_err(nfserr) && stateowner) { \
NeilBrownbd9aac52005-07-07 17:59:19 -07001553 stateowner->so_seqid++; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 stateowner->so_replay.rp_status = nfserr; \
1555 stateowner->so_replay.rp_buflen = \
1556 (((char *)(resp)->p - (char *)save)); \
1557 memcpy(stateowner->so_replay.rp_buf, save, \
1558 stateowner->so_replay.rp_buflen); \
1559 } } while (0);
1560
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001561/* Encode as an array of strings the string given with components
Daniel Mack3ad2f3f2010-02-03 08:01:28 +08001562 * separated @sep.
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001563 */
Al Virob37ad282006-10-19 23:28:59 -07001564static __be32 nfsd4_encode_components(char sep, char *components,
Al Viro2ebbc012006-10-19 23:28:58 -07001565 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001566{
Al Viro2ebbc012006-10-19 23:28:58 -07001567 __be32 *p = *pp;
1568 __be32 *countp = p;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001569 int strlen, count=0;
1570 char *str, *end;
1571
1572 dprintk("nfsd4_encode_components(%s)\n", components);
1573 if ((*buflen -= 4) < 0)
1574 return nfserr_resource;
1575 WRITE32(0); /* We will fill this in with @count later */
1576 end = str = components;
1577 while (*end) {
1578 for (; *end && (*end != sep); end++)
1579 ; /* Point to end of component */
1580 strlen = end - str;
1581 if (strlen) {
1582 if ((*buflen -= ((XDR_QUADLEN(strlen) << 2) + 4)) < 0)
1583 return nfserr_resource;
1584 WRITE32(strlen);
1585 WRITEMEM(str, strlen);
1586 count++;
1587 }
1588 else
1589 end++;
1590 str = end;
1591 }
1592 *pp = p;
1593 p = countp;
1594 WRITE32(count);
1595 return 0;
1596}
1597
1598/*
1599 * encode a location element of a fs_locations structure
1600 */
Al Virob37ad282006-10-19 23:28:59 -07001601static __be32 nfsd4_encode_fs_location4(struct nfsd4_fs_location *location,
Al Viro2ebbc012006-10-19 23:28:58 -07001602 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001603{
Al Virob37ad282006-10-19 23:28:59 -07001604 __be32 status;
Al Viro2ebbc012006-10-19 23:28:58 -07001605 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001606
1607 status = nfsd4_encode_components(':', location->hosts, &p, buflen);
1608 if (status)
1609 return status;
1610 status = nfsd4_encode_components('/', location->path, &p, buflen);
1611 if (status)
1612 return status;
1613 *pp = p;
1614 return 0;
1615}
1616
1617/*
1618 * Return the path to an export point in the pseudo filesystem namespace
1619 * Returned string is safe to use as long as the caller holds a reference
1620 * to @exp.
1621 */
Al Virob37ad282006-10-19 23:28:59 -07001622static char *nfsd4_path(struct svc_rqst *rqstp, struct svc_export *exp, __be32 *stat)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001623{
1624 struct svc_fh tmp_fh;
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001625 char *path = NULL, *rootpath;
1626 size_t rootlen;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001627
1628 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -07001629 *stat = exp_pseudoroot(rqstp, &tmp_fh);
Al Virocc45f012006-10-19 23:28:44 -07001630 if (*stat)
1631 return NULL;
Jan Blunck54775492008-02-14 19:38:39 -08001632 rootpath = tmp_fh.fh_export->ex_pathname;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001633
Jan Blunck54775492008-02-14 19:38:39 -08001634 path = exp->ex_pathname;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001635
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001636 rootlen = strlen(rootpath);
1637 if (strncmp(path, rootpath, rootlen)) {
Chuck Lever817cb9d2007-09-11 18:01:20 -04001638 dprintk("nfsd: fs_locations failed;"
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001639 "%s is not contained in %s\n", path, rootpath);
Al Virocc45f012006-10-19 23:28:44 -07001640 *stat = nfserr_notsupp;
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001641 path = NULL;
1642 goto out;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001643 }
Trond Myklebust2671a4b2009-09-02 16:48:32 -04001644 path += rootlen;
1645out:
1646 fh_put(&tmp_fh);
1647 return path;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001648}
1649
1650/*
1651 * encode a fs_locations structure
1652 */
Al Virob37ad282006-10-19 23:28:59 -07001653static __be32 nfsd4_encode_fs_locations(struct svc_rqst *rqstp,
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001654 struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001655 __be32 **pp, int *buflen)
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001656{
Al Virob37ad282006-10-19 23:28:59 -07001657 __be32 status;
Al Virocc45f012006-10-19 23:28:44 -07001658 int i;
Al Viro2ebbc012006-10-19 23:28:58 -07001659 __be32 *p = *pp;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001660 struct nfsd4_fs_locations *fslocs = &exp->ex_fslocs;
Al Virocc45f012006-10-19 23:28:44 -07001661 char *root = nfsd4_path(rqstp, exp, &status);
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001662
Al Virocc45f012006-10-19 23:28:44 -07001663 if (status)
1664 return status;
J.Bruce Fields81c3f412006-10-04 02:16:19 -07001665 status = nfsd4_encode_components('/', root, &p, buflen);
1666 if (status)
1667 return status;
1668 if ((*buflen -= 4) < 0)
1669 return nfserr_resource;
1670 WRITE32(fslocs->locations_count);
1671 for (i=0; i<fslocs->locations_count; i++) {
1672 status = nfsd4_encode_fs_location4(&fslocs->locations[i],
1673 &p, buflen);
1674 if (status)
1675 return status;
1676 }
1677 *pp = p;
1678 return 0;
1679}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681static u32 nfs4_ftypes[16] = {
1682 NF4BAD, NF4FIFO, NF4CHR, NF4BAD,
1683 NF4DIR, NF4BAD, NF4BLK, NF4BAD,
1684 NF4REG, NF4BAD, NF4LNK, NF4BAD,
1685 NF4SOCK, NF4BAD, NF4LNK, NF4BAD,
1686};
1687
Al Virob37ad282006-10-19 23:28:59 -07001688static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689nfsd4_encode_name(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001690 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 int status;
1693
1694 if (*buflen < (XDR_QUADLEN(IDMAP_NAMESZ) << 2) + 4)
1695 return nfserr_resource;
1696 if (whotype != NFS4_ACL_WHO_NAMED)
1697 status = nfs4_acl_write_who(whotype, (u8 *)(*p + 1));
1698 else if (group)
1699 status = nfsd_map_gid_to_name(rqstp, id, (u8 *)(*p + 1));
1700 else
1701 status = nfsd_map_uid_to_name(rqstp, id, (u8 *)(*p + 1));
1702 if (status < 0)
1703 return nfserrno(status);
1704 *p = xdr_encode_opaque(*p, NULL, status);
1705 *buflen -= (XDR_QUADLEN(status) << 2) + 4;
1706 BUG_ON(*buflen < 0);
1707 return 0;
1708}
1709
Al Virob37ad282006-10-19 23:28:59 -07001710static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001711nfsd4_encode_user(struct svc_rqst *rqstp, uid_t uid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
1713 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, uid, 0, p, buflen);
1714}
1715
Al Virob37ad282006-10-19 23:28:59 -07001716static inline __be32
Al Viro2ebbc012006-10-19 23:28:58 -07001717nfsd4_encode_group(struct svc_rqst *rqstp, uid_t gid, __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
1719 return nfsd4_encode_name(rqstp, NFS4_ACL_WHO_NAMED, gid, 1, p, buflen);
1720}
1721
Al Virob37ad282006-10-19 23:28:59 -07001722static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723nfsd4_encode_aclname(struct svc_rqst *rqstp, int whotype, uid_t id, int group,
Al Viro2ebbc012006-10-19 23:28:58 -07001724 __be32 **p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
1726 return nfsd4_encode_name(rqstp, whotype, id, group, p, buflen);
1727}
1728
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001729#define WORD0_ABSENT_FS_ATTRS (FATTR4_WORD0_FS_LOCATIONS | FATTR4_WORD0_FSID | \
1730 FATTR4_WORD0_RDATTR_ERROR)
1731#define WORD1_ABSENT_FS_ATTRS FATTR4_WORD1_MOUNTED_ON_FILEID
1732
Al Virob37ad282006-10-19 23:28:59 -07001733static __be32 fattr_handle_absent_fs(u32 *bmval0, u32 *bmval1, u32 *rdattr_err)
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001734{
1735 /* As per referral draft: */
1736 if (*bmval0 & ~WORD0_ABSENT_FS_ATTRS ||
1737 *bmval1 & ~WORD1_ABSENT_FS_ATTRS) {
1738 if (*bmval0 & FATTR4_WORD0_RDATTR_ERROR ||
1739 *bmval0 & FATTR4_WORD0_FS_LOCATIONS)
1740 *rdattr_err = NFSERR_MOVED;
1741 else
1742 return nfserr_moved;
1743 }
1744 *bmval0 &= WORD0_ABSENT_FS_ATTRS;
1745 *bmval1 &= WORD1_ABSENT_FS_ATTRS;
1746 return 0;
1747}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749/*
1750 * Note: @fhp can be NULL; in this case, we might have to compose the filehandle
1751 * ourselves.
1752 *
1753 * @countp is the buffer size in _words_; upon successful return this becomes
1754 * replaced with the number of words written.
1755 */
Al Virob37ad282006-10-19 23:28:59 -07001756__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757nfsd4_encode_fattr(struct svc_fh *fhp, struct svc_export *exp,
Al Viro2ebbc012006-10-19 23:28:58 -07001758 struct dentry *dentry, __be32 *buffer, int *countp, u32 *bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001759 struct svc_rqst *rqstp, int ignore_crossmnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
1761 u32 bmval0 = bmval[0];
1762 u32 bmval1 = bmval[1];
Andy Adamson7e705702009-04-03 08:29:11 +03001763 u32 bmval2 = bmval[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 struct kstat stat;
1765 struct svc_fh tempfh;
1766 struct kstatfs statfs;
1767 int buflen = *countp << 2;
Al Viro2ebbc012006-10-19 23:28:58 -07001768 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 u32 dummy;
1770 u64 dummy64;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001771 u32 rdattr_err = 0;
Al Viro2ebbc012006-10-19 23:28:58 -07001772 __be32 *p = buffer;
Al Virob37ad282006-10-19 23:28:59 -07001773 __be32 status;
Al Virob8dd7b92006-10-19 23:29:01 -07001774 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 int aclsupport = 0;
1776 struct nfs4_acl *acl = NULL;
Andy Adamson7e705702009-04-03 08:29:11 +03001777 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1778 u32 minorversion = resp->cstate.minorversion;
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001779 struct path path = {
1780 .mnt = exp->ex_path.mnt,
1781 .dentry = dentry,
1782 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 BUG_ON(bmval1 & NFSD_WRITEONLY_ATTRS_WORD1);
Andy Adamson7e705702009-04-03 08:29:11 +03001785 BUG_ON(bmval0 & ~nfsd_suppattrs0(minorversion));
1786 BUG_ON(bmval1 & ~nfsd_suppattrs1(minorversion));
1787 BUG_ON(bmval2 & ~nfsd_suppattrs2(minorversion));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001789 if (exp->ex_fslocs.migrated) {
Andy Adamson7e705702009-04-03 08:29:11 +03001790 BUG_ON(bmval[2]);
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001791 status = fattr_handle_absent_fs(&bmval0, &bmval1, &rdattr_err);
1792 if (status)
1793 goto out;
1794 }
1795
Jan Blunck54775492008-02-14 19:38:39 -08001796 err = vfs_getattr(exp->ex_path.mnt, dentry, &stat);
Al Virob8dd7b92006-10-19 23:29:01 -07001797 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 goto out_nfserr;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04001799 if ((bmval0 & (FATTR4_WORD0_FILES_FREE | FATTR4_WORD0_FILES_TOTAL |
1800 FATTR4_WORD0_MAXNAME)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 (bmval1 & (FATTR4_WORD1_SPACE_AVAIL | FATTR4_WORD1_SPACE_FREE |
1802 FATTR4_WORD1_SPACE_TOTAL))) {
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001803 err = vfs_statfs(&path, &statfs);
Al Virob8dd7b92006-10-19 23:29:01 -07001804 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 goto out_nfserr;
1806 }
1807 if ((bmval0 & (FATTR4_WORD0_FILEHANDLE | FATTR4_WORD0_FSID)) && !fhp) {
1808 fh_init(&tempfh, NFS4_FHSIZE);
1809 status = fh_compose(&tempfh, exp, dentry, NULL);
1810 if (status)
1811 goto out;
1812 fhp = &tempfh;
1813 }
1814 if (bmval0 & (FATTR4_WORD0_ACL | FATTR4_WORD0_ACLSUPPORT
1815 | FATTR4_WORD0_SUPPORTED_ATTRS)) {
Al Virob8dd7b92006-10-19 23:29:01 -07001816 err = nfsd4_get_nfs4_acl(rqstp, dentry, &acl);
1817 aclsupport = (err == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 if (bmval0 & FATTR4_WORD0_ACL) {
Al Virob8dd7b92006-10-19 23:29:01 -07001819 if (err == -EOPNOTSUPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 bmval0 &= ~FATTR4_WORD0_ACL;
Al Virob8dd7b92006-10-19 23:29:01 -07001821 else if (err == -EINVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 status = nfserr_attrnotsupp;
1823 goto out;
Al Virob8dd7b92006-10-19 23:29:01 -07001824 } else if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 goto out_nfserr;
1826 }
1827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001829 if (bmval2) {
1830 if ((buflen -= 16) < 0)
1831 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001832 WRITE32(3);
1833 WRITE32(bmval0);
1834 WRITE32(bmval1);
1835 WRITE32(bmval2);
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001836 } else if (bmval1) {
1837 if ((buflen -= 12) < 0)
1838 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001839 WRITE32(2);
1840 WRITE32(bmval0);
1841 WRITE32(bmval1);
1842 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001843 if ((buflen -= 8) < 0)
1844 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001845 WRITE32(1);
1846 WRITE32(bmval0);
1847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 attrlenp = p++; /* to be backfilled later */
1849
1850 if (bmval0 & FATTR4_WORD0_SUPPORTED_ATTRS) {
Andy Adamson7e705702009-04-03 08:29:11 +03001851 u32 word0 = nfsd_suppattrs0(minorversion);
1852 u32 word1 = nfsd_suppattrs1(minorversion);
1853 u32 word2 = nfsd_suppattrs2(minorversion);
1854
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001855 if (!aclsupport)
1856 word0 &= ~FATTR4_WORD0_ACL;
Andy Adamson7e705702009-04-03 08:29:11 +03001857 if (!word2) {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001858 if ((buflen -= 12) < 0)
1859 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001860 WRITE32(2);
1861 WRITE32(word0);
1862 WRITE32(word1);
1863 } else {
Benny Halevy2b44f1b2010-09-30 20:47:46 +02001864 if ((buflen -= 16) < 0)
1865 goto out_resource;
Andy Adamson7e705702009-04-03 08:29:11 +03001866 WRITE32(3);
1867 WRITE32(word0);
1868 WRITE32(word1);
1869 WRITE32(word2);
1870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872 if (bmval0 & FATTR4_WORD0_TYPE) {
1873 if ((buflen -= 4) < 0)
1874 goto out_resource;
1875 dummy = nfs4_ftypes[(stat.mode & S_IFMT) >> 12];
1876 if (dummy == NF4BAD)
1877 goto out_serverfault;
1878 WRITE32(dummy);
1879 }
1880 if (bmval0 & FATTR4_WORD0_FH_EXPIRE_TYPE) {
1881 if ((buflen -= 4) < 0)
1882 goto out_resource;
NeilBrown49640002005-06-23 22:02:58 -07001883 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
NeilBrowne34ac862005-07-07 17:59:30 -07001884 WRITE32(NFS4_FH_PERSISTENT);
NeilBrown49640002005-06-23 22:02:58 -07001885 else
NeilBrowne34ac862005-07-07 17:59:30 -07001886 WRITE32(NFS4_FH_PERSISTENT|NFS4_FH_VOL_RENAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888 if (bmval0 & FATTR4_WORD0_CHANGE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if ((buflen -= 8) < 0)
1890 goto out_resource;
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04001891 write_change(&p, &stat, dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 }
1893 if (bmval0 & FATTR4_WORD0_SIZE) {
1894 if ((buflen -= 8) < 0)
1895 goto out_resource;
1896 WRITE64(stat.size);
1897 }
1898 if (bmval0 & FATTR4_WORD0_LINK_SUPPORT) {
1899 if ((buflen -= 4) < 0)
1900 goto out_resource;
1901 WRITE32(1);
1902 }
1903 if (bmval0 & FATTR4_WORD0_SYMLINK_SUPPORT) {
1904 if ((buflen -= 4) < 0)
1905 goto out_resource;
1906 WRITE32(1);
1907 }
1908 if (bmval0 & FATTR4_WORD0_NAMED_ATTR) {
1909 if ((buflen -= 4) < 0)
1910 goto out_resource;
1911 WRITE32(0);
1912 }
1913 if (bmval0 & FATTR4_WORD0_FSID) {
1914 if ((buflen -= 16) < 0)
1915 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001916 if (exp->ex_fslocs.migrated) {
1917 WRITE64(NFS4_REFERRAL_FSID_MAJOR);
1918 WRITE64(NFS4_REFERRAL_FSID_MINOR);
NeilBrownaf6a4e22007-02-14 00:33:12 -08001919 } else switch(fsid_source(fhp)) {
1920 case FSIDSOURCE_FSID:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 WRITE64((u64)exp->ex_fsid);
1922 WRITE64((u64)0);
NeilBrownaf6a4e22007-02-14 00:33:12 -08001923 break;
1924 case FSIDSOURCE_DEV:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 WRITE32(0);
1926 WRITE32(MAJOR(stat.dev));
1927 WRITE32(0);
1928 WRITE32(MINOR(stat.dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -08001929 break;
1930 case FSIDSOURCE_UUID:
1931 WRITEMEM(exp->ex_uuid, 16);
1932 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934 }
1935 if (bmval0 & FATTR4_WORD0_UNIQUE_HANDLES) {
1936 if ((buflen -= 4) < 0)
1937 goto out_resource;
1938 WRITE32(0);
1939 }
1940 if (bmval0 & FATTR4_WORD0_LEASE_TIME) {
1941 if ((buflen -= 4) < 0)
1942 goto out_resource;
J. Bruce Fieldscf07d2e2010-02-28 23:20:19 -05001943 WRITE32(nfsd4_lease);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
1945 if (bmval0 & FATTR4_WORD0_RDATTR_ERROR) {
1946 if ((buflen -= 4) < 0)
1947 goto out_resource;
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001948 WRITE32(rdattr_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 }
1950 if (bmval0 & FATTR4_WORD0_ACL) {
1951 struct nfs4_ace *ace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 if (acl == NULL) {
1954 if ((buflen -= 4) < 0)
1955 goto out_resource;
1956
1957 WRITE32(0);
1958 goto out_acl;
1959 }
1960 if ((buflen -= 4) < 0)
1961 goto out_resource;
1962 WRITE32(acl->naces);
1963
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08001964 for (ace = acl->aces; ace < acl->aces + acl->naces; ace++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if ((buflen -= 4*3) < 0)
1966 goto out_resource;
1967 WRITE32(ace->type);
1968 WRITE32(ace->flag);
1969 WRITE32(ace->access_mask & NFS4_ACE_MASK_ALL);
1970 status = nfsd4_encode_aclname(rqstp, ace->whotype,
1971 ace->who, ace->flag & NFS4_ACE_IDENTIFIER_GROUP,
1972 &p, &buflen);
1973 if (status == nfserr_resource)
1974 goto out_resource;
1975 if (status)
1976 goto out;
1977 }
1978 }
1979out_acl:
1980 if (bmval0 & FATTR4_WORD0_ACLSUPPORT) {
1981 if ((buflen -= 4) < 0)
1982 goto out_resource;
1983 WRITE32(aclsupport ?
1984 ACL4_SUPPORT_ALLOW_ACL|ACL4_SUPPORT_DENY_ACL : 0);
1985 }
1986 if (bmval0 & FATTR4_WORD0_CANSETTIME) {
1987 if ((buflen -= 4) < 0)
1988 goto out_resource;
1989 WRITE32(1);
1990 }
1991 if (bmval0 & FATTR4_WORD0_CASE_INSENSITIVE) {
1992 if ((buflen -= 4) < 0)
1993 goto out_resource;
1994 WRITE32(1);
1995 }
1996 if (bmval0 & FATTR4_WORD0_CASE_PRESERVING) {
1997 if ((buflen -= 4) < 0)
1998 goto out_resource;
1999 WRITE32(1);
2000 }
2001 if (bmval0 & FATTR4_WORD0_CHOWN_RESTRICTED) {
2002 if ((buflen -= 4) < 0)
2003 goto out_resource;
2004 WRITE32(1);
2005 }
2006 if (bmval0 & FATTR4_WORD0_FILEHANDLE) {
2007 buflen -= (XDR_QUADLEN(fhp->fh_handle.fh_size) << 2) + 4;
2008 if (buflen < 0)
2009 goto out_resource;
2010 WRITE32(fhp->fh_handle.fh_size);
2011 WRITEMEM(&fhp->fh_handle.fh_base, fhp->fh_handle.fh_size);
2012 }
2013 if (bmval0 & FATTR4_WORD0_FILEID) {
2014 if ((buflen -= 8) < 0)
2015 goto out_resource;
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002016 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018 if (bmval0 & FATTR4_WORD0_FILES_AVAIL) {
2019 if ((buflen -= 8) < 0)
2020 goto out_resource;
2021 WRITE64((u64) statfs.f_ffree);
2022 }
2023 if (bmval0 & FATTR4_WORD0_FILES_FREE) {
2024 if ((buflen -= 8) < 0)
2025 goto out_resource;
2026 WRITE64((u64) statfs.f_ffree);
2027 }
2028 if (bmval0 & FATTR4_WORD0_FILES_TOTAL) {
2029 if ((buflen -= 8) < 0)
2030 goto out_resource;
2031 WRITE64((u64) statfs.f_files);
2032 }
J.Bruce Fields81c3f412006-10-04 02:16:19 -07002033 if (bmval0 & FATTR4_WORD0_FS_LOCATIONS) {
2034 status = nfsd4_encode_fs_locations(rqstp, exp, &p, &buflen);
2035 if (status == nfserr_resource)
2036 goto out_resource;
2037 if (status)
2038 goto out;
2039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (bmval0 & FATTR4_WORD0_HOMOGENEOUS) {
2041 if ((buflen -= 4) < 0)
2042 goto out_resource;
2043 WRITE32(1);
2044 }
2045 if (bmval0 & FATTR4_WORD0_MAXFILESIZE) {
2046 if ((buflen -= 8) < 0)
2047 goto out_resource;
2048 WRITE64(~(u64)0);
2049 }
2050 if (bmval0 & FATTR4_WORD0_MAXLINK) {
2051 if ((buflen -= 4) < 0)
2052 goto out_resource;
2053 WRITE32(255);
2054 }
2055 if (bmval0 & FATTR4_WORD0_MAXNAME) {
2056 if ((buflen -= 4) < 0)
2057 goto out_resource;
J. Bruce Fieldsa16e92e2007-09-28 16:45:51 -04002058 WRITE32(statfs.f_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
2060 if (bmval0 & FATTR4_WORD0_MAXREAD) {
2061 if ((buflen -= 8) < 0)
2062 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002063 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065 if (bmval0 & FATTR4_WORD0_MAXWRITE) {
2066 if ((buflen -= 8) < 0)
2067 goto out_resource;
Greg Banks7adae482006-10-04 02:15:47 -07002068 WRITE64((u64) svc_max_payload(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
2070 if (bmval1 & FATTR4_WORD1_MODE) {
2071 if ((buflen -= 4) < 0)
2072 goto out_resource;
2073 WRITE32(stat.mode & S_IALLUGO);
2074 }
2075 if (bmval1 & FATTR4_WORD1_NO_TRUNC) {
2076 if ((buflen -= 4) < 0)
2077 goto out_resource;
2078 WRITE32(1);
2079 }
2080 if (bmval1 & FATTR4_WORD1_NUMLINKS) {
2081 if ((buflen -= 4) < 0)
2082 goto out_resource;
2083 WRITE32(stat.nlink);
2084 }
2085 if (bmval1 & FATTR4_WORD1_OWNER) {
2086 status = nfsd4_encode_user(rqstp, stat.uid, &p, &buflen);
2087 if (status == nfserr_resource)
2088 goto out_resource;
2089 if (status)
2090 goto out;
2091 }
2092 if (bmval1 & FATTR4_WORD1_OWNER_GROUP) {
2093 status = nfsd4_encode_group(rqstp, stat.gid, &p, &buflen);
2094 if (status == nfserr_resource)
2095 goto out_resource;
2096 if (status)
2097 goto out;
2098 }
2099 if (bmval1 & FATTR4_WORD1_RAWDEV) {
2100 if ((buflen -= 8) < 0)
2101 goto out_resource;
2102 WRITE32((u32) MAJOR(stat.rdev));
2103 WRITE32((u32) MINOR(stat.rdev));
2104 }
2105 if (bmval1 & FATTR4_WORD1_SPACE_AVAIL) {
2106 if ((buflen -= 8) < 0)
2107 goto out_resource;
2108 dummy64 = (u64)statfs.f_bavail * (u64)statfs.f_bsize;
2109 WRITE64(dummy64);
2110 }
2111 if (bmval1 & FATTR4_WORD1_SPACE_FREE) {
2112 if ((buflen -= 8) < 0)
2113 goto out_resource;
2114 dummy64 = (u64)statfs.f_bfree * (u64)statfs.f_bsize;
2115 WRITE64(dummy64);
2116 }
2117 if (bmval1 & FATTR4_WORD1_SPACE_TOTAL) {
2118 if ((buflen -= 8) < 0)
2119 goto out_resource;
2120 dummy64 = (u64)statfs.f_blocks * (u64)statfs.f_bsize;
2121 WRITE64(dummy64);
2122 }
2123 if (bmval1 & FATTR4_WORD1_SPACE_USED) {
2124 if ((buflen -= 8) < 0)
2125 goto out_resource;
2126 dummy64 = (u64)stat.blocks << 9;
2127 WRITE64(dummy64);
2128 }
2129 if (bmval1 & FATTR4_WORD1_TIME_ACCESS) {
2130 if ((buflen -= 12) < 0)
2131 goto out_resource;
2132 WRITE32(0);
2133 WRITE32(stat.atime.tv_sec);
2134 WRITE32(stat.atime.tv_nsec);
2135 }
2136 if (bmval1 & FATTR4_WORD1_TIME_DELTA) {
2137 if ((buflen -= 12) < 0)
2138 goto out_resource;
2139 WRITE32(0);
2140 WRITE32(1);
2141 WRITE32(0);
2142 }
2143 if (bmval1 & FATTR4_WORD1_TIME_METADATA) {
2144 if ((buflen -= 12) < 0)
2145 goto out_resource;
2146 WRITE32(0);
2147 WRITE32(stat.ctime.tv_sec);
2148 WRITE32(stat.ctime.tv_nsec);
2149 }
2150 if (bmval1 & FATTR4_WORD1_TIME_MODIFY) {
2151 if ((buflen -= 12) < 0)
2152 goto out_resource;
2153 WRITE32(0);
2154 WRITE32(stat.mtime.tv_sec);
2155 WRITE32(stat.mtime.tv_nsec);
2156 }
2157 if (bmval1 & FATTR4_WORD1_MOUNTED_ON_FILEID) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 if ((buflen -= 8) < 0)
2159 goto out_resource;
Frank Filz406a7ea2007-11-27 11:34:05 -08002160 /*
2161 * Get parent's attributes if not ignoring crossmount
2162 * and this is the root of a cross-mounted filesystem.
2163 */
2164 if (ignore_crossmnt == 0 &&
Al Viro462d6052010-01-30 16:11:21 -05002165 dentry == exp->ex_path.mnt->mnt_root) {
2166 struct path path = exp->ex_path;
2167 path_get(&path);
2168 while (follow_up(&path)) {
2169 if (path.dentry != path.mnt->mnt_root)
2170 break;
2171 }
2172 err = vfs_getattr(path.mnt, path.dentry, &stat);
2173 path_put(&path);
Peter Staubach40ee5dc2007-08-16 12:10:07 -04002174 if (err)
2175 goto out_nfserr;
2176 }
2177 WRITE64(stat.ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
Benny Halevy8c18f202009-04-03 08:29:14 +03002179 if (bmval2 & FATTR4_WORD2_SUPPATTR_EXCLCREAT) {
2180 WRITE32(3);
2181 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD0);
2182 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD1);
2183 WRITE32(NFSD_SUPPATTR_EXCLCREAT_WORD2);
2184 }
Andy Adamson7e705702009-04-03 08:29:11 +03002185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2187 *countp = p - buffer;
2188 status = nfs_ok;
2189
2190out:
J. Bruce Fields28e05dd2007-02-16 01:28:30 -08002191 kfree(acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 if (fhp == &tempfh)
2193 fh_put(&tempfh);
2194 return status;
2195out_nfserr:
Al Virob8dd7b92006-10-19 23:29:01 -07002196 status = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 goto out;
2198out_resource:
2199 *countp = 0;
2200 status = nfserr_resource;
2201 goto out;
2202out_serverfault:
2203 status = nfserr_serverfault;
2204 goto out;
2205}
2206
J. Bruce Fieldsc0ce6ec2008-02-11 15:48:47 -05002207static inline int attributes_need_mount(u32 *bmval)
2208{
2209 if (bmval[0] & ~(FATTR4_WORD0_RDATTR_ERROR | FATTR4_WORD0_LEASE_TIME))
2210 return 1;
2211 if (bmval[1] & ~FATTR4_WORD1_MOUNTED_ON_FILEID)
2212 return 1;
2213 return 0;
2214}
2215
Al Virob37ad282006-10-19 23:28:59 -07002216static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217nfsd4_encode_dirent_fattr(struct nfsd4_readdir *cd,
Al Viro2ebbc012006-10-19 23:28:58 -07002218 const char *name, int namlen, __be32 *p, int *buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
2220 struct svc_export *exp = cd->rd_fhp->fh_export;
2221 struct dentry *dentry;
Al Virob37ad282006-10-19 23:28:59 -07002222 __be32 nfserr;
Frank Filz406a7ea2007-11-27 11:34:05 -08002223 int ignore_crossmnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 dentry = lookup_one_len(name, cd->rd_fhp->fh_dentry, namlen);
2226 if (IS_ERR(dentry))
2227 return nfserrno(PTR_ERR(dentry));
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002228 if (!dentry->d_inode) {
2229 /*
2230 * nfsd_buffered_readdir drops the i_mutex between
2231 * readdir and calling this callback, leaving a window
2232 * where this directory entry could have gone away.
2233 */
2234 dput(dentry);
2235 return nfserr_noent;
2236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 exp_get(exp);
Frank Filz406a7ea2007-11-27 11:34:05 -08002239 /*
2240 * In the case of a mountpoint, the client may be asking for
2241 * attributes that are only properties of the underlying filesystem
2242 * as opposed to the cross-mounted file system. In such a case,
2243 * we will not follow the cross mount and will fill the attribtutes
2244 * directly from the mountpoint dentry.
2245 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002246 if (nfsd_mountpoint(dentry, exp)) {
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002247 int err;
2248
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002249 if (!(exp->ex_flags & NFSEXP_V4ROOT)
2250 && !attributes_need_mount(cd->rd_bmval)) {
2251 ignore_crossmnt = 1;
2252 goto out_encode;
2253 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002254 /*
2255 * Why the heck aren't we just using nfsd_lookup??
2256 * Different "."/".." handling? Something else?
2257 * At least, add a comment here to explain....
2258 */
J.Bruce Fields021d3a72006-12-13 00:35:24 -08002259 err = nfsd_cross_mnt(cd->rd_rqstp, &dentry, &exp);
2260 if (err) {
2261 nfserr = nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 goto out_put;
2263 }
Andy Adamsondcb488a32007-07-17 04:04:51 -07002264 nfserr = check_nfsd_access(exp, cd->rd_rqstp);
2265 if (nfserr)
2266 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 }
J. Bruce Fields3227fa42009-10-25 21:43:01 -04002269out_encode:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 nfserr = nfsd4_encode_fattr(NULL, exp, dentry, p, buflen, cd->rd_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002271 cd->rd_rqstp, ignore_crossmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272out_put:
2273 dput(dentry);
2274 exp_put(exp);
2275 return nfserr;
2276}
2277
Al Viro2ebbc012006-10-19 23:28:58 -07002278static __be32 *
Al Virob37ad282006-10-19 23:28:59 -07002279nfsd4_encode_rdattr_error(__be32 *p, int buflen, __be32 nfserr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Al Viro2ebbc012006-10-19 23:28:58 -07002281 __be32 *attrlenp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 if (buflen < 6)
2284 return NULL;
2285 *p++ = htonl(2);
2286 *p++ = htonl(FATTR4_WORD0_RDATTR_ERROR); /* bmval0 */
2287 *p++ = htonl(0); /* bmval1 */
2288
2289 attrlenp = p++;
2290 *p++ = nfserr; /* no htonl */
2291 *attrlenp = htonl((char *)p - (char *)attrlenp - 4);
2292 return p;
2293}
2294
2295static int
NeilBrowna0ad13e2007-01-26 00:57:10 -08002296nfsd4_encode_dirent(void *ccdv, const char *name, int namlen,
2297 loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
NeilBrowna0ad13e2007-01-26 00:57:10 -08002299 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 struct nfsd4_readdir *cd = container_of(ccd, struct nfsd4_readdir, common);
2301 int buflen;
Al Viro2ebbc012006-10-19 23:28:58 -07002302 __be32 *p = cd->buffer;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002303 __be32 *cookiep;
Al Virob37ad282006-10-19 23:28:59 -07002304 __be32 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306 /* In nfsv4, "." and ".." never make it onto the wire.. */
2307 if (name && isdotent(name, namlen)) {
2308 cd->common.err = nfs_ok;
2309 return 0;
2310 }
2311
2312 if (cd->offset)
2313 xdr_encode_hyper(cd->offset, (u64) offset);
2314
2315 buflen = cd->buflen - 4 - XDR_QUADLEN(namlen);
2316 if (buflen < 0)
2317 goto fail;
2318
2319 *p++ = xdr_one; /* mark entry present */
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002320 cookiep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 p = xdr_encode_hyper(p, NFS_OFFSET_MAX); /* offset of next entry */
2322 p = xdr_encode_array(p, name, namlen); /* name length & name */
2323
2324 nfserr = nfsd4_encode_dirent_fattr(cd, name, namlen, p, &buflen);
2325 switch (nfserr) {
2326 case nfs_ok:
2327 p += buflen;
2328 break;
2329 case nfserr_resource:
2330 nfserr = nfserr_toosmall;
2331 goto fail;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002332 case nfserr_noent:
2333 goto skip_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 default:
2335 /*
2336 * If the client requested the RDATTR_ERROR attribute,
2337 * we stuff the error code into this attribute
2338 * and continue. If this attribute was not requested,
2339 * then in accordance with the spec, we fail the
2340 * entire READDIR operation(!)
2341 */
2342 if (!(cd->rd_bmval[0] & FATTR4_WORD0_RDATTR_ERROR))
2343 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 p = nfsd4_encode_rdattr_error(p, buflen, nfserr);
Fred Isaman34081ef2006-01-18 17:43:40 -08002345 if (p == NULL) {
2346 nfserr = nfserr_toosmall;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 goto fail;
Fred Isaman34081ef2006-01-18 17:43:40 -08002348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 }
2350 cd->buflen -= (p - cd->buffer);
2351 cd->buffer = p;
J. Bruce Fieldsb2c0cea2009-05-05 19:04:29 -04002352 cd->offset = cookiep;
2353skip_entry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 cd->common.err = nfs_ok;
2355 return 0;
2356fail:
2357 cd->common.err = nfserr;
2358 return -EINVAL;
2359}
2360
Benny Halevye2f282b2008-08-12 20:45:07 +03002361static void
2362nfsd4_encode_stateid(struct nfsd4_compoundres *resp, stateid_t *sid)
2363{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002364 __be32 *p;
Benny Halevye2f282b2008-08-12 20:45:07 +03002365
2366 RESERVE_SPACE(sizeof(stateid_t));
2367 WRITE32(sid->si_generation);
2368 WRITEMEM(&sid->si_opaque, sizeof(stateid_opaque_t));
2369 ADJUST_ARGS();
2370}
2371
Benny Halevy695e12f2008-07-04 14:38:33 +03002372static __be32
Al Virob37ad282006-10-19 23:28:59 -07002373nfsd4_encode_access(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002375 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 if (!nfserr) {
2378 RESERVE_SPACE(8);
2379 WRITE32(access->ac_supported);
2380 WRITE32(access->ac_resp_access);
2381 ADJUST_ARGS();
2382 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002383 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384}
2385
Benny Halevy695e12f2008-07-04 14:38:33 +03002386static __be32
Al Virob37ad282006-10-19 23:28:59 -07002387nfsd4_encode_close(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_close *close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
2389 ENCODE_SEQID_OP_HEAD;
2390
Benny Halevye2f282b2008-08-12 20:45:07 +03002391 if (!nfserr)
2392 nfsd4_encode_stateid(resp, &close->cl_stateid);
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 ENCODE_SEQID_OP_TAIL(close->cl_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002395 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396}
2397
2398
Benny Halevy695e12f2008-07-04 14:38:33 +03002399static __be32
Al Virob37ad282006-10-19 23:28:59 -07002400nfsd4_encode_commit(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002402 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404 if (!nfserr) {
2405 RESERVE_SPACE(8);
2406 WRITEMEM(commit->co_verf.data, 8);
2407 ADJUST_ARGS();
2408 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002409 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
Benny Halevy695e12f2008-07-04 14:38:33 +03002412static __be32
Al Virob37ad282006-10-19 23:28:59 -07002413nfsd4_encode_create(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002415 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 if (!nfserr) {
2418 RESERVE_SPACE(32);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002419 write_cinfo(&p, &create->cr_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 WRITE32(2);
2421 WRITE32(create->cr_bmval[0]);
2422 WRITE32(create->cr_bmval[1]);
2423 ADJUST_ARGS();
2424 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002425 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426}
2427
Al Virob37ad282006-10-19 23:28:59 -07002428static __be32
2429nfsd4_encode_getattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
2431 struct svc_fh *fhp = getattr->ga_fhp;
2432 int buflen;
2433
2434 if (nfserr)
2435 return nfserr;
2436
2437 buflen = resp->end - resp->p - (COMPOUND_ERR_SLACK_SPACE >> 2);
2438 nfserr = nfsd4_encode_fattr(fhp, fhp->fh_export, fhp->fh_dentry,
2439 resp->p, &buflen, getattr->ga_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08002440 resp->rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (!nfserr)
2442 resp->p += buflen;
2443 return nfserr;
2444}
2445
Benny Halevy695e12f2008-07-04 14:38:33 +03002446static __be32
2447nfsd4_encode_getfh(struct nfsd4_compoundres *resp, __be32 nfserr, struct svc_fh **fhpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
Benny Halevy695e12f2008-07-04 14:38:33 +03002449 struct svc_fh *fhp = *fhpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 unsigned int len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002451 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 if (!nfserr) {
2454 len = fhp->fh_handle.fh_size;
2455 RESERVE_SPACE(len + 4);
2456 WRITE32(len);
2457 WRITEMEM(&fhp->fh_handle.fh_base, len);
2458 ADJUST_ARGS();
2459 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002460 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
2463/*
2464* Including all fields other than the name, a LOCK4denied structure requires
2465* 8(clientid) + 4(namelen) + 8(offset) + 8(length) + 4(type) = 32 bytes.
2466*/
2467static void
2468nfsd4_encode_lock_denied(struct nfsd4_compoundres *resp, struct nfsd4_lock_denied *ld)
2469{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002470 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472 RESERVE_SPACE(32 + XDR_LEN(ld->ld_sop ? ld->ld_sop->so_owner.len : 0));
2473 WRITE64(ld->ld_start);
2474 WRITE64(ld->ld_length);
2475 WRITE32(ld->ld_type);
2476 if (ld->ld_sop) {
2477 WRITEMEM(&ld->ld_clientid, 8);
2478 WRITE32(ld->ld_sop->so_owner.len);
2479 WRITEMEM(ld->ld_sop->so_owner.data, ld->ld_sop->so_owner.len);
2480 kref_put(&ld->ld_sop->so_ref, nfs4_free_stateowner);
2481 } else { /* non - nfsv4 lock in conflict, no clientid nor owner */
2482 WRITE64((u64)0); /* clientid */
2483 WRITE32(0); /* length of owner name */
2484 }
2485 ADJUST_ARGS();
2486}
2487
Benny Halevy695e12f2008-07-04 14:38:33 +03002488static __be32
Al Virob37ad282006-10-19 23:28:59 -07002489nfsd4_encode_lock(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 ENCODE_SEQID_OP_HEAD;
2492
Benny Halevye2f282b2008-08-12 20:45:07 +03002493 if (!nfserr)
2494 nfsd4_encode_stateid(resp, &lock->lk_resp_stateid);
2495 else if (nfserr == nfserr_denied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 nfsd4_encode_lock_denied(resp, &lock->lk_denied);
2497
J. Bruce Fields3a655882006-01-18 17:43:19 -08002498 ENCODE_SEQID_OP_TAIL(lock->lk_replay_owner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002499 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500}
2501
Benny Halevy695e12f2008-07-04 14:38:33 +03002502static __be32
Al Virob37ad282006-10-19 23:28:59 -07002503nfsd4_encode_lockt(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_lockt *lockt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
2505 if (nfserr == nfserr_denied)
2506 nfsd4_encode_lock_denied(resp, &lockt->lt_denied);
Benny Halevy695e12f2008-07-04 14:38:33 +03002507 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508}
2509
Benny Halevy695e12f2008-07-04 14:38:33 +03002510static __be32
Al Virob37ad282006-10-19 23:28:59 -07002511nfsd4_encode_locku(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_locku *locku)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
2513 ENCODE_SEQID_OP_HEAD;
2514
Benny Halevye2f282b2008-08-12 20:45:07 +03002515 if (!nfserr)
2516 nfsd4_encode_stateid(resp, &locku->lu_stateid);
2517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 ENCODE_SEQID_OP_TAIL(locku->lu_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002519 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520}
2521
2522
Benny Halevy695e12f2008-07-04 14:38:33 +03002523static __be32
Al Virob37ad282006-10-19 23:28:59 -07002524nfsd4_encode_link(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002526 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528 if (!nfserr) {
2529 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002530 write_cinfo(&p, &link->li_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 ADJUST_ARGS();
2532 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002533 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534}
2535
2536
Benny Halevy695e12f2008-07-04 14:38:33 +03002537static __be32
Al Virob37ad282006-10-19 23:28:59 -07002538nfsd4_encode_open(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002540 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 ENCODE_SEQID_OP_HEAD;
2542
2543 if (nfserr)
2544 goto out;
2545
Benny Halevye2f282b2008-08-12 20:45:07 +03002546 nfsd4_encode_stateid(resp, &open->op_stateid);
2547 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002548 write_cinfo(&p, &open->op_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 WRITE32(open->op_rflags);
2550 WRITE32(2);
2551 WRITE32(open->op_bmval[0]);
2552 WRITE32(open->op_bmval[1]);
2553 WRITE32(open->op_delegate_type);
2554 ADJUST_ARGS();
2555
2556 switch (open->op_delegate_type) {
2557 case NFS4_OPEN_DELEGATE_NONE:
2558 break;
2559 case NFS4_OPEN_DELEGATE_READ:
Benny Halevye2f282b2008-08-12 20:45:07 +03002560 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2561 RESERVE_SPACE(20);
NeilBrown7b190fe2005-06-23 22:03:23 -07002562 WRITE32(open->op_recall);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
2564 /*
2565 * TODO: ACE's in delegations
2566 */
2567 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2568 WRITE32(0);
2569 WRITE32(0);
2570 WRITE32(0); /* XXX: is NULL principal ok? */
2571 ADJUST_ARGS();
2572 break;
2573 case NFS4_OPEN_DELEGATE_WRITE:
Benny Halevye2f282b2008-08-12 20:45:07 +03002574 nfsd4_encode_stateid(resp, &open->op_delegate_stateid);
2575 RESERVE_SPACE(32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 WRITE32(0);
2577
2578 /*
2579 * TODO: space_limit's in delegations
2580 */
2581 WRITE32(NFS4_LIMIT_SIZE);
2582 WRITE32(~(u32)0);
2583 WRITE32(~(u32)0);
2584
2585 /*
2586 * TODO: ACE's in delegations
2587 */
2588 WRITE32(NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE);
2589 WRITE32(0);
2590 WRITE32(0);
2591 WRITE32(0); /* XXX: is NULL principal ok? */
2592 ADJUST_ARGS();
2593 break;
2594 default:
2595 BUG();
2596 }
2597 /* XXX save filehandle here */
2598out:
2599 ENCODE_SEQID_OP_TAIL(open->op_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002600 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601}
2602
Benny Halevy695e12f2008-07-04 14:38:33 +03002603static __be32
Al Virob37ad282006-10-19 23:28:59 -07002604nfsd4_encode_open_confirm(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_confirm *oc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
2606 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002607
2608 if (!nfserr)
2609 nfsd4_encode_stateid(resp, &oc->oc_resp_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611 ENCODE_SEQID_OP_TAIL(oc->oc_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002612 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613}
2614
Benny Halevy695e12f2008-07-04 14:38:33 +03002615static __be32
Al Virob37ad282006-10-19 23:28:59 -07002616nfsd4_encode_open_downgrade(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_open_downgrade *od)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
2618 ENCODE_SEQID_OP_HEAD;
Benny Halevye2f282b2008-08-12 20:45:07 +03002619
2620 if (!nfserr)
2621 nfsd4_encode_stateid(resp, &od->od_stateid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623 ENCODE_SEQID_OP_TAIL(od->od_stateowner);
Benny Halevy695e12f2008-07-04 14:38:33 +03002624 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625}
2626
Al Virob37ad282006-10-19 23:28:59 -07002627static __be32
2628nfsd4_encode_read(struct nfsd4_compoundres *resp, __be32 nfserr,
NeilBrown44524352006-10-04 02:15:46 -07002629 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
2631 u32 eof;
2632 int v, pn;
2633 unsigned long maxcount;
2634 long len;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002635 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 if (nfserr)
2638 return nfserr;
2639 if (resp->xbuf->page_len)
2640 return nfserr_resource;
2641
2642 RESERVE_SPACE(8); /* eof flag and byte count */
2643
Greg Banks7adae482006-10-04 02:15:47 -07002644 maxcount = svc_max_payload(resp->rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (maxcount > read->rd_length)
2646 maxcount = read->rd_length;
2647
2648 len = maxcount;
2649 v = 0;
2650 while (len > 0) {
NeilBrown44524352006-10-04 02:15:46 -07002651 pn = resp->rqstp->rq_resused++;
NeilBrown3cc03b12006-10-04 02:15:47 -07002652 resp->rqstp->rq_vec[v].iov_base =
NeilBrown44524352006-10-04 02:15:46 -07002653 page_address(resp->rqstp->rq_respages[pn]);
NeilBrown3cc03b12006-10-04 02:15:47 -07002654 resp->rqstp->rq_vec[v].iov_len =
NeilBrown44524352006-10-04 02:15:46 -07002655 len < PAGE_SIZE ? len : PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 v++;
2657 len -= PAGE_SIZE;
2658 }
2659 read->rd_vlen = v;
2660
J. Bruce Fields039a87c2010-07-30 11:33:32 -04002661 nfserr = nfsd_read_file(read->rd_rqstp, read->rd_fhp, read->rd_filp,
NeilBrown3cc03b12006-10-04 02:15:47 -07002662 read->rd_offset, resp->rqstp->rq_vec, read->rd_vlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 &maxcount);
2664
2665 if (nfserr == nfserr_symlink)
2666 nfserr = nfserr_inval;
2667 if (nfserr)
2668 return nfserr;
NeilBrown44524352006-10-04 02:15:46 -07002669 eof = (read->rd_offset + maxcount >=
2670 read->rd_fhp->fh_dentry->d_inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 WRITE32(eof);
2673 WRITE32(maxcount);
2674 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002675 resp->xbuf->head[0].iov_len = (char*)p
2676 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 resp->xbuf->page_len = maxcount;
2678
NeilBrown6ed6dec2006-04-10 22:55:32 -07002679 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002680 resp->xbuf->tail[0].iov_base = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002683 RESERVE_SPACE(4);
2684 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 resp->xbuf->tail[0].iov_base += maxcount&3;
2686 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002687 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 }
2689 return 0;
2690}
2691
Al Virob37ad282006-10-19 23:28:59 -07002692static __be32
2693nfsd4_encode_readlink(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
2695 int maxcount;
2696 char *page;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002697 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
2699 if (nfserr)
2700 return nfserr;
2701 if (resp->xbuf->page_len)
2702 return nfserr_resource;
2703
NeilBrown44524352006-10-04 02:15:46 -07002704 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706 maxcount = PAGE_SIZE;
2707 RESERVE_SPACE(4);
2708
2709 /*
2710 * XXX: By default, the ->readlink() VFS op will truncate symlinks
2711 * if they would overflow the buffer. Is this kosher in NFSv4? If
2712 * not, one easy fix is: if ->readlink() precisely fills the buffer,
2713 * assume that truncation occurred, and return NFS4ERR_RESOURCE.
2714 */
2715 nfserr = nfsd_readlink(readlink->rl_rqstp, readlink->rl_fhp, page, &maxcount);
2716 if (nfserr == nfserr_isdir)
2717 return nfserr_inval;
2718 if (nfserr)
2719 return nfserr;
2720
2721 WRITE32(maxcount);
2722 ADJUST_ARGS();
NeilBrown6ed6dec2006-04-10 22:55:32 -07002723 resp->xbuf->head[0].iov_len = (char*)p
2724 - (char*)resp->xbuf->head[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 resp->xbuf->page_len = maxcount;
NeilBrown6ed6dec2006-04-10 22:55:32 -07002726
2727 /* Use rest of head for padding and remaining ops: */
NeilBrown6ed6dec2006-04-10 22:55:32 -07002728 resp->xbuf->tail[0].iov_base = p;
2729 resp->xbuf->tail[0].iov_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 if (maxcount&3) {
NeilBrown6ed6dec2006-04-10 22:55:32 -07002731 RESERVE_SPACE(4);
2732 WRITE32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 resp->xbuf->tail[0].iov_base += maxcount&3;
2734 resp->xbuf->tail[0].iov_len = 4 - (maxcount&3);
NeilBrown6ed6dec2006-04-10 22:55:32 -07002735 ADJUST_ARGS();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 }
2737 return 0;
2738}
2739
Al Virob37ad282006-10-19 23:28:59 -07002740static __be32
2741nfsd4_encode_readdir(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742{
2743 int maxcount;
2744 loff_t offset;
Al Viro2ebbc012006-10-19 23:28:58 -07002745 __be32 *page, *savep, *tailbase;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002746 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
2748 if (nfserr)
2749 return nfserr;
2750 if (resp->xbuf->page_len)
2751 return nfserr_resource;
2752
2753 RESERVE_SPACE(8); /* verifier */
2754 savep = p;
2755
2756 /* XXX: Following NFSv3, we ignore the READDIR verifier for now. */
2757 WRITE32(0);
2758 WRITE32(0);
2759 ADJUST_ARGS();
2760 resp->xbuf->head[0].iov_len = ((char*)resp->p) - (char*)resp->xbuf->head[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002761 tailbase = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 maxcount = PAGE_SIZE;
2764 if (maxcount > readdir->rd_maxcount)
2765 maxcount = readdir->rd_maxcount;
2766
2767 /*
2768 * Convert from bytes to words, account for the two words already
2769 * written, make sure to leave two words at the end for the next
2770 * pointer and eof field.
2771 */
2772 maxcount = (maxcount >> 2) - 4;
2773 if (maxcount < 0) {
2774 nfserr = nfserr_toosmall;
2775 goto err_no_verf;
2776 }
2777
NeilBrown44524352006-10-04 02:15:46 -07002778 page = page_address(resp->rqstp->rq_respages[resp->rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 readdir->common.err = 0;
2780 readdir->buflen = maxcount;
2781 readdir->buffer = page;
2782 readdir->offset = NULL;
2783
2784 offset = readdir->rd_cookie;
2785 nfserr = nfsd_readdir(readdir->rd_rqstp, readdir->rd_fhp,
2786 &offset,
2787 &readdir->common, nfsd4_encode_dirent);
2788 if (nfserr == nfs_ok &&
2789 readdir->common.err == nfserr_toosmall &&
2790 readdir->buffer == page)
2791 nfserr = nfserr_toosmall;
2792 if (nfserr == nfserr_symlink)
2793 nfserr = nfserr_notdir;
2794 if (nfserr)
2795 goto err_no_verf;
2796
2797 if (readdir->offset)
2798 xdr_encode_hyper(readdir->offset, offset);
2799
2800 p = readdir->buffer;
2801 *p++ = 0; /* no more entries */
2802 *p++ = htonl(readdir->common.err == nfserr_eof);
NeilBrown44524352006-10-04 02:15:46 -07002803 resp->xbuf->page_len = ((char*)p) - (char*)page_address(
2804 resp->rqstp->rq_respages[resp->rqstp->rq_resused-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
NeilBrownbb6e8a92006-04-10 22:55:33 -07002806 /* Use rest of head for padding and remaining ops: */
NeilBrownbb6e8a92006-04-10 22:55:33 -07002807 resp->xbuf->tail[0].iov_base = tailbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 resp->xbuf->tail[0].iov_len = 0;
2809 resp->p = resp->xbuf->tail[0].iov_base;
NeilBrownbb6e8a92006-04-10 22:55:33 -07002810 resp->end = resp->p + (PAGE_SIZE - resp->xbuf->head[0].iov_len)/4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
2812 return 0;
2813err_no_verf:
2814 p = savep;
2815 ADJUST_ARGS();
2816 return nfserr;
2817}
2818
Benny Halevy695e12f2008-07-04 14:38:33 +03002819static __be32
Al Virob37ad282006-10-19 23:28:59 -07002820nfsd4_encode_remove(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002822 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
2824 if (!nfserr) {
2825 RESERVE_SPACE(20);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002826 write_cinfo(&p, &remove->rm_cinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 ADJUST_ARGS();
2828 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002829 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830}
2831
Benny Halevy695e12f2008-07-04 14:38:33 +03002832static __be32
Al Virob37ad282006-10-19 23:28:59 -07002833nfsd4_encode_rename(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002835 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
2837 if (!nfserr) {
2838 RESERVE_SPACE(40);
J. Bruce Fieldsc654b8a2009-04-16 17:33:25 -04002839 write_cinfo(&p, &rename->rn_sinfo);
2840 write_cinfo(&p, &rename->rn_tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 ADJUST_ARGS();
2842 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002843 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844}
2845
Benny Halevy695e12f2008-07-04 14:38:33 +03002846static __be32
Mi Jinlong22b6dee2010-12-27 14:29:57 +08002847nfsd4_do_encode_secinfo(struct nfsd4_compoundres *resp,
2848 __be32 nfserr,struct svc_export *exp)
Andy Adamsondcb488a32007-07-17 04:04:51 -07002849{
2850 int i = 0;
J. Bruce Fields4796f452007-07-17 04:04:51 -07002851 u32 nflavs;
2852 struct exp_flavor_info *flavs;
2853 struct exp_flavor_info def_flavs[2];
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002854 __be32 *p;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002855
2856 if (nfserr)
2857 goto out;
J. Bruce Fields4796f452007-07-17 04:04:51 -07002858 if (exp->ex_nflavors) {
2859 flavs = exp->ex_flavors;
2860 nflavs = exp->ex_nflavors;
2861 } else { /* Handling of some defaults in absence of real secinfo: */
2862 flavs = def_flavs;
2863 if (exp->ex_client->flavour->flavour == RPC_AUTH_UNIX) {
2864 nflavs = 2;
2865 flavs[0].pseudoflavor = RPC_AUTH_UNIX;
2866 flavs[1].pseudoflavor = RPC_AUTH_NULL;
2867 } else if (exp->ex_client->flavour->flavour == RPC_AUTH_GSS) {
2868 nflavs = 1;
2869 flavs[0].pseudoflavor
2870 = svcauth_gss_flavor(exp->ex_client);
2871 } else {
2872 nflavs = 1;
2873 flavs[0].pseudoflavor
2874 = exp->ex_client->flavour->flavour;
2875 }
2876 }
2877
Andy Adamsondcb488a32007-07-17 04:04:51 -07002878 RESERVE_SPACE(4);
J. Bruce Fields4796f452007-07-17 04:04:51 -07002879 WRITE32(nflavs);
Andy Adamsondcb488a32007-07-17 04:04:51 -07002880 ADJUST_ARGS();
J. Bruce Fields4796f452007-07-17 04:04:51 -07002881 for (i = 0; i < nflavs; i++) {
2882 u32 flav = flavs[i].pseudoflavor;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002883 struct gss_api_mech *gm = gss_mech_get_by_pseudoflavor(flav);
2884
2885 if (gm) {
2886 RESERVE_SPACE(4);
2887 WRITE32(RPC_AUTH_GSS);
2888 ADJUST_ARGS();
2889 RESERVE_SPACE(4 + gm->gm_oid.len);
2890 WRITE32(gm->gm_oid.len);
2891 WRITEMEM(gm->gm_oid.data, gm->gm_oid.len);
2892 ADJUST_ARGS();
2893 RESERVE_SPACE(4);
2894 WRITE32(0); /* qop */
2895 ADJUST_ARGS();
2896 RESERVE_SPACE(4);
2897 WRITE32(gss_pseudoflavor_to_service(gm, flav));
2898 ADJUST_ARGS();
2899 gss_mech_put(gm);
2900 } else {
2901 RESERVE_SPACE(4);
2902 WRITE32(flav);
2903 ADJUST_ARGS();
2904 }
2905 }
2906out:
2907 if (exp)
2908 exp_put(exp);
Benny Halevy695e12f2008-07-04 14:38:33 +03002909 return nfserr;
Andy Adamsondcb488a32007-07-17 04:04:51 -07002910}
2911
Mi Jinlong22b6dee2010-12-27 14:29:57 +08002912static __be32
2913nfsd4_encode_secinfo(struct nfsd4_compoundres *resp, __be32 nfserr,
2914 struct nfsd4_secinfo *secinfo)
2915{
2916 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->si_exp);
2917}
2918
2919static __be32
2920nfsd4_encode_secinfo_no_name(struct nfsd4_compoundres *resp, __be32 nfserr,
2921 struct nfsd4_secinfo_no_name *secinfo)
2922{
2923 return nfsd4_do_encode_secinfo(resp, nfserr, secinfo->sin_exp);
2924}
2925
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926/*
2927 * The SETATTR encode routine is special -- it always encodes a bitmap,
2928 * regardless of the error status.
2929 */
Benny Halevy695e12f2008-07-04 14:38:33 +03002930static __be32
Al Virob37ad282006-10-19 23:28:59 -07002931nfsd4_encode_setattr(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002933 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
2935 RESERVE_SPACE(12);
2936 if (nfserr) {
2937 WRITE32(2);
2938 WRITE32(0);
2939 WRITE32(0);
2940 }
2941 else {
2942 WRITE32(2);
2943 WRITE32(setattr->sa_bmval[0]);
2944 WRITE32(setattr->sa_bmval[1]);
2945 }
2946 ADJUST_ARGS();
Benny Halevy695e12f2008-07-04 14:38:33 +03002947 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948}
2949
Benny Halevy695e12f2008-07-04 14:38:33 +03002950static __be32
Al Virob37ad282006-10-19 23:28:59 -07002951nfsd4_encode_setclientid(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_setclientid *scd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002953 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
2955 if (!nfserr) {
2956 RESERVE_SPACE(8 + sizeof(nfs4_verifier));
2957 WRITEMEM(&scd->se_clientid, 8);
2958 WRITEMEM(&scd->se_confirm, sizeof(nfs4_verifier));
2959 ADJUST_ARGS();
2960 }
2961 else if (nfserr == nfserr_clid_inuse) {
2962 RESERVE_SPACE(8);
2963 WRITE32(0);
2964 WRITE32(0);
2965 ADJUST_ARGS();
2966 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002967 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968}
2969
Benny Halevy695e12f2008-07-04 14:38:33 +03002970static __be32
Al Virob37ad282006-10-19 23:28:59 -07002971nfsd4_encode_write(struct nfsd4_compoundres *resp, __be32 nfserr, struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002973 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
2975 if (!nfserr) {
2976 RESERVE_SPACE(16);
2977 WRITE32(write->wr_bytes_written);
2978 WRITE32(write->wr_how_written);
2979 WRITEMEM(write->wr_verifier.data, 8);
2980 ADJUST_ARGS();
2981 }
Benny Halevy695e12f2008-07-04 14:38:33 +03002982 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983}
2984
Benny Halevy695e12f2008-07-04 14:38:33 +03002985static __be32
Andy Adamson2db134e2009-04-03 08:27:55 +03002986nfsd4_encode_exchange_id(struct nfsd4_compoundres *resp, int nfserr,
2987 struct nfsd4_exchange_id *exid)
2988{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07002989 __be32 *p;
Andy Adamson0733d212009-04-03 08:28:01 +03002990 char *major_id;
2991 char *server_scope;
2992 int major_id_sz;
2993 int server_scope_sz;
2994 uint64_t minor_id = 0;
2995
2996 if (nfserr)
2997 return nfserr;
2998
2999 major_id = utsname()->nodename;
3000 major_id_sz = strlen(major_id);
3001 server_scope = utsname()->nodename;
3002 server_scope_sz = strlen(server_scope);
3003
3004 RESERVE_SPACE(
3005 8 /* eir_clientid */ +
3006 4 /* eir_sequenceid */ +
3007 4 /* eir_flags */ +
3008 4 /* spr_how (SP4_NONE) */ +
3009 8 /* so_minor_id */ +
3010 4 /* so_major_id.len */ +
3011 (XDR_QUADLEN(major_id_sz) * 4) +
3012 4 /* eir_server_scope.len */ +
3013 (XDR_QUADLEN(server_scope_sz) * 4) +
3014 4 /* eir_server_impl_id.count (0) */);
3015
3016 WRITEMEM(&exid->clientid, 8);
3017 WRITE32(exid->seqid);
3018 WRITE32(exid->flags);
3019
3020 /* state_protect4_r. Currently only support SP4_NONE */
3021 BUG_ON(exid->spa_how != SP4_NONE);
3022 WRITE32(exid->spa_how);
3023
3024 /* The server_owner struct */
3025 WRITE64(minor_id); /* Minor id */
3026 /* major id */
3027 WRITE32(major_id_sz);
3028 WRITEMEM(major_id, major_id_sz);
3029
3030 /* Server scope */
3031 WRITE32(server_scope_sz);
3032 WRITEMEM(server_scope, server_scope_sz);
3033
3034 /* Implementation id */
3035 WRITE32(0); /* zero length nfs_impl_id4 array */
3036 ADJUST_ARGS();
3037 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003038}
3039
3040static __be32
3041nfsd4_encode_create_session(struct nfsd4_compoundres *resp, int nfserr,
3042 struct nfsd4_create_session *sess)
3043{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003044 __be32 *p;
Andy Adamsonec6b5d72009-04-03 08:28:28 +03003045
3046 if (nfserr)
3047 return nfserr;
3048
3049 RESERVE_SPACE(24);
3050 WRITEMEM(sess->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3051 WRITE32(sess->seqid);
3052 WRITE32(sess->flags);
3053 ADJUST_ARGS();
3054
3055 RESERVE_SPACE(28);
3056 WRITE32(0); /* headerpadsz */
3057 WRITE32(sess->fore_channel.maxreq_sz);
3058 WRITE32(sess->fore_channel.maxresp_sz);
3059 WRITE32(sess->fore_channel.maxresp_cached);
3060 WRITE32(sess->fore_channel.maxops);
3061 WRITE32(sess->fore_channel.maxreqs);
3062 WRITE32(sess->fore_channel.nr_rdma_attrs);
3063 ADJUST_ARGS();
3064
3065 if (sess->fore_channel.nr_rdma_attrs) {
3066 RESERVE_SPACE(4);
3067 WRITE32(sess->fore_channel.rdma_attrs);
3068 ADJUST_ARGS();
3069 }
3070
3071 RESERVE_SPACE(28);
3072 WRITE32(0); /* headerpadsz */
3073 WRITE32(sess->back_channel.maxreq_sz);
3074 WRITE32(sess->back_channel.maxresp_sz);
3075 WRITE32(sess->back_channel.maxresp_cached);
3076 WRITE32(sess->back_channel.maxops);
3077 WRITE32(sess->back_channel.maxreqs);
3078 WRITE32(sess->back_channel.nr_rdma_attrs);
3079 ADJUST_ARGS();
3080
3081 if (sess->back_channel.nr_rdma_attrs) {
3082 RESERVE_SPACE(4);
3083 WRITE32(sess->back_channel.rdma_attrs);
3084 ADJUST_ARGS();
3085 }
3086 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003087}
3088
3089static __be32
3090nfsd4_encode_destroy_session(struct nfsd4_compoundres *resp, int nfserr,
3091 struct nfsd4_destroy_session *destroy_session)
3092{
Andy Adamson2db134e2009-04-03 08:27:55 +03003093 return nfserr;
3094}
3095
Andy Adamsonbf864a32009-04-03 08:28:35 +03003096__be32
Andy Adamson2db134e2009-04-03 08:27:55 +03003097nfsd4_encode_sequence(struct nfsd4_compoundres *resp, int nfserr,
3098 struct nfsd4_sequence *seq)
3099{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003100 __be32 *p;
Benny Halevyb85d4c02009-04-03 08:28:08 +03003101
3102 if (nfserr)
3103 return nfserr;
3104
3105 RESERVE_SPACE(NFS4_MAX_SESSIONID_LEN + 20);
3106 WRITEMEM(seq->sessionid.data, NFS4_MAX_SESSIONID_LEN);
3107 WRITE32(seq->seqid);
3108 WRITE32(seq->slotid);
3109 WRITE32(seq->maxslots);
3110 /*
3111 * FIXME: for now:
3112 * target_maxslots = maxslots
3113 * status_flags = 0
3114 */
3115 WRITE32(seq->maxslots);
3116 WRITE32(0);
3117
3118 ADJUST_ARGS();
Andy Adamson557ce262009-08-28 08:45:04 -04003119 resp->cstate.datap = p; /* DRC cache data pointer */
Benny Halevyb85d4c02009-04-03 08:28:08 +03003120 return 0;
Andy Adamson2db134e2009-04-03 08:27:55 +03003121}
3122
3123static __be32
Benny Halevy695e12f2008-07-04 14:38:33 +03003124nfsd4_encode_noop(struct nfsd4_compoundres *resp, __be32 nfserr, void *p)
3125{
3126 return nfserr;
3127}
3128
3129typedef __be32(* nfsd4_enc)(struct nfsd4_compoundres *, __be32, void *);
3130
Andy Adamson2db134e2009-04-03 08:27:55 +03003131/*
3132 * Note: nfsd4_enc_ops vector is shared for v4.0 and v4.1
3133 * since we don't need to filter out obsolete ops as this is
3134 * done in the decoding phase.
3135 */
Benny Halevy695e12f2008-07-04 14:38:33 +03003136static nfsd4_enc nfsd4_enc_ops[] = {
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003137 [OP_ACCESS] = (nfsd4_enc)nfsd4_encode_access,
3138 [OP_CLOSE] = (nfsd4_enc)nfsd4_encode_close,
3139 [OP_COMMIT] = (nfsd4_enc)nfsd4_encode_commit,
3140 [OP_CREATE] = (nfsd4_enc)nfsd4_encode_create,
3141 [OP_DELEGPURGE] = (nfsd4_enc)nfsd4_encode_noop,
3142 [OP_DELEGRETURN] = (nfsd4_enc)nfsd4_encode_noop,
3143 [OP_GETATTR] = (nfsd4_enc)nfsd4_encode_getattr,
3144 [OP_GETFH] = (nfsd4_enc)nfsd4_encode_getfh,
3145 [OP_LINK] = (nfsd4_enc)nfsd4_encode_link,
3146 [OP_LOCK] = (nfsd4_enc)nfsd4_encode_lock,
3147 [OP_LOCKT] = (nfsd4_enc)nfsd4_encode_lockt,
3148 [OP_LOCKU] = (nfsd4_enc)nfsd4_encode_locku,
3149 [OP_LOOKUP] = (nfsd4_enc)nfsd4_encode_noop,
3150 [OP_LOOKUPP] = (nfsd4_enc)nfsd4_encode_noop,
3151 [OP_NVERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3152 [OP_OPEN] = (nfsd4_enc)nfsd4_encode_open,
Benny Halevy84f09f42009-03-04 23:05:35 +02003153 [OP_OPENATTR] = (nfsd4_enc)nfsd4_encode_noop,
J. Bruce Fieldsad1060c2008-07-18 15:04:16 -04003154 [OP_OPEN_CONFIRM] = (nfsd4_enc)nfsd4_encode_open_confirm,
3155 [OP_OPEN_DOWNGRADE] = (nfsd4_enc)nfsd4_encode_open_downgrade,
3156 [OP_PUTFH] = (nfsd4_enc)nfsd4_encode_noop,
3157 [OP_PUTPUBFH] = (nfsd4_enc)nfsd4_encode_noop,
3158 [OP_PUTROOTFH] = (nfsd4_enc)nfsd4_encode_noop,
3159 [OP_READ] = (nfsd4_enc)nfsd4_encode_read,
3160 [OP_READDIR] = (nfsd4_enc)nfsd4_encode_readdir,
3161 [OP_READLINK] = (nfsd4_enc)nfsd4_encode_readlink,
3162 [OP_REMOVE] = (nfsd4_enc)nfsd4_encode_remove,
3163 [OP_RENAME] = (nfsd4_enc)nfsd4_encode_rename,
3164 [OP_RENEW] = (nfsd4_enc)nfsd4_encode_noop,
3165 [OP_RESTOREFH] = (nfsd4_enc)nfsd4_encode_noop,
3166 [OP_SAVEFH] = (nfsd4_enc)nfsd4_encode_noop,
3167 [OP_SECINFO] = (nfsd4_enc)nfsd4_encode_secinfo,
3168 [OP_SETATTR] = (nfsd4_enc)nfsd4_encode_setattr,
3169 [OP_SETCLIENTID] = (nfsd4_enc)nfsd4_encode_setclientid,
3170 [OP_SETCLIENTID_CONFIRM] = (nfsd4_enc)nfsd4_encode_noop,
3171 [OP_VERIFY] = (nfsd4_enc)nfsd4_encode_noop,
3172 [OP_WRITE] = (nfsd4_enc)nfsd4_encode_write,
3173 [OP_RELEASE_LOCKOWNER] = (nfsd4_enc)nfsd4_encode_noop,
Andy Adamson2db134e2009-04-03 08:27:55 +03003174
3175 /* NFSv4.1 operations */
3176 [OP_BACKCHANNEL_CTL] = (nfsd4_enc)nfsd4_encode_noop,
3177 [OP_BIND_CONN_TO_SESSION] = (nfsd4_enc)nfsd4_encode_noop,
3178 [OP_EXCHANGE_ID] = (nfsd4_enc)nfsd4_encode_exchange_id,
3179 [OP_CREATE_SESSION] = (nfsd4_enc)nfsd4_encode_create_session,
3180 [OP_DESTROY_SESSION] = (nfsd4_enc)nfsd4_encode_destroy_session,
3181 [OP_FREE_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3182 [OP_GET_DIR_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3183 [OP_GETDEVICEINFO] = (nfsd4_enc)nfsd4_encode_noop,
3184 [OP_GETDEVICELIST] = (nfsd4_enc)nfsd4_encode_noop,
3185 [OP_LAYOUTCOMMIT] = (nfsd4_enc)nfsd4_encode_noop,
3186 [OP_LAYOUTGET] = (nfsd4_enc)nfsd4_encode_noop,
3187 [OP_LAYOUTRETURN] = (nfsd4_enc)nfsd4_encode_noop,
Mi Jinlong22b6dee2010-12-27 14:29:57 +08003188 [OP_SECINFO_NO_NAME] = (nfsd4_enc)nfsd4_encode_secinfo_no_name,
Andy Adamson2db134e2009-04-03 08:27:55 +03003189 [OP_SEQUENCE] = (nfsd4_enc)nfsd4_encode_sequence,
3190 [OP_SET_SSV] = (nfsd4_enc)nfsd4_encode_noop,
3191 [OP_TEST_STATEID] = (nfsd4_enc)nfsd4_encode_noop,
3192 [OP_WANT_DELEGATION] = (nfsd4_enc)nfsd4_encode_noop,
3193 [OP_DESTROY_CLIENTID] = (nfsd4_enc)nfsd4_encode_noop,
3194 [OP_RECLAIM_COMPLETE] = (nfsd4_enc)nfsd4_encode_noop,
Benny Halevy695e12f2008-07-04 14:38:33 +03003195};
3196
Andy Adamson496c2622009-04-03 08:28:48 +03003197/*
3198 * Calculate the total amount of memory that the compound response has taken
3199 * after encoding the current operation.
3200 *
3201 * pad: add on 8 bytes for the next operation's op_code and status so that
3202 * there is room to cache a failure on the next operation.
3203 *
3204 * Compare this length to the session se_fmaxresp_cached.
3205 *
3206 * Our se_fmaxresp_cached will always be a multiple of PAGE_SIZE, and so
3207 * will be at least a page and will therefore hold the xdr_buf head.
3208 */
3209static int nfsd4_check_drc_limit(struct nfsd4_compoundres *resp)
3210{
3211 int status = 0;
3212 struct xdr_buf *xb = &resp->rqstp->rq_res;
3213 struct nfsd4_compoundargs *args = resp->rqstp->rq_argp;
3214 struct nfsd4_session *session = NULL;
3215 struct nfsd4_slot *slot = resp->cstate.slot;
3216 u32 length, tlen = 0, pad = 8;
3217
3218 if (!nfsd4_has_session(&resp->cstate))
3219 return status;
3220
3221 session = resp->cstate.session;
Andy Adamson557ce262009-08-28 08:45:04 -04003222 if (session == NULL || slot->sl_cachethis == 0)
Andy Adamson496c2622009-04-03 08:28:48 +03003223 return status;
3224
3225 if (resp->opcnt >= args->opcnt)
3226 pad = 0; /* this is the last operation */
3227
3228 if (xb->page_len == 0) {
3229 length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;
3230 } else {
3231 if (xb->tail[0].iov_base && xb->tail[0].iov_len > 0)
3232 tlen = (char *)resp->p - (char *)xb->tail[0].iov_base;
3233
3234 length = xb->head[0].iov_len + xb->page_len + tlen + pad;
3235 }
3236 dprintk("%s length %u, xb->page_len %u tlen %u pad %u\n", __func__,
3237 length, xb->page_len, tlen, pad);
3238
Alexandros Batsakis6c18ba92009-06-16 04:19:13 +03003239 if (length <= session->se_fchannel.maxresp_cached)
Andy Adamson496c2622009-04-03 08:28:48 +03003240 return status;
3241 else
3242 return nfserr_rep_too_big_to_cache;
3243}
3244
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245void
3246nfsd4_encode_operation(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3247{
Al Viro2ebbc012006-10-19 23:28:58 -07003248 __be32 *statp;
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003249 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
3251 RESERVE_SPACE(8);
3252 WRITE32(op->opnum);
3253 statp = p++; /* to be backfilled at the end */
3254 ADJUST_ARGS();
3255
Benny Halevy695e12f2008-07-04 14:38:33 +03003256 if (op->opnum == OP_ILLEGAL)
3257 goto status;
3258 BUG_ON(op->opnum < 0 || op->opnum >= ARRAY_SIZE(nfsd4_enc_ops) ||
3259 !nfsd4_enc_ops[op->opnum]);
3260 op->status = nfsd4_enc_ops[op->opnum](resp, op->status, &op->u);
Andy Adamson496c2622009-04-03 08:28:48 +03003261 /* nfsd4_check_drc_limit guarantees enough room for error status */
3262 if (!op->status && nfsd4_check_drc_limit(resp))
3263 op->status = nfserr_rep_too_big_to_cache;
Benny Halevy695e12f2008-07-04 14:38:33 +03003264status:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 /*
3266 * Note: We write the status directly, instead of using WRITE32(),
3267 * since it is already in network byte order.
3268 */
3269 *statp = op->status;
3270}
3271
3272/*
3273 * Encode the reply stored in the stateowner reply cache
3274 *
3275 * XDR note: do not encode rp->rp_buflen: the buffer contains the
3276 * previously sent already encoded operation.
3277 *
3278 * called with nfs4_lock_state() held
3279 */
3280void
3281nfsd4_encode_replay(struct nfsd4_compoundres *resp, struct nfsd4_op *op)
3282{
J. Bruce Fieldsbc749ca2009-04-07 16:55:27 -07003283 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 struct nfs4_replay *rp = op->replay;
3285
3286 BUG_ON(!rp);
3287
3288 RESERVE_SPACE(8);
3289 WRITE32(op->opnum);
3290 *p++ = rp->rp_status; /* already xdr'ed */
3291 ADJUST_ARGS();
3292
3293 RESERVE_SPACE(rp->rp_buflen);
3294 WRITEMEM(rp->rp_buf, rp->rp_buflen);
3295 ADJUST_ARGS();
3296}
3297
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298int
Al Viro2ebbc012006-10-19 23:28:58 -07003299nfs4svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300{
3301 return xdr_ressize_check(rqstp, p);
3302}
3303
3304void nfsd4_release_compoundargs(struct nfsd4_compoundargs *args)
3305{
3306 if (args->ops != args->iops) {
3307 kfree(args->ops);
3308 args->ops = args->iops;
3309 }
Jesper Juhlf99d49a2005-11-07 01:01:34 -08003310 kfree(args->tmpp);
3311 args->tmpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 while (args->to_free) {
3313 struct tmpbuf *tb = args->to_free;
3314 args->to_free = tb->next;
3315 tb->release(tb->buf);
3316 kfree(tb);
3317 }
3318}
3319
3320int
Al Viro2ebbc012006-10-19 23:28:58 -07003321nfs4svc_decode_compoundargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322{
Al Virob37ad282006-10-19 23:28:59 -07003323 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
3325 args->p = p;
3326 args->end = rqstp->rq_arg.head[0].iov_base + rqstp->rq_arg.head[0].iov_len;
3327 args->pagelist = rqstp->rq_arg.pages;
3328 args->pagelen = rqstp->rq_arg.page_len;
3329 args->tmpp = NULL;
3330 args->to_free = NULL;
3331 args->ops = args->iops;
3332 args->rqstp = rqstp;
3333
3334 status = nfsd4_decode_compound(args);
3335 if (status) {
3336 nfsd4_release_compoundargs(args);
3337 }
3338 return !status;
3339}
3340
3341int
Al Viro2ebbc012006-10-19 23:28:58 -07003342nfs4svc_encode_compoundres(struct svc_rqst *rqstp, __be32 *p, struct nfsd4_compoundres *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343{
3344 /*
3345 * All that remains is to write the tag and operation count...
3346 */
Andy Adamson557ce262009-08-28 08:45:04 -04003347 struct nfsd4_compound_state *cs = &resp->cstate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 struct kvec *iov;
3349 p = resp->tagp;
3350 *p++ = htonl(resp->taglen);
3351 memcpy(p, resp->tag, resp->taglen);
3352 p += XDR_QUADLEN(resp->taglen);
3353 *p++ = htonl(resp->opcnt);
3354
3355 if (rqstp->rq_res.page_len)
3356 iov = &rqstp->rq_res.tail[0];
3357 else
3358 iov = &rqstp->rq_res.head[0];
3359 iov->iov_len = ((char*)resp->p) - (char*)iov->iov_base;
3360 BUG_ON(iov->iov_len > PAGE_SIZE);
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003361 if (nfsd4_has_session(cs)) {
3362 if (cs->status != nfserr_replay_cache) {
3363 nfsd4_store_cache_entry(resp);
3364 dprintk("%s: SET SLOT STATE TO AVAILABLE\n", __func__);
Benny Halevydbd65a72010-05-03 19:31:33 +03003365 cs->slot->sl_inuse = false;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04003366 }
Benny Halevyd7682982010-05-12 00:13:54 +03003367 /* Renew the clientid on success and on replay */
3368 release_session_client(cs->session);
J. Bruce Fields76407f72010-06-22 14:10:14 -04003369 nfsd4_put_session(cs->session);
Andy Adamsonda3846a2009-04-03 08:28:22 +03003370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return 1;
3372}
3373
3374/*
3375 * Local variables:
3376 * c-basic-offset: 8
3377 * End:
3378 */