blob: 825b8a99b99b42aaf1675518ea979a77b67c1955 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Server-side procedures 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
NeilBrown7e06b7f2005-06-23 22:03:13 -070035#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Mi Jinlong58e7b332011-08-28 18:18:56 +080038#include "idmap.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020039#include "cache.h"
40#include "xdr4.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050041#include "vfs.h"
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +010042#include "current_stateid.h"
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +030043#include "netns.h"
Christoph Hellwig4ac72492013-12-20 05:16:55 -080044#include "acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
David Quigley18032ca2013-05-02 13:19:10 -040046#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
47#include <linux/security.h>
48
49static inline void
50nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
51{
52 struct inode *inode = resfh->fh_dentry->d_inode;
53 int status;
54
55 mutex_lock(&inode->i_mutex);
56 status = security_inode_setsecctx(resfh->fh_dentry,
57 label->data, label->len);
58 mutex_unlock(&inode->i_mutex);
59
60 if (status)
61 /*
62 * XXX: We should really fail the whole open, but we may
63 * already have created a new file, so it may be too
64 * late. For now this seems the least of evils:
65 */
66 bmval[2] &= ~FATTR4_WORD2_SECURITY_LABEL;
67
68 return;
69}
70#else
71static inline void
72nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval)
73{ }
74#endif
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define NFSDDBG_FACILITY NFSDDBG_PROC
77
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080078static u32 nfsd_attrmask[] = {
79 NFSD_WRITEABLE_ATTRS_WORD0,
80 NFSD_WRITEABLE_ATTRS_WORD1,
81 NFSD_WRITEABLE_ATTRS_WORD2
82};
83
84static u32 nfsd41_ex_attrmask[] = {
85 NFSD_SUPPATTR_EXCLCREAT_WORD0,
86 NFSD_SUPPATTR_EXCLCREAT_WORD1,
87 NFSD_SUPPATTR_EXCLCREAT_WORD2
88};
89
90static __be32
91check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
92 u32 *bmval, u32 *writable)
93{
94 struct dentry *dentry = cstate->current_fh.fh_dentry;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080095
96 /*
97 * Check about attributes are supported by the NFSv4 server or not.
98 * According to spec, unsupported attributes return ERR_ATTRNOTSUPP.
99 */
100 if ((bmval[0] & ~nfsd_suppattrs0(cstate->minorversion)) ||
101 (bmval[1] & ~nfsd_suppattrs1(cstate->minorversion)) ||
102 (bmval[2] & ~nfsd_suppattrs2(cstate->minorversion)))
103 return nfserr_attrnotsupp;
104
105 /*
Trond Myklebusta06b1262009-08-31 15:16:11 -0400106 * Check FATTR4_WORD0_ACL can be supported
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800107 * in current environment or not.
108 */
109 if (bmval[0] & FATTR4_WORD0_ACL) {
110 if (!IS_POSIXACL(dentry->d_inode))
111 return nfserr_attrnotsupp;
112 }
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800113
114 /*
115 * According to spec, read-only attributes return ERR_INVAL.
116 */
117 if (writable) {
118 if ((bmval[0] & ~writable[0]) || (bmval[1] & ~writable[1]) ||
119 (bmval[2] & ~writable[2]))
120 return nfserr_inval;
121 }
122
123 return nfs_ok;
124}
125
126static __be32
127nfsd4_check_open_attributes(struct svc_rqst *rqstp,
128 struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
129{
130 __be32 status = nfs_ok;
131
132 if (open->op_create == NFS4_OPEN_CREATE) {
133 if (open->op_createmode == NFS4_CREATE_UNCHECKED
134 || open->op_createmode == NFS4_CREATE_GUARDED)
135 status = check_attr_support(rqstp, cstate,
136 open->op_bmval, nfsd_attrmask);
137 else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1)
138 status = check_attr_support(rqstp, cstate,
139 open->op_bmval, nfsd41_ex_attrmask);
140 }
141
142 return status;
143}
144
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800145static int
146is_create_with_attrs(struct nfsd4_open *open)
147{
148 return open->op_create == NFS4_OPEN_CREATE
149 && (open->op_createmode == NFS4_CREATE_UNCHECKED
150 || open->op_createmode == NFS4_CREATE_GUARDED
151 || open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1);
152}
153
154/*
155 * if error occurs when setting the acl, just clear the acl bit
156 * in the returned attr bitmap.
157 */
158static void
159do_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
160 struct nfs4_acl *acl, u32 *bmval)
161{
162 __be32 status;
163
164 status = nfsd4_set_nfs4_acl(rqstp, fhp, acl);
165 if (status)
166 /*
167 * We should probably fail the whole open at this point,
168 * but we've already created the file, so it's too late;
169 * So this seems the least of evils:
170 */
171 bmval[0] &= ~FATTR4_WORD0_ACL;
172}
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174static inline void
175fh_dup2(struct svc_fh *dst, struct svc_fh *src)
176{
177 fh_put(dst);
178 dget(src->fh_dentry);
179 if (src->fh_export)
180 cache_get(&src->fh_export->h);
181 *dst = *src;
182}
183
Al Virob37ad282006-10-19 23:28:59 -0700184static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -0700185do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Al Virob37ad282006-10-19 23:28:59 -0700187 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 if (open->op_truncate &&
190 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
191 return nfserr_inval;
192
J. Bruce Fieldsa0432262011-08-25 10:48:39 -0400193 accmode |= NFSD_MAY_READ_IF_EXEC;
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200196 accmode |= NFSD_MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -0700197 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200198 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
J. Bruce Fields57ecb342009-12-01 19:42:57 -0500199 if (open->op_share_deny & NFS4_SHARE_DENY_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200200 accmode |= NFSD_MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
203
204 return status;
205}
206
J. Bruce Fieldsaadab6c2011-08-15 16:55:02 -0400207static __be32 nfsd_check_obj_isreg(struct svc_fh *fh)
208{
209 umode_t mode = fh->fh_dentry->d_inode->i_mode;
210
211 if (S_ISREG(mode))
212 return nfs_ok;
213 if (S_ISDIR(mode))
214 return nfserr_isdir;
215 /*
216 * Using err_symlink as our catch-all case may look odd; but
217 * there's no other obvious error for this case in 4.0, and we
218 * happen to know that it will cause the linux v4 client to do
219 * the right thing on attempts to open something other than a
220 * regular file.
221 */
222 return nfserr_symlink;
223}
224
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400225static void nfsd4_set_open_owner_reply_cache(struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh *resfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400227 if (nfsd4_has_session(cstate))
228 return;
229 fh_copy_shallow(&open->op_openowner->oo_owner.so_replay.rp_openfh,
230 &resfh->fh_handle);
231}
232
233static __be32
234do_open_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
235{
236 struct svc_fh *current_fh = &cstate->current_fh;
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500237 struct svc_fh *resfh;
Neil Brown7007c902012-12-07 15:40:55 -0500238 int accmode;
Al Virob37ad282006-10-19 23:28:59 -0700239 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500241 resfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL);
242 if (!resfh)
243 return nfserr_jukebox;
244 fh_init(resfh, NFS4_FHSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 open->op_truncate = 0;
246
247 if (open->op_create) {
Benny Halevy79fb54a2009-04-03 08:29:17 +0300248 /* FIXME: check session persistence and pnfs flags.
249 * The nfsv4.1 spec requires the following semantics:
250 *
251 * Persistent | pNFS | Server REQUIRED | Client Allowed
252 * Reply Cache | server | |
253 * -------------+--------+-----------------+--------------------
254 * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1
255 * | | | (SHOULD)
256 * | | and EXCLUSIVE4 | or EXCLUSIVE4
257 * | | | (SHOULD NOT)
258 * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1
259 * yes | no | GUARDED4 | GUARDED4
260 * yes | yes | GUARDED4 | GUARDED4
261 */
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /*
264 * Note: create modes (UNCHECKED,GUARDED...) are the same
Mi Jinlongac6721a2011-04-20 17:06:25 +0800265 * in NFSv4 as in v3 except EXCLUSIVE4_1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
Mi Jinlongac6721a2011-04-20 17:06:25 +0800267 status = do_nfsd_create(rqstp, current_fh, open->op_fname.data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 open->op_fname.len, &open->op_iattr,
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500269 resfh, open->op_createmode,
Jeff Layton749997e2007-07-31 00:37:51 -0700270 (u32 *)open->op_verf.data,
J. Bruce Fields856121b2011-10-13 11:37:11 -0400271 &open->op_truncate, &open->op_created);
Jeff Layton749997e2007-07-31 00:37:51 -0700272
David Quigley18032ca2013-05-02 13:19:10 -0400273 if (!status && open->op_label.len)
274 nfsd4_security_inode_setsecctx(resfh, &open->op_label, open->op_bmval);
275
J. Bruce Fields99f88722009-02-02 15:12:27 -0500276 /*
277 * Following rfc 3530 14.2.16, use the returned bitmask
278 * to indicate which attributes we used to store the
279 * verifier:
Jeff Layton749997e2007-07-31 00:37:51 -0700280 */
281 if (open->op_createmode == NFS4_CREATE_EXCLUSIVE && status == 0)
J. Bruce Fields99f88722009-02-02 15:12:27 -0500282 open->op_bmval[1] = (FATTR4_WORD1_TIME_ACCESS |
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -0400283 FATTR4_WORD1_TIME_MODIFY);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800284 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 status = nfsd_lookup(rqstp, current_fh,
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500286 open->op_fname.data, open->op_fname.len, resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 fh_unlock(current_fh);
288 }
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800289 if (status)
290 goto out;
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -0400291 status = nfsd_check_obj_isreg(resfh);
292 if (status)
293 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800295 if (is_create_with_attrs(open) && open->op_acl != NULL)
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500296 do_set_nfs4_acl(rqstp, resfh, open->op_acl, open->op_bmval);
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800297
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400298 nfsd4_set_open_owner_reply_cache(cstate, open, resfh);
Neil Brown7007c902012-12-07 15:40:55 -0500299 accmode = NFSD_MAY_NOP;
J. Bruce Fields89f6c332013-06-19 15:47:37 -0400300 if (open->op_created ||
301 open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR)
Neil Brown7007c902012-12-07 15:40:55 -0500302 accmode |= NFSD_MAY_OWNER_OVERRIDE;
303 status = do_open_permission(rqstp, resfh, open, accmode);
J. Bruce Fields41fd1e42012-01-27 16:26:02 -0500304 set_change_info(&open->op_cinfo, current_fh);
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500305 fh_dup2(current_fh, resfh);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800306out:
J. Bruce Fields59deeb92012-01-27 16:49:55 -0500307 fh_put(resfh);
308 kfree(resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return status;
310}
311
Al Virob37ad282006-10-19 23:28:59 -0700312static __be32
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400313do_open_fhandle(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400315 struct svc_fh *current_fh = &cstate->current_fh;
Al Virob37ad282006-10-19 23:28:59 -0700316 __be32 status;
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400317 int accmode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* We don't know the target directory, and therefore can not
320 * set the change info
321 */
322
323 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
324
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400325 nfsd4_set_open_owner_reply_cache(cstate, open, current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
328 (open->op_iattr.ia_size == 0);
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400329 /*
330 * In the delegation case, the client is telling us about an
331 * open that it *already* performed locally, some time ago. We
332 * should let it succeed now if possible.
333 *
334 * In the case of a CLAIM_FH open, on the other hand, the client
335 * may be counting on us to enforce permissions (the Linux 4.1
336 * client uses this for normal opens, for example).
337 */
338 if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH)
339 accmode = NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
J. Bruce Fields9f415eb2013-05-03 16:09:09 -0400341 status = do_open_permission(rqstp, current_fh, open, accmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 return status;
344}
345
Andy Adamson60adfc52009-04-03 08:28:50 +0300346static void
347copy_clientid(clientid_t *clid, struct nfsd4_session *session)
348{
349 struct nfsd4_sessionid *sid =
350 (struct nfsd4_sessionid *)session->se_sessionid.data;
351
352 clid->cl_boot = sid->clientid.cl_boot;
353 clid->cl_id = sid->clientid.cl_id;
354}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
J.Bruce Fields71911552006-12-13 00:35:29 -0800356static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800357nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800358 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Al Virob37ad282006-10-19 23:28:59 -0700360 __be32 status;
Andy Adamson66689582009-04-03 08:28:45 +0300361 struct nfsd4_compoundres *resp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300362 struct net *net = SVC_NET(rqstp);
363 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Andy Adamson66689582009-04-03 08:28:45 +0300364
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400365 dprintk("NFSD: nfsd4_open filename %.*s op_openowner %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 (int)open->op_fname.len, open->op_fname.data,
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400367 open->op_openowner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /* This check required by spec. */
370 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
371 return nfserr_inval;
372
J. Bruce Fields856121b2011-10-13 11:37:11 -0400373 open->op_created = 0;
Mi Jinlongab1350b2011-07-14 15:06:26 +0800374 /*
375 * RFC5661 18.51.3
376 * Before RECLAIM_COMPLETE done, server should deny new lock
377 */
378 if (nfsd4_has_session(cstate) &&
Jeff Laytona52d7262012-03-21 09:52:02 -0400379 !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE,
380 &cstate->session->se_client->cl_flags) &&
Mi Jinlongab1350b2011-07-14 15:06:26 +0800381 open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
382 return nfserr_grace;
383
Andy Adamson60adfc52009-04-03 08:28:50 +0300384 if (nfsd4_has_session(cstate))
385 copy_clientid(&open->op_clientid, cstate->session);
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 nfs4_lock_state();
388
389 /* check seqid for replay. set nfs4_owner */
Andy Adamson66689582009-04-03 08:28:45 +0300390 resp = rqstp->rq_resp;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300391 status = nfsd4_process_open1(&resp->cstate, open, nn);
Al Viroa90b0612006-10-19 23:29:03 -0700392 if (status == nfserr_replay_me) {
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400393 struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800394 fh_put(&cstate->current_fh);
J. Bruce Fieldsa4773c02009-02-02 17:23:10 -0500395 fh_copy_shallow(&cstate->current_fh.fh_handle,
396 &rp->rp_openfh);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200397 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (status)
399 dprintk("nfsd4_open: replay failed"
400 " restoring previous filehandle\n");
401 else
Al Viroa90b0612006-10-19 23:29:03 -0700402 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404 if (status)
405 goto out;
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800406 if (open->op_xdr_error) {
407 status = open->op_xdr_error;
408 goto out;
409 }
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800410
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800411 status = nfsd4_check_open_attributes(rqstp, cstate, open);
412 if (status)
413 goto out;
414
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800415 /* Openowner is now set, so sequence id will get bumped. Now we need
416 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800417 status = nfserr_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300418 if (locks_in_grace(net) && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800419 goto out;
420 status = nfserr_no_grace;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300421 if (!locks_in_grace(net) && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800422 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700425 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 case NFS4_OPEN_CLAIM_NULL:
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400427 status = do_open_lookup(rqstp, cstate, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (status)
429 goto out;
430 break;
431 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -0400432 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
Stanislav Kinsbursky3320fef192012-11-14 18:22:07 +0300433 status = nfs4_check_open_reclaim(&open->op_clientid,
434 cstate->minorversion,
435 nn);
Mi Jinlong0cf99b92011-11-23 10:48:40 +0800436 if (status)
437 goto out;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400438 case NFS4_OPEN_CLAIM_FH:
439 case NFS4_OPEN_CLAIM_DELEG_CUR_FH:
J. Bruce Fieldsbbc9c362013-03-22 18:03:49 -0400440 status = do_open_fhandle(rqstp, cstate, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (status)
442 goto out;
443 break;
J. Bruce Fields8b289b22011-10-19 11:52:12 -0400444 case NFS4_OPEN_CLAIM_DELEG_PREV_FH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fieldsdad1c062011-09-12 12:24:13 -0400446 open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED;
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400447 dprintk("NFSD: unsupported OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 open->op_claim_type);
449 status = nfserr_notsupp;
450 goto out;
451 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400452 dprintk("NFSD: Invalid OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 open->op_claim_type);
454 status = nfserr_inval;
455 goto out;
456 }
457 /*
458 * nfsd4_process_open2() does the actual opening of the file. If
459 * successful, it (1) truncates the file if open->op_truncate was
460 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
461 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800462 status = nfsd4_process_open2(rqstp, &cstate->current_fh, open);
J. Bruce Fields856121b2011-10-13 11:37:11 -0400463 WARN_ON(status && open->op_created);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464out:
J. Bruce Fieldsd29b20c2011-10-13 15:12:59 -0400465 nfsd4_cleanup_open_state(open, status);
J. Bruce Fields3d74e6a2013-03-22 17:44:19 -0400466 if (open->op_openowner && !nfsd4_has_session(cstate))
J. Bruce Fieldsfe0750e2011-07-30 23:33:59 -0400467 cstate->replay_owner = &open->op_openowner->oo_owner;
J. Bruce Fields9411b1d2013-04-01 16:37:12 -0400468 nfsd4_bump_seqid(cstate, status);
469 if (!cstate->replay_owner)
J. Bruce Fields5ec094c2011-08-30 17:02:48 -0400470 nfs4_unlock_state();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return status;
472}
473
474/*
J. Bruce Fields9d313b12013-02-28 12:51:49 -0800475 * OPEN is the only seqid-mutating operation whose decoding can fail
476 * with a seqid-mutating error (specifically, decoding of user names in
477 * the attributes). Therefore we have to do some processing to look up
478 * the stateowner so that we can bump the seqid.
479 */
480static __be32 nfsd4_open_omfg(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_op *op)
481{
482 struct nfsd4_open *open = (struct nfsd4_open *)&op->u;
483
484 if (!seqid_mutating_err(ntohl(op->status)))
485 return op->status;
486 if (nfsd4_has_session(cstate))
487 return op->status;
488 open->op_xdr_error = op->status;
489 return nfsd4_open(rqstp, cstate, open);
490}
491
492/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * filehandle-manipulating ops.
494 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800495static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800496nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
497 struct svc_fh **getfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800499 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return nfserr_nofilehandle;
501
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800502 *getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return nfs_ok;
504}
505
J.Bruce Fields71911552006-12-13 00:35:29 -0800506static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800507nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
508 struct nfsd4_putfh *putfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800510 fh_put(&cstate->current_fh);
511 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
512 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
513 putfh->pf_fhlen);
J. Bruce Fields68d93182011-04-08 17:00:50 -0400514 return fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_BYPASS_GSS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
J.Bruce Fields71911552006-12-13 00:35:29 -0800517static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800518nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
519 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Al Virob37ad282006-10-19 23:28:59 -0700521 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800523 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700524 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return status;
526}
527
J.Bruce Fields71911552006-12-13 00:35:29 -0800528static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800529nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
530 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800532 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return nfserr_restorefh;
534
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800535 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100536 if (HAS_STATE_ID(cstate, SAVED_STATE_ID_FLAG)) {
537 memcpy(&cstate->current_stateid, &cstate->save_stateid, sizeof(stateid_t));
538 SET_STATE_ID(cstate, CURRENT_STATE_ID_FLAG);
539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return nfs_ok;
541}
542
J.Bruce Fields71911552006-12-13 00:35:29 -0800543static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800544nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
545 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800547 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return nfserr_nofilehandle;
549
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800550 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +0100551 if (HAS_STATE_ID(cstate, CURRENT_STATE_ID_FLAG)) {
552 memcpy(&cstate->save_stateid, &cstate->current_stateid, sizeof(stateid_t));
553 SET_STATE_ID(cstate, SAVED_STATE_ID_FLAG);
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return nfs_ok;
556}
557
558/*
559 * misc nfsv4 ops
560 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800561static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800562nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
563 struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
566 return nfserr_inval;
567
568 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800569 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
570 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300573static void gen_boot_verifier(nfs4_verifier *verifier, struct net *net)
Chuck Leverab4684d2012-03-02 17:13:50 -0500574{
575 __be32 verf[2];
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300576 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Leverab4684d2012-03-02 17:13:50 -0500577
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300578 verf[0] = (__be32)nn->nfssvc_boot.tv_sec;
579 verf[1] = (__be32)nn->nfssvc_boot.tv_usec;
Chuck Leverab4684d2012-03-02 17:13:50 -0500580 memcpy(verifier->data, verf, sizeof(verifier->data));
581}
582
J.Bruce Fields71911552006-12-13 00:35:29 -0800583static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800584nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
585 struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +0300587 gen_boot_verifier(&commit->co_verf, SVC_NET(rqstp));
J. Bruce Fields75c096f2011-08-15 18:39:32 -0400588 return nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800589 commit->co_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Al Virob37ad282006-10-19 23:28:59 -0700592static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800593nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
594 struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700597 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 dev_t rdev;
599
600 fh_init(&resfh, NFS4_FHSIZE);
601
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200602 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR,
603 NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (status)
605 return status;
606
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800607 status = check_attr_support(rqstp, cstate, create->cr_bmval,
608 nfsd_attrmask);
609 if (status)
610 return status;
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 switch (create->cr_type) {
613 case NF4LNK:
614 /* ugh! we have to null-terminate the linktext, or
615 * vfs_symlink() will choke. it is always safe to
616 * null-terminate by brute force, since at worst we
617 * will overwrite the first byte of the create namelen
618 * in the XDR buffer, which has already been extracted
619 * during XDR decode.
620 */
621 create->cr_linkname[create->cr_linklen] = 0;
622
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800623 status = nfsd_symlink(rqstp, &cstate->current_fh,
624 create->cr_name, create->cr_namelen,
625 create->cr_linkname, create->cr_linklen,
626 &resfh, &create->cr_iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 break;
628
629 case NF4BLK:
630 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
631 if (MAJOR(rdev) != create->cr_specdata1 ||
632 MINOR(rdev) != create->cr_specdata2)
633 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800634 status = nfsd_create(rqstp, &cstate->current_fh,
635 create->cr_name, create->cr_namelen,
636 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 break;
638
639 case NF4CHR:
640 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
641 if (MAJOR(rdev) != create->cr_specdata1 ||
642 MINOR(rdev) != create->cr_specdata2)
643 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800644 status = nfsd_create(rqstp, &cstate->current_fh,
645 create->cr_name, create->cr_namelen,
646 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 break;
648
649 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800650 status = nfsd_create(rqstp, &cstate->current_fh,
651 create->cr_name, create->cr_namelen,
652 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 break;
654
655 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800656 status = nfsd_create(rqstp, &cstate->current_fh,
657 create->cr_name, create->cr_namelen,
658 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 break;
660
661 case NF4DIR:
662 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800663 status = nfsd_create(rqstp, &cstate->current_fh,
664 create->cr_name, create->cr_namelen,
665 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 break;
667
668 default:
669 status = nfserr_badtype;
670 }
671
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800672 if (status)
673 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
David Quigley18032ca2013-05-02 13:19:10 -0400675 if (create->cr_label.len)
676 nfsd4_security_inode_setsecctx(&resfh, &create->cr_label, create->cr_bmval);
677
Yu Zhiguo9208faf2009-07-06 17:24:16 +0800678 if (create->cr_acl != NULL)
679 do_set_nfs4_acl(rqstp, &resfh, create->cr_acl,
680 create->cr_bmval);
681
682 fh_unlock(&cstate->current_fh);
683 set_change_info(&create->cr_cinfo, &cstate->current_fh);
684 fh_dup2(&cstate->current_fh, &resfh);
685out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 fh_put(&resfh);
687 return status;
688}
689
J.Bruce Fields71911552006-12-13 00:35:29 -0800690static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800691nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
692 struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Al Virob37ad282006-10-19 23:28:59 -0700694 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200696 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (status)
698 return status;
699
700 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
701 return nfserr_inval;
702
Andy Adamson7e705702009-04-03 08:29:11 +0300703 getattr->ga_bmval[0] &= nfsd_suppattrs0(cstate->minorversion);
704 getattr->ga_bmval[1] &= nfsd_suppattrs1(cstate->minorversion);
705 getattr->ga_bmval[2] &= nfsd_suppattrs2(cstate->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800707 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return nfs_ok;
709}
710
J.Bruce Fields71911552006-12-13 00:35:29 -0800711static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800712nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
713 struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Al Virob37ad282006-10-19 23:28:59 -0700715 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800717 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800719 status = nfsd_link(rqstp, &cstate->current_fh,
720 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800722 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return status;
724}
725
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500726static __be32 nfsd4_do_lookupp(struct svc_rqst *rqstp, struct svc_fh *fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700729 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700732 ret = exp_pseudoroot(rqstp, &tmp_fh);
733 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return ret;
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500735 if (tmp_fh.fh_dentry == fh->fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 fh_put(&tmp_fh);
737 return nfserr_noent;
738 }
739 fh_put(&tmp_fh);
J. Bruce Fields0ff7ab42010-12-16 10:06:27 -0500740 return nfsd_lookup(rqstp, fh, "..", 2, fh);
741}
742
743static __be32
744nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
745 void *arg)
746{
747 return nfsd4_do_lookupp(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
J.Bruce Fields71911552006-12-13 00:35:29 -0800750static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800751nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
752 struct nfsd4_lookup *lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800754 return nfsd_lookup(rqstp, &cstate->current_fh,
755 lookup->lo_name, lookup->lo_len,
756 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
J.Bruce Fields71911552006-12-13 00:35:29 -0800759static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800760nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
761 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Al Virob37ad282006-10-19 23:28:59 -0700763 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 /* no need to check permission - this will be done in nfsd_read() */
766
NeilBrown7e06b7f2005-06-23 22:03:13 -0700767 read->rd_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 if (read->rd_offset >= OFFSET_MAX)
769 return nfserr_inval;
770
J. Bruce Fields9b3234b2012-12-04 18:03:46 -0500771 /*
772 * If we do a zero copy read, then a client will see read data
773 * that reflects the state of the file *after* performing the
774 * following compound.
775 *
776 * To ensure proper ordering, we therefore turn off zero copy if
777 * the client wants us to do more in this compound:
778 */
779 if (!nfsd4_last_compound_op(rqstp))
780 rqstp->rq_splice_ok = false;
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 nfs4_lock_state();
783 /* check stateid */
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400784 if ((status = nfs4_preprocess_stateid_op(SVC_NET(rqstp),
785 cstate, &read->rd_stateid,
Benny Halevydd453df2009-04-03 08:28:41 +0300786 RD_STATE, &read->rd_filp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
788 goto out;
789 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700790 if (read->rd_filp)
791 get_file(read->rd_filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 status = nfs_ok;
793out:
794 nfs4_unlock_state();
795 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800796 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return status;
798}
799
J.Bruce Fields71911552006-12-13 00:35:29 -0800800static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800801nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
802 struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 u64 cookie = readdir->rd_cookie;
805 static const nfs4_verifier zeroverf;
806
807 /* no need to check permission - this will be done in nfsd_readdir() */
808
809 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
810 return nfserr_inval;
811
Andy Adamson7e705702009-04-03 08:29:11 +0300812 readdir->rd_bmval[0] &= nfsd_suppattrs0(cstate->minorversion);
813 readdir->rd_bmval[1] &= nfsd_suppattrs1(cstate->minorversion);
814 readdir->rd_bmval[2] &= nfsd_suppattrs2(cstate->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Bernd Schubert832023b2011-08-08 17:38:08 +0200816 if ((cookie == 1) || (cookie == 2) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
818 return nfserr_bad_cookie;
819
820 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800821 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return nfs_ok;
823}
824
J.Bruce Fields71911552006-12-13 00:35:29 -0800825static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800826nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
827 struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 readlink->rl_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800830 readlink->rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return nfs_ok;
832}
833
J.Bruce Fields71911552006-12-13 00:35:29 -0800834static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800835nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
836 struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Al Virob37ad282006-10-19 23:28:59 -0700838 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400840 if (locks_in_grace(SVC_NET(rqstp)))
NeilBrownc815afc2005-06-23 22:03:00 -0700841 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800842 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
843 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800845 fh_unlock(&cstate->current_fh);
846 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848 return status;
849}
850
J.Bruce Fields71911552006-12-13 00:35:29 -0800851static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800852nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
853 struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
Al Virob37ad282006-10-19 23:28:59 -0700855 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800857 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return status;
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400859 if (locks_in_grace(SVC_NET(rqstp)) &&
860 !(cstate->save_fh.fh_export->ex_flags & NFSEXP_NOSUBTREECHECK))
NeilBrownc815afc2005-06-23 22:03:00 -0700861 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800862 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
863 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 rename->rn_tname, rename->rn_tnamelen);
J. Bruce Fields2a6cf942013-04-30 15:28:51 -0400865 if (status)
866 return status;
867 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
868 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
869 return nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
J.Bruce Fields71911552006-12-13 00:35:29 -0800872static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700873nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
874 struct nfsd4_secinfo *secinfo)
875{
876 struct svc_fh resfh;
877 struct svc_export *exp;
878 struct dentry *dentry;
879 __be32 err;
880
881 fh_init(&resfh, NFS4_FHSIZE);
J. Bruce Fields29a78a32011-04-09 11:28:53 -0400882 err = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_EXEC);
883 if (err)
884 return err;
Andy Adamsondcb488a32007-07-17 04:04:51 -0700885 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
886 secinfo->si_name, secinfo->si_namelen,
887 &exp, &dentry);
888 if (err)
889 return err;
890 if (dentry->d_inode == NULL) {
891 exp_put(exp);
892 err = nfserr_noent;
893 } else
894 secinfo->si_exp = exp;
895 dput(dentry);
J. Bruce Fields56560b92010-12-16 09:57:15 -0500896 if (cstate->minorversion)
897 /* See rfc 5661 section 2.6.3.1.1.8 */
898 fh_put(&cstate->current_fh);
Andy Adamsondcb488a32007-07-17 04:04:51 -0700899 return err;
900}
901
902static __be32
J. Bruce Fields04f4ad12010-12-16 09:51:13 -0500903nfsd4_secinfo_no_name(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
904 struct nfsd4_secinfo_no_name *sin)
905{
906 __be32 err;
907
908 switch (sin->sin_style) {
909 case NFS4_SECINFO_STYLE4_CURRENT_FH:
910 break;
911 case NFS4_SECINFO_STYLE4_PARENT:
912 err = nfsd4_do_lookupp(rqstp, &cstate->current_fh);
913 if (err)
914 return err;
915 break;
916 default:
917 return nfserr_inval;
918 }
919 exp_get(cstate->current_fh.fh_export);
920 sin->sin_exp = cstate->current_fh.fh_export;
921 fh_put(&cstate->current_fh);
922 return nfs_ok;
923}
924
925static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800926nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
927 struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Al Virob37ad282006-10-19 23:28:59 -0700929 __be32 status = nfs_ok;
Al Viro96f6f982012-04-12 23:47:00 -0400930 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
933 nfs4_lock_state();
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400934 status = nfs4_preprocess_stateid_op(SVC_NET(rqstp), cstate,
J. Bruce Fields6150ef02009-02-21 13:36:16 -0800935 &setattr->sa_stateid, WR_STATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -0800937 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700938 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800939 return status;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
Al Viro96f6f982012-04-12 23:47:00 -0400942 err = fh_want_write(&cstate->current_fh);
943 if (err)
944 return nfserrno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 status = nfs_ok;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800946
947 status = check_attr_support(rqstp, cstate, setattr->sa_bmval,
948 nfsd_attrmask);
949 if (status)
950 goto out;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800953 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
954 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (status)
Dave Hansen18f335a2008-02-15 14:37:38 -0800956 goto out;
David Quigley18032ca2013-05-02 13:19:10 -0400957 if (setattr->sa_label.len)
958 status = nfsd4_set_nfs4_label(rqstp, &cstate->current_fh,
959 &setattr->sa_label);
960 if (status)
961 goto out;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800962 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 0, (time_t)0);
Dave Hansen18f335a2008-02-15 14:37:38 -0800964out:
Al Virobad0dcf2011-11-23 12:03:18 -0500965 fh_drop_write(&cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 return status;
967}
968
J. Bruce Fieldsffe11372012-11-15 14:52:19 -0500969static int fill_in_write_vector(struct kvec *vec, struct nfsd4_write *write)
970{
971 int i = 1;
972 int buflen = write->wr_buflen;
973
974 vec[0].iov_base = write->wr_head.iov_base;
975 vec[0].iov_len = min_t(int, buflen, write->wr_head.iov_len);
976 buflen -= vec[0].iov_len;
977
978 while (buflen) {
979 vec[i].iov_base = page_address(write->wr_pagelist[i - 1]);
980 vec[i].iov_len = min_t(int, PAGE_SIZE, buflen);
981 buflen -= vec[i].iov_len;
982 i++;
983 }
984 return i;
985}
986
J.Bruce Fields71911552006-12-13 00:35:29 -0800987static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800988nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
989 struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
991 stateid_t *stateid = &write->wr_stateid;
992 struct file *filp = NULL;
Al Virob37ad282006-10-19 23:28:59 -0700993 __be32 status = nfs_ok;
David Shaw31dec252009-03-05 20:16:14 -0500994 unsigned long cnt;
J. Bruce Fieldsffe11372012-11-15 14:52:19 -0500995 int nvecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 /* no need to check permission - this will be done in nfsd_write() */
998
999 if (write->wr_offset >= OFFSET_MAX)
1000 return nfserr_inval;
1001
1002 nfs4_lock_state();
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +04001003 status = nfs4_preprocess_stateid_op(SVC_NET(rqstp),
1004 cstate, stateid, WR_STATE, &filp);
J. Bruce Fields375c5542006-01-18 17:43:33 -08001005 if (status) {
fanchaotingb0220322013-04-01 21:07:22 +08001006 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -08001007 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
1008 return status;
1009 }
fanchaotingb0220322013-04-01 21:07:22 +08001010 if (filp)
1011 get_file(filp);
1012 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -08001013
David Shaw31dec252009-03-05 20:16:14 -05001014 cnt = write->wr_buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 write->wr_how_written = write->wr_stable_how;
Stanislav Kinsburskyb9c0ef82012-12-06 14:23:19 +03001016 gen_boot_verifier(&write->wr_verifier, SVC_NET(rqstp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
J. Bruce Fieldsffe11372012-11-15 14:52:19 -05001018 nvecs = fill_in_write_vector(rqstp->rq_vec, write);
1019 WARN_ON_ONCE(nvecs > ARRAY_SIZE(rqstp->rq_vec));
1020
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001021 status = nfsd_write(rqstp, &cstate->current_fh, filp,
J. Bruce Fieldsffe11372012-11-15 14:52:19 -05001022 write->wr_offset, rqstp->rq_vec, nvecs,
David Shaw31dec252009-03-05 20:16:14 -05001023 &cnt, &write->wr_how_written);
NeilBrown7e06b7f2005-06-23 22:03:13 -07001024 if (filp)
1025 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
David Shaw31dec252009-03-05 20:16:14 -05001027 write->wr_bytes_written = cnt;
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
1032/* This routine never returns NFS_OK! If there are no other errors, it
1033 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
1034 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
1035 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
1036 */
Al Virob37ad282006-10-19 23:28:59 -07001037static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001038_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001039 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Al Viro2ebbc012006-10-19 23:28:58 -07001041 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 int count;
Al Virob37ad282006-10-19 23:28:59 -07001043 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001045 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (status)
1047 return status;
1048
Yu Zhiguo3c8e0312009-05-16 16:22:31 +08001049 status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL);
1050 if (status)
1051 return status;
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
1054 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
1055 return nfserr_inval;
1056 if (verify->ve_attrlen & 3)
1057 return nfserr_inval;
1058
1059 /* count in words:
1060 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
1061 */
1062 count = 4 + (verify->ve_attrlen >> 2);
1063 buf = kmalloc(count << 2, GFP_KERNEL);
1064 if (!buf)
J. Bruce Fields3e772462011-08-10 19:07:33 -04001065 return nfserr_jukebox;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
J. Bruce Fields84822d02012-12-14 17:57:50 -05001067 p = buf;
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001068 status = nfsd4_encode_fattr(&cstate->current_fh,
1069 cstate->current_fh.fh_export,
J. Bruce Fields84822d02012-12-14 17:57:50 -05001070 cstate->current_fh.fh_dentry, &p,
1071 count, verify->ve_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -08001072 rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /* this means that nfsd4_encode_fattr() ran out of space */
J. Bruce Fields84822d02012-12-14 17:57:50 -05001075 if (status == nfserr_resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 status = nfserr_not_same;
1077 if (status)
1078 goto out_kfree;
1079
Benny Halevy95ec28c2009-04-03 08:29:08 +03001080 /* skip bitmap */
1081 p = buf + 1 + ntohl(buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 status = nfserr_not_same;
1083 if (ntohl(*p++) != verify->ve_attrlen)
1084 goto out_kfree;
1085 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
1086 status = nfserr_same;
1087
1088out_kfree:
1089 kfree(buf);
1090 return status;
1091}
1092
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -08001093static __be32
1094nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1095 struct nfsd4_verify *verify)
1096{
1097 __be32 status;
1098
1099 status = _nfsd4_verify(rqstp, cstate, verify);
1100 return status == nfserr_not_same ? nfs_ok : status;
1101}
1102
1103static __be32
1104nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
1105 struct nfsd4_verify *verify)
1106{
1107 __be32 status;
1108
1109 status = _nfsd4_verify(rqstp, cstate, verify);
1110 return status == nfserr_same ? nfs_ok : status;
1111}
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113/*
1114 * NULL call.
1115 */
Al Viro7111c662006-10-19 23:28:45 -07001116static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
1118{
1119 return nfs_ok;
1120}
1121
Shankar Anande2b20952006-07-10 04:45:44 -07001122static inline void nfsd4_increment_op_stats(u32 opnum)
1123{
1124 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
1125 nfsdstats.nfs4_opcount[opnum]++;
1126}
1127
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001128typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *,
1129 void *);
Mi Jinlong58e7b332011-08-28 18:18:56 +08001130typedef u32(*nfsd4op_rsize)(struct svc_rqst *, struct nfsd4_op *op);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01001131typedef void(*stateid_setter)(struct nfsd4_compound_state *, void *);
1132typedef void(*stateid_getter)(struct nfsd4_compound_state *, void *);
Mi Jinlong58e7b332011-08-28 18:18:56 +08001133
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001134enum nfsd4_op_flags {
1135 ALLOWED_WITHOUT_FH = 1 << 0, /* No current filehandle required */
Mi Jinlong5ece3ca2011-02-18 09:08:31 +08001136 ALLOWED_ON_ABSENT_FS = 1 << 1, /* ops processed on absent fs */
1137 ALLOWED_AS_FIRST_OP = 1 << 2, /* ops reqired first in compound */
J. Bruce Fields68d93182011-04-08 17:00:50 -04001138 /* For rfc 5661 section 2.6.3.1.1: */
1139 OP_HANDLES_WRONGSEC = 1 << 3,
1140 OP_IS_PUTFH_LIKE = 1 << 4,
J. Bruce Fields10910062011-01-24 12:11:02 -05001141 /*
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001142 * These are the ops whose result size we estimate before
1143 * encoding, to avoid performing an op then not being able to
1144 * respond or cache a response. This includes writes and setattrs
1145 * as well as the operations usually called "nonidempotent":
1146 */
1147 OP_MODIFIES_SOMETHING = 1 << 5,
1148 /*
1149 * Cache compounds containing these ops in the xid-based drc:
J. Bruce Fields10910062011-01-24 12:11:02 -05001150 * We use the DRC for compounds containing non-idempotent
1151 * operations, *except* those that are 4.1-specific (since
1152 * sessions provide their own EOS), and except for stateful
1153 * operations other than setclientid and setclientid_confirm
1154 * (since sequence numbers provide EOS for open, lock, etc in
1155 * the v4.0 case).
1156 */
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001157 OP_CACHEME = 1 << 6,
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01001158 /*
1159 * These are ops which clear current state id.
1160 */
1161 OP_CLEAR_STATEID = 1 << 7,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001162};
1163
1164struct nfsd4_operation {
1165 nfsd4op_func op_func;
1166 u32 op_flags;
1167 char *op_name;
Mi Jinlong58e7b332011-08-28 18:18:56 +08001168 /* Try to get response size before operation */
1169 nfsd4op_rsize op_rsize_bop;
Bryan Schumaker24ff99c2012-08-14 15:55:08 -04001170 stateid_getter op_get_currentstateid;
1171 stateid_setter op_set_currentstateid;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001172};
1173
1174static struct nfsd4_operation nfsd4_ops[];
1175
Trond Myklebust8f199b82012-03-20 15:11:17 -04001176#ifdef NFSD_DEBUG
Adrian Bunkf1c7f792008-08-08 19:26:42 +03001177static const char *nfsd4_op_name(unsigned opnum);
Trond Myklebust8f199b82012-03-20 15:11:17 -04001178#endif
Benny Halevyb001a1b2008-07-02 11:15:03 +03001179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180/*
J. Bruce Fields57716352010-04-21 12:27:19 -04001181 * Enforce NFSv4.1 COMPOUND ordering rules:
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001182 *
J. Bruce Fields57716352010-04-21 12:27:19 -04001183 * Also note, enforced elsewhere:
1184 * - SEQUENCE other than as first op results in
1185 * NFS4ERR_SEQUENCE_POS. (Enforced in nfsd4_sequence().)
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001186 * - BIND_CONN_TO_SESSION must be the only op in its compound.
1187 * (Enforced in nfsd4_bind_conn_to_session().)
J. Bruce Fields57716352010-04-21 12:27:19 -04001188 * - DESTROY_SESSION must be the final operation in a compound, if
1189 * sessionid's in SEQUENCE and DESTROY_SESSION are the same.
1190 * (Enforced in nfsd4_destroy_session().)
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001191 */
J. Bruce Fields57716352010-04-21 12:27:19 -04001192static __be32 nfs41_check_op_ordering(struct nfsd4_compoundargs *args)
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001193{
J. Bruce Fields57716352010-04-21 12:27:19 -04001194 struct nfsd4_op *op = &args->ops[0];
1195
1196 /* These ordering requirements don't apply to NFSv4.0: */
1197 if (args->minorversion == 0)
1198 return nfs_ok;
1199 /* This is weird, but OK, not our problem: */
1200 if (args->opcnt == 0)
1201 return nfs_ok;
1202 if (op->status == nfserr_op_illegal)
1203 return nfs_ok;
1204 if (!(nfsd4_ops[op->opnum].op_flags & ALLOWED_AS_FIRST_OP))
1205 return nfserr_op_not_in_session;
1206 if (op->opnum == OP_SEQUENCE)
1207 return nfs_ok;
1208 if (args->opcnt != 1)
1209 return nfserr_not_only_op;
1210 return nfs_ok;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001211}
1212
J. Bruce Fields22b03212011-04-09 11:23:24 -04001213static inline struct nfsd4_operation *OPDESC(struct nfsd4_op *op)
1214{
1215 return &nfsd4_ops[op->opnum];
1216}
1217
J. Bruce Fields10910062011-01-24 12:11:02 -05001218bool nfsd4_cache_this_op(struct nfsd4_op *op)
1219{
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001220 return OPDESC(op)->op_flags & OP_CACHEME;
J. Bruce Fields10910062011-01-24 12:11:02 -05001221}
1222
J. Bruce Fields68d93182011-04-08 17:00:50 -04001223static bool need_wrongsec_check(struct svc_rqst *rqstp)
1224{
1225 struct nfsd4_compoundres *resp = rqstp->rq_resp;
1226 struct nfsd4_compoundargs *argp = rqstp->rq_argp;
1227 struct nfsd4_op *this = &argp->ops[resp->opcnt - 1];
1228 struct nfsd4_op *next = &argp->ops[resp->opcnt];
1229 struct nfsd4_operation *thisd;
1230 struct nfsd4_operation *nextd;
1231
1232 thisd = OPDESC(this);
1233 /*
1234 * Most ops check wronsec on our own; only the putfh-like ops
1235 * have special rules.
1236 */
1237 if (!(thisd->op_flags & OP_IS_PUTFH_LIKE))
1238 return false;
1239 /*
1240 * rfc 5661 2.6.3.1.1.6: don't bother erroring out a
1241 * put-filehandle operation if we're not going to use the
1242 * result:
1243 */
1244 if (argp->opcnt == resp->opcnt)
1245 return false;
1246
1247 nextd = OPDESC(next);
1248 /*
1249 * Rest of 2.6.3.1.1: certain operations will return WRONGSEC
1250 * errors themselves as necessary; others should check for them
1251 * now:
1252 */
1253 return !(nextd->op_flags & OP_HANDLES_WRONGSEC);
1254}
1255
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001256/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 * COMPOUND call.
1258 */
Al Viro7111c662006-10-19 23:28:45 -07001259static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260nfsd4_proc_compound(struct svc_rqst *rqstp,
1261 struct nfsd4_compoundargs *args,
1262 struct nfsd4_compoundres *resp)
1263{
1264 struct nfsd4_op *op;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001265 struct nfsd4_operation *opdesc;
Andy Adamsone354d572009-03-28 11:30:52 +03001266 struct nfsd4_compound_state *cstate = &resp->cstate;
J.Bruce Fieldse5710192006-12-13 00:35:20 -08001267 int slack_bytes;
Mi Jinlong58e7b332011-08-28 18:18:56 +08001268 u32 plen = 0;
Al Virob37ad282006-10-19 23:28:59 -07001269 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 resp->xbuf = &rqstp->rq_res;
Andy Adamsone354d572009-03-28 11:30:52 +03001272 resp->p = rqstp->rq_res.head[0].iov_base +
1273 rqstp->rq_res.head[0].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 resp->tagp = resp->p;
1275 /* reserve space for: taglen, tag, and opcnt */
1276 resp->p += 2 + XDR_QUADLEN(args->taglen);
1277 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
1278 resp->taglen = args->taglen;
1279 resp->tag = args->tag;
1280 resp->opcnt = 0;
1281 resp->rqstp = rqstp;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001282 resp->cstate.minorversion = args->minorversion;
Andy Adamsone354d572009-03-28 11:30:52 +03001283 resp->cstate.replay_owner = NULL;
J. Bruce Fields26c0c752010-04-24 15:35:43 -04001284 resp->cstate.session = NULL;
Andy Adamsone354d572009-03-28 11:30:52 +03001285 fh_init(&resp->cstate.current_fh, NFS4_FHSIZE);
1286 fh_init(&resp->cstate.save_fh, NFS4_FHSIZE);
NeilBrown8ff30fa2010-08-12 17:04:07 +10001287 /*
1288 * Don't use the deferral mechanism for NFSv4; compounds make it
1289 * too hard to avoid non-idempotency problems.
1290 */
1291 rqstp->rq_usedeferral = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 /*
1294 * According to RFC3010, this takes precedence over all other errors.
1295 */
1296 status = nfserr_minor_vers_mismatch;
J. Bruce Fields35f7a142013-07-08 19:51:44 -04001297 if (nfsd_minorversion(args->minorversion, NFSD_TEST) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 goto out;
1299
J. Bruce Fields57716352010-04-21 12:27:19 -04001300 status = nfs41_check_op_ordering(args);
1301 if (status) {
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001302 op = &args->ops[0];
J. Bruce Fields57716352010-04-21 12:27:19 -04001303 op->status = status;
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001304 goto encode_op;
1305 }
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 while (!status && resp->opcnt < args->opcnt) {
1308 op = &args->ops[resp->opcnt++];
1309
Benny Halevyb001a1b2008-07-02 11:15:03 +03001310 dprintk("nfsv4 compound op #%d/%d: %d (%s)\n",
1311 resp->opcnt, args->opcnt, op->opnum,
1312 nfsd4_op_name(op->opnum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /*
1314 * The XDR decode routines may have pre-set op->status;
1315 * for example, if there is a miscellaneous XDR error
1316 * it will be set to nfserr_bad_xdr.
1317 */
J. Bruce Fields9d313b12013-02-28 12:51:49 -08001318 if (op->status) {
1319 if (op->opnum == OP_OPEN)
1320 op->status = nfsd4_open_omfg(rqstp, cstate, op);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 goto encode_op;
J. Bruce Fields9d313b12013-02-28 12:51:49 -08001322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 /* We must be able to encode a successful response to
1325 * this operation, with enough room left over to encode a
1326 * failed response to the next operation. If we don't
1327 * have enough room, fail with ERR_RESOURCE.
1328 */
J.Bruce Fieldse5710192006-12-13 00:35:20 -08001329 slack_bytes = (char *)resp->end - (char *)resp->p;
1330 if (slack_bytes < COMPOUND_SLACK_SPACE
1331 + COMPOUND_ERR_SLACK_SPACE) {
1332 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 op->status = nfserr_resource;
1334 goto encode_op;
1335 }
1336
J. Bruce Fields22b03212011-04-09 11:23:24 -04001337 opdesc = OPDESC(op);
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001338
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001339 if (!cstate->current_fh.fh_dentry) {
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001340 if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001341 op->status = nfserr_nofilehandle;
1342 goto encode_op;
1343 }
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001344 } else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
1345 !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001346 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 goto encode_op;
1348 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001349
Mi Jinlong58e7b332011-08-28 18:18:56 +08001350 /* If op is non-idempotent */
1351 if (opdesc->op_flags & OP_MODIFIES_SOMETHING) {
1352 plen = opdesc->op_rsize_bop(rqstp, op);
1353 op->status = nfsd4_check_resp_size(resp, plen);
1354 }
1355
1356 if (op->status)
1357 goto encode_op;
1358
J. Bruce Fieldsb600de72013-02-28 11:55:46 -08001359 if (opdesc->op_get_currentstateid)
1360 opdesc->op_get_currentstateid(cstate, &op->u);
1361 op->status = opdesc->op_func(rqstp, cstate, &op->u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01001363 if (!op->status) {
1364 if (opdesc->op_set_currentstateid)
1365 opdesc->op_set_currentstateid(cstate, &op->u);
1366
1367 if (opdesc->op_flags & OP_CLEAR_STATEID)
Tigran Mkrtchyan37c593c2012-02-13 22:55:32 +01001368 clear_current_stateid(cstate);
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01001369
1370 if (need_wrongsec_check(rqstp))
1371 op->status = check_nfsd_access(cstate->current_fh.fh_export, rqstp);
1372 }
J. Bruce Fields68d93182011-04-08 17:00:50 -04001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374encode_op:
Andy Adamson49557cc2009-07-23 19:02:16 -04001375 /* Only from SEQUENCE */
Andy Adamsonda3846a2009-04-03 08:28:22 +03001376 if (resp->cstate.status == nfserr_replay_cache) {
1377 dprintk("%s NFS4.1 replay from cache\n", __func__);
Andy Adamsonabfabf82009-07-23 19:02:18 -04001378 status = op->status;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001379 goto out;
1380 }
Al Viroa90b0612006-10-19 23:29:03 -07001381 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001382 op->replay = &cstate->replay_owner->so_replay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 nfsd4_encode_replay(resp, op);
1384 status = op->status = op->replay->rp_status;
1385 } else {
1386 nfsd4_encode_operation(resp, op);
1387 status = op->status;
1388 }
Benny Halevy04077172008-12-15 19:40:49 +02001389
1390 dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n",
1391 args->ops, args->opcnt, resp->opcnt, op->opnum,
1392 be32_to_cpu(status));
1393
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001394 if (cstate->replay_owner) {
J. Bruce Fields5ec094c2011-08-30 17:02:48 -04001395 nfs4_unlock_state();
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001396 cstate->replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
NeilBrown7e06b7f2005-06-23 22:03:13 -07001398 /* XXX Ugh, we need to get rid of this kind of special case: */
1399 if (op->opnum == OP_READ && op->u.read.rd_filp)
1400 fput(op->u.read.rd_filp);
Shankar Anande2b20952006-07-10 04:45:44 -07001401
1402 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
Andy Adamsonda3846a2009-04-03 08:28:22 +03001405 resp->cstate.status = status;
Andy Adamsone354d572009-03-28 11:30:52 +03001406 fh_put(&resp->cstate.current_fh);
1407 fh_put(&resp->cstate.save_fh);
1408 BUG_ON(resp->cstate.replay_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409out:
Andy Adamson2f425872009-04-03 08:27:32 +03001410 /* Reset deferral mechanism for RPC deferrals */
1411 rqstp->rq_usedeferral = 1;
J. Bruce Fields3b12cd92008-05-05 17:17:44 -04001412 dprintk("nfsv4 compound returned %d\n", ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return status;
1414}
1415
Mi Jinlong58e7b332011-08-28 18:18:56 +08001416#define op_encode_hdr_size (2)
1417#define op_encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE))
1418#define op_encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE))
1419#define op_encode_change_info_maxsz (5)
1420#define nfs4_fattr_bitmap_maxsz (4)
1421
1422#define op_encode_lockowner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
1423#define op_encode_lock_denied_maxsz (8 + op_encode_lockowner_maxsz)
1424
1425#define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ))
1426
1427#define op_encode_ace_maxsz (3 + nfs4_owner_maxsz)
1428#define op_encode_delegation_maxsz (1 + op_encode_stateid_maxsz + 1 + \
1429 op_encode_ace_maxsz)
1430
1431#define op_encode_channel_attrs_maxsz (6 + 1 + 1)
1432
1433static inline u32 nfsd4_only_status_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1434{
1435 return (op_encode_hdr_size) * sizeof(__be32);
1436}
1437
1438static inline u32 nfsd4_status_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1439{
1440 return (op_encode_hdr_size + op_encode_stateid_maxsz)* sizeof(__be32);
1441}
1442
1443static inline u32 nfsd4_commit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1444{
1445 return (op_encode_hdr_size + op_encode_verifier_maxsz) * sizeof(__be32);
1446}
1447
1448static inline u32 nfsd4_create_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1449{
1450 return (op_encode_hdr_size + op_encode_change_info_maxsz
1451 + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
1452}
1453
1454static inline u32 nfsd4_link_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1455{
1456 return (op_encode_hdr_size + op_encode_change_info_maxsz)
1457 * sizeof(__be32);
1458}
1459
1460static inline u32 nfsd4_lock_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1461{
1462 return (op_encode_hdr_size + op_encode_lock_denied_maxsz)
1463 * sizeof(__be32);
1464}
1465
1466static inline u32 nfsd4_open_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1467{
1468 return (op_encode_hdr_size + op_encode_stateid_maxsz
1469 + op_encode_change_info_maxsz + 1
1470 + nfs4_fattr_bitmap_maxsz
1471 + op_encode_delegation_maxsz) * sizeof(__be32);
1472}
1473
1474static inline u32 nfsd4_read_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1475{
1476 u32 maxcount = 0, rlen = 0;
1477
1478 maxcount = svc_max_payload(rqstp);
1479 rlen = op->u.read.rd_length;
1480
1481 if (rlen > maxcount)
1482 rlen = maxcount;
1483
1484 return (op_encode_hdr_size + 2) * sizeof(__be32) + rlen;
1485}
1486
1487static inline u32 nfsd4_readdir_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1488{
1489 u32 rlen = op->u.readdir.rd_maxcount;
1490
1491 if (rlen > PAGE_SIZE)
1492 rlen = PAGE_SIZE;
1493
1494 return (op_encode_hdr_size + op_encode_verifier_maxsz)
1495 * sizeof(__be32) + rlen;
1496}
1497
1498static inline u32 nfsd4_remove_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1499{
1500 return (op_encode_hdr_size + op_encode_change_info_maxsz)
1501 * sizeof(__be32);
1502}
1503
1504static inline u32 nfsd4_rename_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1505{
1506 return (op_encode_hdr_size + op_encode_change_info_maxsz
1507 + op_encode_change_info_maxsz) * sizeof(__be32);
1508}
1509
1510static inline u32 nfsd4_setattr_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1511{
1512 return (op_encode_hdr_size + nfs4_fattr_bitmap_maxsz) * sizeof(__be32);
1513}
1514
1515static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1516{
1517 return (op_encode_hdr_size + 2 + 1024) * sizeof(__be32);
1518}
1519
1520static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1521{
1522 return (op_encode_hdr_size + op_encode_verifier_maxsz) * sizeof(__be32);
1523}
1524
1525static inline u32 nfsd4_exchange_id_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1526{
1527 return (op_encode_hdr_size + 2 + 1 + /* eir_clientid, eir_sequenceid */\
Weston Andros Adamson58cd57b2013-08-05 15:47:07 -04001528 1 + 1 + 2 + /* eir_flags, spr_how, spo_must_enforce & _allow */\
Mi Jinlong58e7b332011-08-28 18:18:56 +08001529 2 + /*eir_server_owner.so_minor_id */\
1530 /* eir_server_owner.so_major_id<> */\
1531 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
1532 /* eir_server_scope<> */\
1533 XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\
1534 1 + /* eir_server_impl_id array length */\
1535 0 /* ignored eir_server_impl_id contents */) * sizeof(__be32);
1536}
1537
1538static inline u32 nfsd4_bind_conn_to_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1539{
1540 return (op_encode_hdr_size + \
1541 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* bctsr_sessid */\
1542 2 /* bctsr_dir, use_conn_in_rdma_mode */) * sizeof(__be32);
1543}
1544
1545static inline u32 nfsd4_create_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op)
1546{
1547 return (op_encode_hdr_size + \
1548 XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* sessionid */\
1549 2 + /* csr_sequence, csr_flags */\
1550 op_encode_channel_attrs_maxsz + \
1551 op_encode_channel_attrs_maxsz) * sizeof(__be32);
1552}
1553
Benny Halevy20766012009-03-28 11:32:05 +03001554static struct nfsd4_operation nfsd4_ops[] = {
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001555 [OP_ACCESS] = {
1556 .op_func = (nfsd4op_func)nfsd4_access,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001557 .op_name = "OP_ACCESS",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001558 },
1559 [OP_CLOSE] = {
1560 .op_func = (nfsd4op_func)nfsd4_close,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001561 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001562 .op_name = "OP_CLOSE",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001563 .op_rsize_bop = (nfsd4op_rsize)nfsd4_status_stateid_rsize,
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01001564 .op_get_currentstateid = (stateid_getter)nfsd4_get_closestateid,
1565 .op_set_currentstateid = (stateid_setter)nfsd4_set_closestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001566 },
1567 [OP_COMMIT] = {
1568 .op_func = (nfsd4op_func)nfsd4_commit,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001569 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001570 .op_name = "OP_COMMIT",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001571 .op_rsize_bop = (nfsd4op_rsize)nfsd4_commit_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001572 },
1573 [OP_CREATE] = {
1574 .op_func = (nfsd4op_func)nfsd4_create,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01001575 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001576 .op_name = "OP_CREATE",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001577 .op_rsize_bop = (nfsd4op_rsize)nfsd4_create_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001578 },
1579 [OP_DELEGRETURN] = {
1580 .op_func = (nfsd4op_func)nfsd4_delegreturn,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001581 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001582 .op_name = "OP_DELEGRETURN",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001583 .op_rsize_bop = nfsd4_only_status_rsize,
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01001584 .op_get_currentstateid = (stateid_getter)nfsd4_get_delegreturnstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001585 },
1586 [OP_GETATTR] = {
1587 .op_func = (nfsd4op_func)nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001588 .op_flags = ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001589 .op_name = "OP_GETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001590 },
1591 [OP_GETFH] = {
1592 .op_func = (nfsd4op_func)nfsd4_getfh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001593 .op_name = "OP_GETFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001594 },
1595 [OP_LINK] = {
1596 .op_func = (nfsd4op_func)nfsd4_link,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001597 .op_flags = ALLOWED_ON_ABSENT_FS | OP_MODIFIES_SOMETHING
1598 | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001599 .op_name = "OP_LINK",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001600 .op_rsize_bop = (nfsd4op_rsize)nfsd4_link_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001601 },
1602 [OP_LOCK] = {
1603 .op_func = (nfsd4op_func)nfsd4_lock,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001604 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001605 .op_name = "OP_LOCK",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001606 .op_rsize_bop = (nfsd4op_rsize)nfsd4_lock_rsize,
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01001607 .op_set_currentstateid = (stateid_setter)nfsd4_set_lockstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001608 },
1609 [OP_LOCKT] = {
1610 .op_func = (nfsd4op_func)nfsd4_lockt,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001611 .op_name = "OP_LOCKT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001612 },
1613 [OP_LOCKU] = {
1614 .op_func = (nfsd4op_func)nfsd4_locku,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001615 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001616 .op_name = "OP_LOCKU",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001617 .op_rsize_bop = (nfsd4op_rsize)nfsd4_status_stateid_rsize,
Tigran Mkrtchyan62cd4a52012-02-13 22:55:25 +01001618 .op_get_currentstateid = (stateid_getter)nfsd4_get_lockustateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001619 },
1620 [OP_LOOKUP] = {
1621 .op_func = (nfsd4op_func)nfsd4_lookup,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01001622 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001623 .op_name = "OP_LOOKUP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001624 },
1625 [OP_LOOKUPP] = {
1626 .op_func = (nfsd4op_func)nfsd4_lookupp,
Tigran Mkrtchyand1471052012-02-13 22:55:29 +01001627 .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001628 .op_name = "OP_LOOKUPP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001629 },
1630 [OP_NVERIFY] = {
1631 .op_func = (nfsd4op_func)nfsd4_nverify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001632 .op_name = "OP_NVERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001633 },
1634 [OP_OPEN] = {
1635 .op_func = (nfsd4op_func)nfsd4_open,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001636 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001637 .op_name = "OP_OPEN",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001638 .op_rsize_bop = (nfsd4op_rsize)nfsd4_open_rsize,
Tigran Mkrtchyan8b704842012-02-13 22:55:24 +01001639 .op_set_currentstateid = (stateid_setter)nfsd4_set_openstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001640 },
1641 [OP_OPEN_CONFIRM] = {
1642 .op_func = (nfsd4op_func)nfsd4_open_confirm,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001643 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001644 .op_name = "OP_OPEN_CONFIRM",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001645 .op_rsize_bop = (nfsd4op_rsize)nfsd4_status_stateid_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001646 },
1647 [OP_OPEN_DOWNGRADE] = {
1648 .op_func = (nfsd4op_func)nfsd4_open_downgrade,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001649 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001650 .op_name = "OP_OPEN_DOWNGRADE",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001651 .op_rsize_bop = (nfsd4op_rsize)nfsd4_status_stateid_rsize,
Tigran Mkrtchyan9428fe12012-02-13 22:55:31 +01001652 .op_get_currentstateid = (stateid_getter)nfsd4_get_opendowngradestateid,
1653 .op_set_currentstateid = (stateid_setter)nfsd4_set_opendowngradestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001654 },
1655 [OP_PUTFH] = {
1656 .op_func = (nfsd4op_func)nfsd4_putfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04001657 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
Tigran Mkrtchyan80e01cc2012-02-13 22:55:27 +01001658 | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING
1659 | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001660 .op_name = "OP_PUTFH",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001661 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001662 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001663 [OP_PUTPUBFH] = {
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001664 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04001665 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
Tigran Mkrtchyan80e01cc2012-02-13 22:55:27 +01001666 | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING
1667 | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001668 .op_name = "OP_PUTPUBFH",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001669 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001670 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001671 [OP_PUTROOTFH] = {
1672 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04001673 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
Tigran Mkrtchyan80e01cc2012-02-13 22:55:27 +01001674 | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING
1675 | OP_CLEAR_STATEID,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001676 .op_name = "OP_PUTROOTFH",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001677 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001678 },
1679 [OP_READ] = {
1680 .op_func = (nfsd4op_func)nfsd4_read,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001681 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001682 .op_name = "OP_READ",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001683 .op_rsize_bop = (nfsd4op_rsize)nfsd4_read_rsize,
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01001684 .op_get_currentstateid = (stateid_getter)nfsd4_get_readstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001685 },
1686 [OP_READDIR] = {
1687 .op_func = (nfsd4op_func)nfsd4_readdir,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001688 .op_flags = OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001689 .op_name = "OP_READDIR",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001690 .op_rsize_bop = (nfsd4op_rsize)nfsd4_readdir_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001691 },
1692 [OP_READLINK] = {
1693 .op_func = (nfsd4op_func)nfsd4_readlink,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001694 .op_name = "OP_READLINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001695 },
1696 [OP_REMOVE] = {
1697 .op_func = (nfsd4op_func)nfsd4_remove,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001698 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001699 .op_name = "OP_REMOVE",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001700 .op_rsize_bop = (nfsd4op_rsize)nfsd4_remove_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001701 },
1702 [OP_RENAME] = {
1703 .op_func = (nfsd4op_func)nfsd4_rename,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001704 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001705 .op_name = "OP_RENAME",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001706 .op_rsize_bop = (nfsd4op_rsize)nfsd4_rename_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001707 },
1708 [OP_RENEW] = {
1709 .op_func = (nfsd4op_func)nfsd4_renew,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001710 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
1711 | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001712 .op_name = "OP_RENEW",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001713 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
1714
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001715 },
1716 [OP_RESTOREFH] = {
1717 .op_func = (nfsd4op_func)nfsd4_restorefh,
J. Bruce Fields68d93182011-04-08 17:00:50 -04001718 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
Mi Jinlong58e7b332011-08-28 18:18:56 +08001719 | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001720 .op_name = "OP_RESTOREFH",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001721 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001722 },
1723 [OP_SAVEFH] = {
1724 .op_func = (nfsd4op_func)nfsd4_savefh,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001725 .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001726 .op_name = "OP_SAVEFH",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001727 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001728 },
Andy Adamsondcb488a32007-07-17 04:04:51 -07001729 [OP_SECINFO] = {
1730 .op_func = (nfsd4op_func)nfsd4_secinfo,
J. Bruce Fields68d93182011-04-08 17:00:50 -04001731 .op_flags = OP_HANDLES_WRONGSEC,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001732 .op_name = "OP_SECINFO",
Andy Adamsondcb488a32007-07-17 04:04:51 -07001733 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001734 [OP_SETATTR] = {
1735 .op_func = (nfsd4op_func)nfsd4_setattr,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001736 .op_name = "OP_SETATTR",
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001737 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001738 .op_rsize_bop = (nfsd4op_rsize)nfsd4_setattr_rsize,
Tigran Mkrtchyan1e97b512012-02-13 22:55:30 +01001739 .op_get_currentstateid = (stateid_getter)nfsd4_get_setattrstateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001740 },
1741 [OP_SETCLIENTID] = {
1742 .op_func = (nfsd4op_func)nfsd4_setclientid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001743 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001744 | OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001745 .op_name = "OP_SETCLIENTID",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001746 .op_rsize_bop = (nfsd4op_rsize)nfsd4_setclientid_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001747 },
1748 [OP_SETCLIENTID_CONFIRM] = {
1749 .op_func = (nfsd4op_func)nfsd4_setclientid_confirm,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001750 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001751 | OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001752 .op_name = "OP_SETCLIENTID_CONFIRM",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001753 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001754 },
1755 [OP_VERIFY] = {
1756 .op_func = (nfsd4op_func)nfsd4_verify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001757 .op_name = "OP_VERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001758 },
1759 [OP_WRITE] = {
1760 .op_func = (nfsd4op_func)nfsd4_write,
J. Bruce Fieldsc8566942011-09-20 08:49:51 -04001761 .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001762 .op_name = "OP_WRITE",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001763 .op_rsize_bop = (nfsd4op_rsize)nfsd4_write_rsize,
Tigran Mkrtchyan30813e22012-02-13 22:55:26 +01001764 .op_get_currentstateid = (stateid_getter)nfsd4_get_writestateid,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001765 },
1766 [OP_RELEASE_LOCKOWNER] = {
1767 .op_func = (nfsd4op_func)nfsd4_release_lockowner,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001768 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS
1769 | OP_MODIFIES_SOMETHING,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001770 .op_name = "OP_RELEASE_LOCKOWNER",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001771 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001772 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03001773
1774 /* NFSv4.1 operations */
1775 [OP_EXCHANGE_ID] = {
1776 .op_func = (nfsd4op_func)nfsd4_exchange_id,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001777 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1778 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001779 .op_name = "OP_EXCHANGE_ID",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001780 .op_rsize_bop = (nfsd4op_rsize)nfsd4_exchange_id_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001781 },
J. Bruce Fieldscb73a9f2012-11-01 18:09:48 -04001782 [OP_BACKCHANNEL_CTL] = {
1783 .op_func = (nfsd4op_func)nfsd4_backchannel_ctl,
1784 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
1785 .op_name = "OP_BACKCHANNEL_CTL",
1786 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
1787 },
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001788 [OP_BIND_CONN_TO_SESSION] = {
1789 .op_func = (nfsd4op_func)nfsd4_bind_conn_to_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001790 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1791 | OP_MODIFIES_SOMETHING,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001792 .op_name = "OP_BIND_CONN_TO_SESSION",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001793 .op_rsize_bop = (nfsd4op_rsize)nfsd4_bind_conn_to_session_rsize,
J. Bruce Fields1d1bc8f2010-10-04 23:12:59 -04001794 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03001795 [OP_CREATE_SESSION] = {
1796 .op_func = (nfsd4op_func)nfsd4_create_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001797 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1798 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001799 .op_name = "OP_CREATE_SESSION",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001800 .op_rsize_bop = (nfsd4op_rsize)nfsd4_create_session_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001801 },
1802 [OP_DESTROY_SESSION] = {
1803 .op_func = (nfsd4op_func)nfsd4_destroy_session,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001804 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1805 | OP_MODIFIES_SOMETHING,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001806 .op_name = "OP_DESTROY_SESSION",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001807 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001808 },
1809 [OP_SEQUENCE] = {
1810 .op_func = (nfsd4op_func)nfsd4_sequence,
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001811 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001812 .op_name = "OP_SEQUENCE",
1813 },
Benny Halevy094b5d72011-06-16 11:39:10 -04001814 [OP_DESTROY_CLIENTID] = {
Mi Jinlong345c2842011-10-20 17:51:39 +08001815 .op_func = (nfsd4op_func)nfsd4_destroy_clientid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001816 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP
1817 | OP_MODIFIES_SOMETHING,
Benny Halevy094b5d72011-06-16 11:39:10 -04001818 .op_name = "OP_DESTROY_CLIENTID",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001819 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
Benny Halevy094b5d72011-06-16 11:39:10 -04001820 },
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001821 [OP_RECLAIM_COMPLETE] = {
1822 .op_func = (nfsd4op_func)nfsd4_reclaim_complete,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001823 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001824 .op_name = "OP_RECLAIM_COMPLETE",
Mi Jinlong58e7b332011-08-28 18:18:56 +08001825 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
J. Bruce Fields4dc6ec02010-04-19 15:11:28 -04001826 },
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001827 [OP_SECINFO_NO_NAME] = {
1828 .op_func = (nfsd4op_func)nfsd4_secinfo_no_name,
J. Bruce Fields68d93182011-04-08 17:00:50 -04001829 .op_flags = OP_HANDLES_WRONGSEC,
J. Bruce Fields04f4ad12010-12-16 09:51:13 -05001830 .op_name = "OP_SECINFO_NO_NAME",
1831 },
Bryan Schumaker17456802011-07-13 10:50:48 -04001832 [OP_TEST_STATEID] = {
1833 .op_func = (nfsd4op_func)nfsd4_test_stateid,
1834 .op_flags = ALLOWED_WITHOUT_FH,
1835 .op_name = "OP_TEST_STATEID",
1836 },
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001837 [OP_FREE_STATEID] = {
1838 .op_func = (nfsd4op_func)nfsd4_free_stateid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001839 .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001840 .op_name = "OP_FREE_STATEID",
J. Bruce Fieldsa1dc6952012-12-17 18:17:13 -05001841 .op_get_currentstateid = (stateid_getter)nfsd4_get_freestateid,
Mi Jinlong58e7b332011-08-28 18:18:56 +08001842 .op_rsize_bop = (nfsd4op_rsize)nfsd4_only_status_rsize,
Bryan Schumakere1ca12d2011-07-13 11:04:21 -04001843 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001844};
1845
Trond Myklebust8f199b82012-03-20 15:11:17 -04001846#ifdef NFSD_DEBUG
Adrian Bunkf1c7f792008-08-08 19:26:42 +03001847static const char *nfsd4_op_name(unsigned opnum)
Benny Halevyb001a1b2008-07-02 11:15:03 +03001848{
1849 if (opnum < ARRAY_SIZE(nfsd4_ops))
1850 return nfsd4_ops[opnum].op_name;
1851 return "unknown_operation";
1852}
Trond Myklebust8f199b82012-03-20 15:11:17 -04001853#endif
Benny Halevyb001a1b2008-07-02 11:15:03 +03001854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855#define nfsd4_voidres nfsd4_voidargs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856struct nfsd4_voidargs { int dummy; };
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858static struct svc_procedure nfsd_procedures4[2] = {
Yu Zhiguo0a93a472009-05-19 14:09:54 +08001859 [NFSPROC4_NULL] = {
1860 .pc_func = (svc_procfunc) nfsd4_proc_null,
1861 .pc_encode = (kxdrproc_t) nfs4svc_encode_voidres,
1862 .pc_argsize = sizeof(struct nfsd4_voidargs),
1863 .pc_ressize = sizeof(struct nfsd4_voidres),
1864 .pc_cachetype = RC_NOCACHE,
1865 .pc_xdrressize = 1,
1866 },
1867 [NFSPROC4_COMPOUND] = {
1868 .pc_func = (svc_procfunc) nfsd4_proc_compound,
1869 .pc_decode = (kxdrproc_t) nfs4svc_decode_compoundargs,
1870 .pc_encode = (kxdrproc_t) nfs4svc_encode_compoundres,
1871 .pc_argsize = sizeof(struct nfsd4_compoundargs),
1872 .pc_ressize = sizeof(struct nfsd4_compoundres),
J. Bruce Fields3e98abf2011-07-16 17:15:10 -04001873 .pc_release = nfsd4_release_compoundargs,
Yu Zhiguo0a93a472009-05-19 14:09:54 +08001874 .pc_cachetype = RC_NOCACHE,
1875 .pc_xdrressize = NFSD_BUFSIZE/4,
1876 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877};
1878
1879struct svc_version nfsd_version4 = {
1880 .vs_vers = 4,
1881 .vs_nproc = 2,
1882 .vs_proc = nfsd_procedures4,
1883 .vs_dispatch = nfsd_dispatch,
1884 .vs_xdrsize = NFS4_SVC_XDRSIZE,
1885};
1886
1887/*
1888 * Local variables:
1889 * c-basic-offset: 8
1890 * End:
1891 */