blob: a468224a118ff2c22d8248f6d16a78a3fcf08b20 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfsd/nfs4proc.c
3 *
4 * Server-side procedures for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
38#include <linux/param.h>
39#include <linux/major.h>
40#include <linux/slab.h>
NeilBrown7e06b7f2005-06-23 22:03:13 -070041#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/sunrpc/svc.h>
44#include <linux/nfsd/nfsd.h>
45#include <linux/nfsd/cache.h>
46#include <linux/nfs4.h>
47#include <linux/nfsd/state.h>
48#include <linux/nfsd/xdr4.h>
49#include <linux/nfs4_acl.h>
Andy Adamsondcb488a32007-07-17 04:04:51 -070050#include <linux/sunrpc/gss_api.h>
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050051#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#define NFSDDBG_FACILITY NFSDDBG_PROC
54
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080055static u32 nfsd_attrmask[] = {
56 NFSD_WRITEABLE_ATTRS_WORD0,
57 NFSD_WRITEABLE_ATTRS_WORD1,
58 NFSD_WRITEABLE_ATTRS_WORD2
59};
60
61static u32 nfsd41_ex_attrmask[] = {
62 NFSD_SUPPATTR_EXCLCREAT_WORD0,
63 NFSD_SUPPATTR_EXCLCREAT_WORD1,
64 NFSD_SUPPATTR_EXCLCREAT_WORD2
65};
66
67static __be32
68check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
69 u32 *bmval, u32 *writable)
70{
71 struct dentry *dentry = cstate->current_fh.fh_dentry;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080072
73 /*
74 * Check about attributes are supported by the NFSv4 server or not.
75 * According to spec, unsupported attributes return ERR_ATTRNOTSUPP.
76 */
77 if ((bmval[0] & ~nfsd_suppattrs0(cstate->minorversion)) ||
78 (bmval[1] & ~nfsd_suppattrs1(cstate->minorversion)) ||
79 (bmval[2] & ~nfsd_suppattrs2(cstate->minorversion)))
80 return nfserr_attrnotsupp;
81
82 /*
Trond Myklebusta06b1262009-08-31 15:16:11 -040083 * Check FATTR4_WORD0_ACL can be supported
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080084 * in current environment or not.
85 */
86 if (bmval[0] & FATTR4_WORD0_ACL) {
87 if (!IS_POSIXACL(dentry->d_inode))
88 return nfserr_attrnotsupp;
89 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080090
91 /*
92 * According to spec, read-only attributes return ERR_INVAL.
93 */
94 if (writable) {
95 if ((bmval[0] & ~writable[0]) || (bmval[1] & ~writable[1]) ||
96 (bmval[2] & ~writable[2]))
97 return nfserr_inval;
98 }
99
100 return nfs_ok;
101}
102
103static __be32
104nfsd4_check_open_attributes(struct svc_rqst *rqstp,
105 struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
106{
107 __be32 status = nfs_ok;
108
109 if (open->op_create == NFS4_OPEN_CREATE) {
110 if (open->op_createmode == NFS4_CREATE_UNCHECKED
111 || open->op_createmode == NFS4_CREATE_GUARDED)
112 status = check_attr_support(rqstp, cstate,
113 open->op_bmval, nfsd_attrmask);
114 else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1)
115 status = check_attr_support(rqstp, cstate,
116 open->op_bmval, nfsd41_ex_attrmask);
117 }
118
119 return status;
120}
121
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800122static int
123is_create_with_attrs(struct nfsd4_open *open)
124{
125 return open->op_create == NFS4_OPEN_CREATE
126 && (open->op_createmode == NFS4_CREATE_UNCHECKED
127 || open->op_createmode == NFS4_CREATE_GUARDED
128 || open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1);
129}
130
131/*
132 * if error occurs when setting the acl, just clear the acl bit
133 * in the returned attr bitmap.
134 */
135static void
136do_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
137 struct nfs4_acl *acl, u32 *bmval)
138{
139 __be32 status;
140
141 status = nfsd4_set_nfs4_acl(rqstp, fhp, acl);
142 if (status)
143 /*
144 * We should probably fail the whole open at this point,
145 * but we've already created the file, so it's too late;
146 * So this seems the least of evils:
147 */
148 bmval[0] &= ~FATTR4_WORD0_ACL;
149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static inline void
152fh_dup2(struct svc_fh *dst, struct svc_fh *src)
153{
154 fh_put(dst);
155 dget(src->fh_dentry);
156 if (src->fh_export)
157 cache_get(&src->fh_export->h);
158 *dst = *src;
159}
160
Al Virob37ad282006-10-19 23:28:59 -0700161static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -0700162do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Al Virob37ad282006-10-19 23:28:59 -0700164 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 if (open->op_truncate &&
167 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
168 return nfserr_inval;
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200171 accmode |= NFSD_MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -0700172 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200173 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
J. Bruce Fields57ecb342009-12-01 19:42:57 -0500174 if (open->op_share_deny & NFS4_SHARE_DENY_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200175 accmode |= NFSD_MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
178
179 return status;
180}
181
Al Virob37ad282006-10-19 23:28:59 -0700182static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183do_open_lookup(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
184{
185 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700186 __be32 status;
J. Bruce Fields81ac95c2006-11-08 17:44:40 -0800187 int created = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 fh_init(&resfh, NFS4_FHSIZE);
190 open->op_truncate = 0;
191
192 if (open->op_create) {
Benny Halevy79fb54a2009-04-03 08:29:17 +0300193 /* FIXME: check session persistence and pnfs flags.
194 * The nfsv4.1 spec requires the following semantics:
195 *
196 * Persistent | pNFS | Server REQUIRED | Client Allowed
197 * Reply Cache | server | |
198 * -------------+--------+-----------------+--------------------
199 * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1
200 * | | | (SHOULD)
201 * | | and EXCLUSIVE4 | or EXCLUSIVE4
202 * | | | (SHOULD NOT)
203 * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1
204 * yes | no | GUARDED4 | GUARDED4
205 * yes | yes | GUARDED4 | GUARDED4
206 */
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /*
209 * Note: create modes (UNCHECKED,GUARDED...) are the same
210 * in NFSv4 as in v3.
211 */
212 status = nfsd_create_v3(rqstp, current_fh, open->op_fname.data,
213 open->op_fname.len, &open->op_iattr,
214 &resfh, open->op_createmode,
Jeff Layton749997e2007-07-31 00:37:51 -0700215 (u32 *)open->op_verf.data,
216 &open->op_truncate, &created);
217
J. Bruce Fields99f88722009-02-02 15:12:27 -0500218 /*
219 * Following rfc 3530 14.2.16, use the returned bitmask
220 * to indicate which attributes we used to store the
221 * verifier:
Jeff Layton749997e2007-07-31 00:37:51 -0700222 */
223 if (open->op_createmode == NFS4_CREATE_EXCLUSIVE && status == 0)
J. Bruce Fields99f88722009-02-02 15:12:27 -0500224 open->op_bmval[1] = (FATTR4_WORD1_TIME_ACCESS |
Jeff Layton749997e2007-07-31 00:37:51 -0700225 FATTR4_WORD1_TIME_MODIFY);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800226 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 status = nfsd_lookup(rqstp, current_fh,
228 open->op_fname.data, open->op_fname.len, &resfh);
229 fh_unlock(current_fh);
230 }
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800231 if (status)
232 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800234 if (is_create_with_attrs(open) && open->op_acl != NULL)
235 do_set_nfs4_acl(rqstp, &resfh, open->op_acl, open->op_bmval);
236
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800237 set_change_info(&open->op_cinfo, current_fh);
J. Bruce Fields13024b72009-02-02 17:04:03 -0500238 fh_dup2(current_fh, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800240 /* set reply cache */
J. Bruce Fieldsa4773c082009-02-02 17:23:10 -0500241 fh_copy_shallow(&open->op_stateowner->so_replay.rp_openfh,
242 &resfh.fh_handle);
J. Bruce Fields81ac95c2006-11-08 17:44:40 -0800243 if (!created)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200244 status = do_open_permission(rqstp, current_fh, open,
245 NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800247out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 fh_put(&resfh);
249 return status;
250}
251
Al Virob37ad282006-10-19 23:28:59 -0700252static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253do_open_fhandle(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
254{
Al Virob37ad282006-10-19 23:28:59 -0700255 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 /* Only reclaims from previously confirmed clients are valid */
258 if ((status = nfs4_check_open_reclaim(&open->op_clientid)))
259 return status;
260
261 /* We don't know the target directory, and therefore can not
262 * set the change info
263 */
264
265 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
266
267 /* set replay cache */
J. Bruce Fieldsa4773c082009-02-02 17:23:10 -0500268 fh_copy_shallow(&open->op_stateowner->so_replay.rp_openfh,
269 &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
272 (open->op_iattr.ia_size == 0);
273
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200274 status = do_open_permission(rqstp, current_fh, open,
275 NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 return status;
278}
279
Andy Adamson60adfc52009-04-03 08:28:50 +0300280static void
281copy_clientid(clientid_t *clid, struct nfsd4_session *session)
282{
283 struct nfsd4_sessionid *sid =
284 (struct nfsd4_sessionid *)session->se_sessionid.data;
285
286 clid->cl_boot = sid->clientid.cl_boot;
287 clid->cl_id = sid->clientid.cl_id;
288}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
J.Bruce Fields71911552006-12-13 00:35:29 -0800290static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800291nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800292 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Al Virob37ad282006-10-19 23:28:59 -0700294 __be32 status;
Andy Adamson66689582009-04-03 08:28:45 +0300295 struct nfsd4_compoundres *resp;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 dprintk("NFSD: nfsd4_open filename %.*s op_stateowner %p\n",
298 (int)open->op_fname.len, open->op_fname.data,
299 open->op_stateowner);
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* This check required by spec. */
302 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
303 return nfserr_inval;
304
Andy Adamson60adfc52009-04-03 08:28:50 +0300305 if (nfsd4_has_session(cstate))
306 copy_clientid(&open->op_clientid, cstate->session);
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 nfs4_lock_state();
309
310 /* check seqid for replay. set nfs4_owner */
Andy Adamson66689582009-04-03 08:28:45 +0300311 resp = rqstp->rq_resp;
312 status = nfsd4_process_open1(&resp->cstate, open);
Al Viroa90b0612006-10-19 23:29:03 -0700313 if (status == nfserr_replay_me) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 struct nfs4_replay *rp = &open->op_stateowner->so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800315 fh_put(&cstate->current_fh);
J. Bruce Fieldsa4773c082009-02-02 17:23:10 -0500316 fh_copy_shallow(&cstate->current_fh.fh_handle,
317 &rp->rp_openfh);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200318 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (status)
320 dprintk("nfsd4_open: replay failed"
321 " restoring previous filehandle\n");
322 else
Al Viroa90b0612006-10-19 23:29:03 -0700323 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325 if (status)
326 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800327
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800328 status = nfsd4_check_open_attributes(rqstp, cstate, open);
329 if (status)
330 goto out;
331
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800332 /* Openowner is now set, so sequence id will get bumped. Now we need
333 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800334 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400335 if (locks_in_grace() && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800336 goto out;
337 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400338 if (!locks_in_grace() && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800339 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700342 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 case NFS4_OPEN_CLAIM_NULL:
344 /*
345 * (1) set CURRENT_FH to the file being opened,
346 * creating it if necessary, (2) set open->op_cinfo,
347 * (3) set open->op_truncate if the file is to be
348 * truncated after opening, (4) do permission checking.
349 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800350 status = do_open_lookup(rqstp, &cstate->current_fh,
351 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (status)
353 goto out;
354 break;
355 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800356 open->op_stateowner->so_confirmed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /*
358 * The CURRENT_FH is already set to the file being
359 * opened. (1) set open->op_cinfo, (2) set
360 * open->op_truncate if the file is to be truncated
361 * after opening, (3) do permission checking.
362 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800363 status = do_open_fhandle(rqstp, &cstate->current_fh,
364 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (status)
366 goto out;
367 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800369 open->op_stateowner->so_confirmed = 1;
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400370 dprintk("NFSD: unsupported OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 open->op_claim_type);
372 status = nfserr_notsupp;
373 goto out;
374 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400375 dprintk("NFSD: Invalid OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 open->op_claim_type);
377 status = nfserr_inval;
378 goto out;
379 }
380 /*
381 * nfsd4_process_open2() does the actual opening of the file. If
382 * successful, it (1) truncates the file if open->op_truncate was
383 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
384 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800385 status = nfsd4_process_open2(rqstp, &cstate->current_fh, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386out:
Neil Brownf2327d92005-09-13 01:25:37 -0700387 if (open->op_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 nfs4_get_stateowner(open->op_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800389 cstate->replay_owner = open->op_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -0700390 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 nfs4_unlock_state();
392 return status;
393}
394
395/*
396 * filehandle-manipulating ops.
397 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800398static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800399nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
400 struct svc_fh **getfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800402 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return nfserr_nofilehandle;
404
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800405 *getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return nfs_ok;
407}
408
J.Bruce Fields71911552006-12-13 00:35:29 -0800409static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800410nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
411 struct nfsd4_putfh *putfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800413 fh_put(&cstate->current_fh);
414 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
415 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
416 putfh->pf_fhlen);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200417 return fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
J.Bruce Fields71911552006-12-13 00:35:29 -0800420static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800421nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
422 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Al Virob37ad282006-10-19 23:28:59 -0700424 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800426 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700427 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return status;
429}
430
J.Bruce Fields71911552006-12-13 00:35:29 -0800431static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800432nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
433 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800435 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return nfserr_restorefh;
437
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800438 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return nfs_ok;
440}
441
J.Bruce Fields71911552006-12-13 00:35:29 -0800442static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800443nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
444 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800446 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return nfserr_nofilehandle;
448
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800449 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return nfs_ok;
451}
452
453/*
454 * misc nfsv4 ops
455 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800456static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800457nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
458 struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
461 return nfserr_inval;
462
463 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800464 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
465 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
J.Bruce Fields71911552006-12-13 00:35:29 -0800468static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800469nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
470 struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Al Virob37ad282006-10-19 23:28:59 -0700472 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 u32 *p = (u32 *)commit->co_verf.data;
475 *p++ = nfssvc_boot.tv_sec;
476 *p++ = nfssvc_boot.tv_usec;
477
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800478 status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
479 commit->co_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (status == nfserr_symlink)
481 status = nfserr_inval;
482 return status;
483}
484
Al Virob37ad282006-10-19 23:28:59 -0700485static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800486nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
487 struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700490 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 dev_t rdev;
492
493 fh_init(&resfh, NFS4_FHSIZE);
494
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200495 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR,
496 NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (status == nfserr_symlink)
498 status = nfserr_notdir;
499 if (status)
500 return status;
501
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800502 status = check_attr_support(rqstp, cstate, create->cr_bmval,
503 nfsd_attrmask);
504 if (status)
505 return status;
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 switch (create->cr_type) {
508 case NF4LNK:
509 /* ugh! we have to null-terminate the linktext, or
510 * vfs_symlink() will choke. it is always safe to
511 * null-terminate by brute force, since at worst we
512 * will overwrite the first byte of the create namelen
513 * in the XDR buffer, which has already been extracted
514 * during XDR decode.
515 */
516 create->cr_linkname[create->cr_linklen] = 0;
517
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800518 status = nfsd_symlink(rqstp, &cstate->current_fh,
519 create->cr_name, create->cr_namelen,
520 create->cr_linkname, create->cr_linklen,
521 &resfh, &create->cr_iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523
524 case NF4BLK:
525 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
526 if (MAJOR(rdev) != create->cr_specdata1 ||
527 MINOR(rdev) != create->cr_specdata2)
528 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800529 status = nfsd_create(rqstp, &cstate->current_fh,
530 create->cr_name, create->cr_namelen,
531 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 break;
533
534 case NF4CHR:
535 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
536 if (MAJOR(rdev) != create->cr_specdata1 ||
537 MINOR(rdev) != create->cr_specdata2)
538 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800539 status = nfsd_create(rqstp, &cstate->current_fh,
540 create->cr_name, create->cr_namelen,
541 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 break;
543
544 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800545 status = nfsd_create(rqstp, &cstate->current_fh,
546 create->cr_name, create->cr_namelen,
547 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 break;
549
550 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800551 status = nfsd_create(rqstp, &cstate->current_fh,
552 create->cr_name, create->cr_namelen,
553 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 break;
555
556 case NF4DIR:
557 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800558 status = nfsd_create(rqstp, &cstate->current_fh,
559 create->cr_name, create->cr_namelen,
560 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 break;
562
563 default:
564 status = nfserr_badtype;
565 }
566
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800567 if (status)
568 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800570 if (create->cr_acl != NULL)
571 do_set_nfs4_acl(rqstp, &resfh, create->cr_acl,
572 create->cr_bmval);
573
574 fh_unlock(&cstate->current_fh);
575 set_change_info(&create->cr_cinfo, &cstate->current_fh);
576 fh_dup2(&cstate->current_fh, &resfh);
577out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 fh_put(&resfh);
579 return status;
580}
581
J.Bruce Fields71911552006-12-13 00:35:29 -0800582static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800583nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
584 struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Al Virob37ad282006-10-19 23:28:59 -0700586 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200588 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (status)
590 return status;
591
592 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
593 return nfserr_inval;
594
Andy Adamson7e705702009-04-03 08:29:11 +0300595 getattr->ga_bmval[0] &= nfsd_suppattrs0(cstate->minorversion);
596 getattr->ga_bmval[1] &= nfsd_suppattrs1(cstate->minorversion);
597 getattr->ga_bmval[2] &= nfsd_suppattrs2(cstate->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800599 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return nfs_ok;
601}
602
J.Bruce Fields71911552006-12-13 00:35:29 -0800603static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800604nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
605 struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Al Virob37ad282006-10-19 23:28:59 -0700607 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800609 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800611 status = nfsd_link(rqstp, &cstate->current_fh,
612 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800614 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return status;
616}
617
Al Virob37ad282006-10-19 23:28:59 -0700618static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800619nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
620 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
622 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700623 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700626 ret = exp_pseudoroot(rqstp, &tmp_fh);
627 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return ret;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800629 if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 fh_put(&tmp_fh);
631 return nfserr_noent;
632 }
633 fh_put(&tmp_fh);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800634 return nfsd_lookup(rqstp, &cstate->current_fh,
635 "..", 2, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
J.Bruce Fields71911552006-12-13 00:35:29 -0800638static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800639nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
640 struct nfsd4_lookup *lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800642 return nfsd_lookup(rqstp, &cstate->current_fh,
643 lookup->lo_name, lookup->lo_len,
644 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
J.Bruce Fields71911552006-12-13 00:35:29 -0800647static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800648nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
649 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Al Virob37ad282006-10-19 23:28:59 -0700651 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* no need to check permission - this will be done in nfsd_read() */
654
NeilBrown7e06b7f2005-06-23 22:03:13 -0700655 read->rd_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (read->rd_offset >= OFFSET_MAX)
657 return nfserr_inval;
658
659 nfs4_lock_state();
660 /* check stateid */
Benny Halevydd453df2009-04-03 08:28:41 +0300661 if ((status = nfs4_preprocess_stateid_op(cstate, &read->rd_stateid,
662 RD_STATE, &read->rd_filp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
664 goto out;
665 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700666 if (read->rd_filp)
667 get_file(read->rd_filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 status = nfs_ok;
669out:
670 nfs4_unlock_state();
671 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800672 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return status;
674}
675
J.Bruce Fields71911552006-12-13 00:35:29 -0800676static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800677nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
678 struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 u64 cookie = readdir->rd_cookie;
681 static const nfs4_verifier zeroverf;
682
683 /* no need to check permission - this will be done in nfsd_readdir() */
684
685 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
686 return nfserr_inval;
687
Andy Adamson7e705702009-04-03 08:29:11 +0300688 readdir->rd_bmval[0] &= nfsd_suppattrs0(cstate->minorversion);
689 readdir->rd_bmval[1] &= nfsd_suppattrs1(cstate->minorversion);
690 readdir->rd_bmval[2] &= nfsd_suppattrs2(cstate->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) ||
693 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
694 return nfserr_bad_cookie;
695
696 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800697 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return nfs_ok;
699}
700
J.Bruce Fields71911552006-12-13 00:35:29 -0800701static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800702nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
703 struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 readlink->rl_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800706 readlink->rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return nfs_ok;
708}
709
J.Bruce Fields71911552006-12-13 00:35:29 -0800710static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800711nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
712 struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Al Virob37ad282006-10-19 23:28:59 -0700714 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400716 if (locks_in_grace())
NeilBrownc815afc2005-06-23 22:03:00 -0700717 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800718 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
719 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (status == nfserr_symlink)
721 return nfserr_notdir;
722 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800723 fh_unlock(&cstate->current_fh);
724 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726 return status;
727}
728
J.Bruce Fields71911552006-12-13 00:35:29 -0800729static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800730nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
731 struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Al Virob37ad282006-10-19 23:28:59 -0700733 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800735 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return status;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400737 if (locks_in_grace() && !(cstate->save_fh.fh_export->ex_flags
NeilBrownc815afc2005-06-23 22:03:00 -0700738 & NFSEXP_NOSUBTREECHECK))
739 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800740 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
741 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 rename->rn_tname, rename->rn_tnamelen);
743
744 /* the underlying filesystem returns different error's than required
745 * by NFSv4. both save_fh and current_fh have been verified.. */
746 if (status == nfserr_isdir)
747 status = nfserr_exist;
748 else if ((status == nfserr_notdir) &&
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800749 (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) &&
750 S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 status = nfserr_exist;
752 else if (status == nfserr_symlink)
753 status = nfserr_notdir;
754
755 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800756 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
757 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759 return status;
760}
761
J.Bruce Fields71911552006-12-13 00:35:29 -0800762static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700763nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
764 struct nfsd4_secinfo *secinfo)
765{
766 struct svc_fh resfh;
767 struct svc_export *exp;
768 struct dentry *dentry;
769 __be32 err;
770
771 fh_init(&resfh, NFS4_FHSIZE);
772 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
773 secinfo->si_name, secinfo->si_namelen,
774 &exp, &dentry);
775 if (err)
776 return err;
777 if (dentry->d_inode == NULL) {
778 exp_put(exp);
779 err = nfserr_noent;
780 } else
781 secinfo->si_exp = exp;
782 dput(dentry);
783 return err;
784}
785
786static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800787nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
788 struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Al Virob37ad282006-10-19 23:28:59 -0700790 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
793 nfs4_lock_state();
Benny Halevydd453df2009-04-03 08:28:41 +0300794 status = nfs4_preprocess_stateid_op(cstate,
J. Bruce Fields6150ef02009-02-21 13:36:16 -0800795 &setattr->sa_stateid, WR_STATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -0800797 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700798 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800799 return status;
800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
Dave Hansen18f335a2008-02-15 14:37:38 -0800802 status = mnt_want_write(cstate->current_fh.fh_export->ex_path.mnt);
803 if (status)
804 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 status = nfs_ok;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800806
807 status = check_attr_support(rqstp, cstate, setattr->sa_bmval,
808 nfsd_attrmask);
809 if (status)
810 goto out;
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800813 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
814 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (status)
Dave Hansen18f335a2008-02-15 14:37:38 -0800816 goto out;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800817 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 0, (time_t)0);
Dave Hansen18f335a2008-02-15 14:37:38 -0800819out:
820 mnt_drop_write(cstate->current_fh.fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return status;
822}
823
J.Bruce Fields71911552006-12-13 00:35:29 -0800824static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800825nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
826 struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
828 stateid_t *stateid = &write->wr_stateid;
829 struct file *filp = NULL;
830 u32 *p;
Al Virob37ad282006-10-19 23:28:59 -0700831 __be32 status = nfs_ok;
David Shaw31dec252009-03-05 20:16:14 -0500832 unsigned long cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* no need to check permission - this will be done in nfsd_write() */
835
836 if (write->wr_offset >= OFFSET_MAX)
837 return nfserr_inval;
838
839 nfs4_lock_state();
Benny Halevydd453df2009-04-03 08:28:41 +0300840 status = nfs4_preprocess_stateid_op(cstate, stateid, WR_STATE, &filp);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700841 if (filp)
842 get_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 nfs4_unlock_state();
844
J. Bruce Fields375c5542006-01-18 17:43:33 -0800845 if (status) {
846 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
847 return status;
848 }
849
David Shaw31dec252009-03-05 20:16:14 -0500850 cnt = write->wr_buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 write->wr_how_written = write->wr_stable_how;
852 p = (u32 *)write->wr_verifier.data;
853 *p++ = nfssvc_boot.tv_sec;
854 *p++ = nfssvc_boot.tv_usec;
855
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800856 status = nfsd_write(rqstp, &cstate->current_fh, filp,
857 write->wr_offset, rqstp->rq_vec, write->wr_vlen,
David Shaw31dec252009-03-05 20:16:14 -0500858 &cnt, &write->wr_how_written);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700859 if (filp)
860 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
David Shaw31dec252009-03-05 20:16:14 -0500862 write->wr_bytes_written = cnt;
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (status == nfserr_symlink)
865 status = nfserr_inval;
866 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
869/* This routine never returns NFS_OK! If there are no other errors, it
870 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
871 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
872 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
873 */
Al Virob37ad282006-10-19 23:28:59 -0700874static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800875_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800876 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Al Viro2ebbc012006-10-19 23:28:58 -0700878 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 int count;
Al Virob37ad282006-10-19 23:28:59 -0700880 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200882 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (status)
884 return status;
885
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800886 status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL);
887 if (status)
888 return status;
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
891 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
892 return nfserr_inval;
893 if (verify->ve_attrlen & 3)
894 return nfserr_inval;
895
896 /* count in words:
897 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
898 */
899 count = 4 + (verify->ve_attrlen >> 2);
900 buf = kmalloc(count << 2, GFP_KERNEL);
901 if (!buf)
902 return nfserr_resource;
903
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800904 status = nfsd4_encode_fattr(&cstate->current_fh,
905 cstate->current_fh.fh_export,
906 cstate->current_fh.fh_dentry, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 &count, verify->ve_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -0800908 rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 /* this means that nfsd4_encode_fattr() ran out of space */
911 if (status == nfserr_resource && count == 0)
912 status = nfserr_not_same;
913 if (status)
914 goto out_kfree;
915
Benny Halevy95ec28c2009-04-03 08:29:08 +0300916 /* skip bitmap */
917 p = buf + 1 + ntohl(buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 status = nfserr_not_same;
919 if (ntohl(*p++) != verify->ve_attrlen)
920 goto out_kfree;
921 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
922 status = nfserr_same;
923
924out_kfree:
925 kfree(buf);
926 return status;
927}
928
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800929static __be32
930nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
931 struct nfsd4_verify *verify)
932{
933 __be32 status;
934
935 status = _nfsd4_verify(rqstp, cstate, verify);
936 return status == nfserr_not_same ? nfs_ok : status;
937}
938
939static __be32
940nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
941 struct nfsd4_verify *verify)
942{
943 __be32 status;
944
945 status = _nfsd4_verify(rqstp, cstate, verify);
946 return status == nfserr_same ? nfs_ok : status;
947}
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/*
950 * NULL call.
951 */
Al Viro7111c662006-10-19 23:28:45 -0700952static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
954{
955 return nfs_ok;
956}
957
Shankar Anande2b20952006-07-10 04:45:44 -0700958static inline void nfsd4_increment_op_stats(u32 opnum)
959{
960 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
961 nfsdstats.nfs4_opcount[opnum]++;
962}
963
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800964typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *,
965 void *);
Andy Adamsonf9bb94c2009-04-03 08:28:12 +0300966enum nfsd4_op_flags {
967 ALLOWED_WITHOUT_FH = 1 << 0, /* No current filehandle required */
968 ALLOWED_ON_ABSENT_FS = 2 << 0, /* ops processed on absent fs */
969 ALLOWED_AS_FIRST_OP = 3 << 0, /* ops reqired first in compound */
970};
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800971
972struct nfsd4_operation {
973 nfsd4op_func op_func;
974 u32 op_flags;
Benny Halevyb001a1b2008-07-02 11:15:03 +0300975 char *op_name;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800976};
977
978static struct nfsd4_operation nfsd4_ops[];
979
Adrian Bunkf1c7f792008-08-08 19:26:42 +0300980static const char *nfsd4_op_name(unsigned opnum);
Benny Halevyb001a1b2008-07-02 11:15:03 +0300981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982/*
Andy Adamsonf9bb94c2009-04-03 08:28:12 +0300983 * Enforce NFSv4.1 COMPOUND ordering rules.
984 *
985 * TODO:
986 * - enforce NFS4ERR_NOT_ONLY_OP,
987 * - DESTROY_SESSION MUST be the final operation in the COMPOUND request.
988 */
989static bool nfs41_op_ordering_ok(struct nfsd4_compoundargs *args)
990{
991 if (args->minorversion && args->opcnt > 0) {
992 struct nfsd4_op *op = &args->ops[0];
993 return (op->status == nfserr_op_illegal) ||
994 (nfsd4_ops[op->opnum].op_flags & ALLOWED_AS_FIRST_OP);
995 }
996 return true;
997}
998
999/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 * COMPOUND call.
1001 */
Al Viro7111c662006-10-19 23:28:45 -07001002static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003nfsd4_proc_compound(struct svc_rqst *rqstp,
1004 struct nfsd4_compoundargs *args,
1005 struct nfsd4_compoundres *resp)
1006{
1007 struct nfsd4_op *op;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001008 struct nfsd4_operation *opdesc;
Andy Adamsone354d572009-03-28 11:30:52 +03001009 struct nfsd4_compound_state *cstate = &resp->cstate;
J.Bruce Fieldse5710192006-12-13 00:35:20 -08001010 int slack_bytes;
Al Virob37ad282006-10-19 23:28:59 -07001011 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 resp->xbuf = &rqstp->rq_res;
Andy Adamsone354d572009-03-28 11:30:52 +03001014 resp->p = rqstp->rq_res.head[0].iov_base +
1015 rqstp->rq_res.head[0].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 resp->tagp = resp->p;
1017 /* reserve space for: taglen, tag, and opcnt */
1018 resp->p += 2 + XDR_QUADLEN(args->taglen);
1019 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
1020 resp->taglen = args->taglen;
1021 resp->tag = args->tag;
1022 resp->opcnt = 0;
1023 resp->rqstp = rqstp;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001024 resp->cstate.minorversion = args->minorversion;
Andy Adamsone354d572009-03-28 11:30:52 +03001025 resp->cstate.replay_owner = NULL;
1026 fh_init(&resp->cstate.current_fh, NFS4_FHSIZE);
1027 fh_init(&resp->cstate.save_fh, NFS4_FHSIZE);
Andy Adamson2f425872009-04-03 08:27:32 +03001028 /* Use the deferral mechanism only for NFSv4.0 compounds */
1029 rqstp->rq_usedeferral = (args->minorversion == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 /*
1032 * According to RFC3010, this takes precedence over all other errors.
1033 */
1034 status = nfserr_minor_vers_mismatch;
Benny Halevy8daf2202009-04-03 08:28:59 +03001035 if (args->minorversion > nfsd_supported_minorversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 goto out;
1037
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001038 if (!nfs41_op_ordering_ok(args)) {
1039 op = &args->ops[0];
1040 op->status = nfserr_sequence_pos;
1041 goto encode_op;
1042 }
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 status = nfs_ok;
1045 while (!status && resp->opcnt < args->opcnt) {
1046 op = &args->ops[resp->opcnt++];
1047
Benny Halevyb001a1b2008-07-02 11:15:03 +03001048 dprintk("nfsv4 compound op #%d/%d: %d (%s)\n",
1049 resp->opcnt, args->opcnt, op->opnum,
1050 nfsd4_op_name(op->opnum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 /*
1052 * The XDR decode routines may have pre-set op->status;
1053 * for example, if there is a miscellaneous XDR error
1054 * it will be set to nfserr_bad_xdr.
1055 */
1056 if (op->status)
1057 goto encode_op;
1058
1059 /* We must be able to encode a successful response to
1060 * this operation, with enough room left over to encode a
1061 * failed response to the next operation. If we don't
1062 * have enough room, fail with ERR_RESOURCE.
1063 */
J.Bruce Fieldse5710192006-12-13 00:35:20 -08001064 slack_bytes = (char *)resp->end - (char *)resp->p;
1065 if (slack_bytes < COMPOUND_SLACK_SPACE
1066 + COMPOUND_ERR_SLACK_SPACE) {
1067 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 op->status = nfserr_resource;
1069 goto encode_op;
1070 }
1071
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001072 opdesc = &nfsd4_ops[op->opnum];
1073
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001074 if (!cstate->current_fh.fh_dentry) {
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001075 if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001076 op->status = nfserr_nofilehandle;
1077 goto encode_op;
1078 }
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001079 } else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
1080 !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001081 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 goto encode_op;
1083 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001084
1085 if (opdesc->op_func)
1086 op->status = opdesc->op_func(rqstp, cstate, &op->u);
1087 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 BUG_ON(op->status == nfs_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090encode_op:
Andy Adamson49557cc2009-07-23 19:02:16 -04001091 /* Only from SEQUENCE */
Andy Adamsonda3846a2009-04-03 08:28:22 +03001092 if (resp->cstate.status == nfserr_replay_cache) {
1093 dprintk("%s NFS4.1 replay from cache\n", __func__);
Andy Adamsonabfabf82009-07-23 19:02:18 -04001094 status = op->status;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001095 goto out;
1096 }
Al Viroa90b0612006-10-19 23:29:03 -07001097 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001098 op->replay = &cstate->replay_owner->so_replay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 nfsd4_encode_replay(resp, op);
1100 status = op->status = op->replay->rp_status;
1101 } else {
1102 nfsd4_encode_operation(resp, op);
1103 status = op->status;
1104 }
Benny Halevy04077172008-12-15 19:40:49 +02001105
1106 dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n",
1107 args->ops, args->opcnt, resp->opcnt, op->opnum,
1108 be32_to_cpu(status));
1109
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001110 if (cstate->replay_owner) {
1111 nfs4_put_stateowner(cstate->replay_owner);
1112 cstate->replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
NeilBrown7e06b7f2005-06-23 22:03:13 -07001114 /* XXX Ugh, we need to get rid of this kind of special case: */
1115 if (op->opnum == OP_READ && op->u.read.rd_filp)
1116 fput(op->u.read.rd_filp);
Shankar Anande2b20952006-07-10 04:45:44 -07001117
1118 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 }
Andy Adamson2f425872009-04-03 08:27:32 +03001120 if (!rqstp->rq_usedeferral && status == nfserr_dropit) {
1121 dprintk("%s Dropit - send NFS4ERR_DELAY\n", __func__);
1122 status = nfserr_jukebox;
1123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Andy Adamsonda3846a2009-04-03 08:28:22 +03001125 resp->cstate.status = status;
Andy Adamsone354d572009-03-28 11:30:52 +03001126 fh_put(&resp->cstate.current_fh);
1127 fh_put(&resp->cstate.save_fh);
1128 BUG_ON(resp->cstate.replay_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129out:
1130 nfsd4_release_compoundargs(args);
Andy Adamson2f425872009-04-03 08:27:32 +03001131 /* Reset deferral mechanism for RPC deferrals */
1132 rqstp->rq_usedeferral = 1;
J. Bruce Fields3b12cd92008-05-05 17:17:44 -04001133 dprintk("nfsv4 compound returned %d\n", ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return status;
1135}
1136
Benny Halevy20766012009-03-28 11:32:05 +03001137static struct nfsd4_operation nfsd4_ops[] = {
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001138 [OP_ACCESS] = {
1139 .op_func = (nfsd4op_func)nfsd4_access,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001140 .op_name = "OP_ACCESS",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001141 },
1142 [OP_CLOSE] = {
1143 .op_func = (nfsd4op_func)nfsd4_close,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001144 .op_name = "OP_CLOSE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001145 },
1146 [OP_COMMIT] = {
1147 .op_func = (nfsd4op_func)nfsd4_commit,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001148 .op_name = "OP_COMMIT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001149 },
1150 [OP_CREATE] = {
1151 .op_func = (nfsd4op_func)nfsd4_create,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001152 .op_name = "OP_CREATE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001153 },
1154 [OP_DELEGRETURN] = {
1155 .op_func = (nfsd4op_func)nfsd4_delegreturn,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001156 .op_name = "OP_DELEGRETURN",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001157 },
1158 [OP_GETATTR] = {
1159 .op_func = (nfsd4op_func)nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001160 .op_flags = ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001161 .op_name = "OP_GETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001162 },
1163 [OP_GETFH] = {
1164 .op_func = (nfsd4op_func)nfsd4_getfh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001165 .op_name = "OP_GETFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001166 },
1167 [OP_LINK] = {
1168 .op_func = (nfsd4op_func)nfsd4_link,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001169 .op_name = "OP_LINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001170 },
1171 [OP_LOCK] = {
1172 .op_func = (nfsd4op_func)nfsd4_lock,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001173 .op_name = "OP_LOCK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001174 },
1175 [OP_LOCKT] = {
1176 .op_func = (nfsd4op_func)nfsd4_lockt,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001177 .op_name = "OP_LOCKT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001178 },
1179 [OP_LOCKU] = {
1180 .op_func = (nfsd4op_func)nfsd4_locku,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001181 .op_name = "OP_LOCKU",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001182 },
1183 [OP_LOOKUP] = {
1184 .op_func = (nfsd4op_func)nfsd4_lookup,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001185 .op_name = "OP_LOOKUP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001186 },
1187 [OP_LOOKUPP] = {
1188 .op_func = (nfsd4op_func)nfsd4_lookupp,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001189 .op_name = "OP_LOOKUPP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001190 },
1191 [OP_NVERIFY] = {
1192 .op_func = (nfsd4op_func)nfsd4_nverify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001193 .op_name = "OP_NVERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001194 },
1195 [OP_OPEN] = {
1196 .op_func = (nfsd4op_func)nfsd4_open,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001197 .op_name = "OP_OPEN",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001198 },
1199 [OP_OPEN_CONFIRM] = {
1200 .op_func = (nfsd4op_func)nfsd4_open_confirm,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001201 .op_name = "OP_OPEN_CONFIRM",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001202 },
1203 [OP_OPEN_DOWNGRADE] = {
1204 .op_func = (nfsd4op_func)nfsd4_open_downgrade,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001205 .op_name = "OP_OPEN_DOWNGRADE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001206 },
1207 [OP_PUTFH] = {
1208 .op_func = (nfsd4op_func)nfsd4_putfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001209 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001210 .op_name = "OP_PUTFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001211 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001212 [OP_PUTPUBFH] = {
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001213 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001214 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001215 .op_name = "OP_PUTPUBFH",
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001216 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001217 [OP_PUTROOTFH] = {
1218 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001219 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001220 .op_name = "OP_PUTROOTFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001221 },
1222 [OP_READ] = {
1223 .op_func = (nfsd4op_func)nfsd4_read,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001224 .op_name = "OP_READ",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001225 },
1226 [OP_READDIR] = {
1227 .op_func = (nfsd4op_func)nfsd4_readdir,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001228 .op_name = "OP_READDIR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001229 },
1230 [OP_READLINK] = {
1231 .op_func = (nfsd4op_func)nfsd4_readlink,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001232 .op_name = "OP_READLINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001233 },
1234 [OP_REMOVE] = {
1235 .op_func = (nfsd4op_func)nfsd4_remove,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001236 .op_name = "OP_REMOVE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001237 },
1238 [OP_RENAME] = {
Benny Halevyb001a1b2008-07-02 11:15:03 +03001239 .op_name = "OP_RENAME",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001240 .op_func = (nfsd4op_func)nfsd4_rename,
1241 },
1242 [OP_RENEW] = {
1243 .op_func = (nfsd4op_func)nfsd4_renew,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001244 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001245 .op_name = "OP_RENEW",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001246 },
1247 [OP_RESTOREFH] = {
1248 .op_func = (nfsd4op_func)nfsd4_restorefh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001249 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001250 .op_name = "OP_RESTOREFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001251 },
1252 [OP_SAVEFH] = {
1253 .op_func = (nfsd4op_func)nfsd4_savefh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001254 .op_name = "OP_SAVEFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001255 },
Andy Adamsondcb488a32007-07-17 04:04:51 -07001256 [OP_SECINFO] = {
1257 .op_func = (nfsd4op_func)nfsd4_secinfo,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001258 .op_name = "OP_SECINFO",
Andy Adamsondcb488a32007-07-17 04:04:51 -07001259 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001260 [OP_SETATTR] = {
1261 .op_func = (nfsd4op_func)nfsd4_setattr,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001262 .op_name = "OP_SETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001263 },
1264 [OP_SETCLIENTID] = {
1265 .op_func = (nfsd4op_func)nfsd4_setclientid,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001266 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001267 .op_name = "OP_SETCLIENTID",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001268 },
1269 [OP_SETCLIENTID_CONFIRM] = {
1270 .op_func = (nfsd4op_func)nfsd4_setclientid_confirm,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001271 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001272 .op_name = "OP_SETCLIENTID_CONFIRM",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001273 },
1274 [OP_VERIFY] = {
1275 .op_func = (nfsd4op_func)nfsd4_verify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001276 .op_name = "OP_VERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001277 },
1278 [OP_WRITE] = {
1279 .op_func = (nfsd4op_func)nfsd4_write,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001280 .op_name = "OP_WRITE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001281 },
1282 [OP_RELEASE_LOCKOWNER] = {
1283 .op_func = (nfsd4op_func)nfsd4_release_lockowner,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001284 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001285 .op_name = "OP_RELEASE_LOCKOWNER",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001286 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03001287
1288 /* NFSv4.1 operations */
1289 [OP_EXCHANGE_ID] = {
1290 .op_func = (nfsd4op_func)nfsd4_exchange_id,
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001291 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001292 .op_name = "OP_EXCHANGE_ID",
1293 },
1294 [OP_CREATE_SESSION] = {
1295 .op_func = (nfsd4op_func)nfsd4_create_session,
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001296 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001297 .op_name = "OP_CREATE_SESSION",
1298 },
1299 [OP_DESTROY_SESSION] = {
1300 .op_func = (nfsd4op_func)nfsd4_destroy_session,
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001301 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001302 .op_name = "OP_DESTROY_SESSION",
1303 },
1304 [OP_SEQUENCE] = {
1305 .op_func = (nfsd4op_func)nfsd4_sequence,
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001306 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001307 .op_name = "OP_SEQUENCE",
1308 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001309};
1310
Adrian Bunkf1c7f792008-08-08 19:26:42 +03001311static const char *nfsd4_op_name(unsigned opnum)
Benny Halevyb001a1b2008-07-02 11:15:03 +03001312{
1313 if (opnum < ARRAY_SIZE(nfsd4_ops))
1314 return nfsd4_ops[opnum].op_name;
1315 return "unknown_operation";
1316}
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318#define nfsd4_voidres nfsd4_voidargs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319struct nfsd4_voidargs { int dummy; };
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321/*
1322 * TODO: At the present time, the NFSv4 server does not do XID caching
1323 * of requests. Implementing XID caching would not be a serious problem,
1324 * although it would require a mild change in interfaces since one
1325 * doesn't know whether an NFSv4 request is idempotent until after the
1326 * XDR decode. However, XID caching totally confuses pynfs (Peter
1327 * Astrand's regression testsuite for NFSv4 servers), which reuses
1328 * XID's liberally, so I've left it unimplemented until pynfs generates
1329 * better XID's.
1330 */
1331static struct svc_procedure nfsd_procedures4[2] = {
Yu Zhiguo0a93a472009-05-19 14:09:54 +08001332 [NFSPROC4_NULL] = {
1333 .pc_func = (svc_procfunc) nfsd4_proc_null,
1334 .pc_encode = (kxdrproc_t) nfs4svc_encode_voidres,
1335 .pc_argsize = sizeof(struct nfsd4_voidargs),
1336 .pc_ressize = sizeof(struct nfsd4_voidres),
1337 .pc_cachetype = RC_NOCACHE,
1338 .pc_xdrressize = 1,
1339 },
1340 [NFSPROC4_COMPOUND] = {
1341 .pc_func = (svc_procfunc) nfsd4_proc_compound,
1342 .pc_decode = (kxdrproc_t) nfs4svc_decode_compoundargs,
1343 .pc_encode = (kxdrproc_t) nfs4svc_encode_compoundres,
1344 .pc_argsize = sizeof(struct nfsd4_compoundargs),
1345 .pc_ressize = sizeof(struct nfsd4_compoundres),
1346 .pc_cachetype = RC_NOCACHE,
1347 .pc_xdrressize = NFSD_BUFSIZE/4,
1348 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349};
1350
1351struct svc_version nfsd_version4 = {
1352 .vs_vers = 4,
1353 .vs_nproc = 2,
1354 .vs_proc = nfsd_procedures4,
1355 .vs_dispatch = nfsd_dispatch,
1356 .vs_xdrsize = NFS4_SVC_XDRSIZE,
1357};
1358
1359/*
1360 * Local variables:
1361 * c-basic-offset: 8
1362 * End:
1363 */