blob: 7c8801769a3cf8279dc74b980775e1437f98ccd6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/nfsd/nfs4proc.c
3 *
4 * Server-side procedures for NFSv4.
5 *
6 * Copyright (c) 2002 The Regents of the University of Michigan.
7 * All rights reserved.
8 *
9 * Kendrick Smith <kmsmith@umich.edu>
10 * Andy Adamson <andros@umich.edu>
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 *
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its
22 * contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
26 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
27 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
32 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
38#include <linux/param.h>
39#include <linux/major.h>
40#include <linux/slab.h>
NeilBrown7e06b7f2005-06-23 22:03:13 -070041#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/sunrpc/svc.h>
44#include <linux/nfsd/nfsd.h>
45#include <linux/nfsd/cache.h>
46#include <linux/nfs4.h>
47#include <linux/nfsd/state.h>
48#include <linux/nfsd/xdr4.h>
49#include <linux/nfs4_acl.h>
Andy Adamsondcb488a32007-07-17 04:04:51 -070050#include <linux/sunrpc/gss_api.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#define NFSDDBG_FACILITY NFSDDBG_PROC
53
Yu Zhiguo3c8e0312009-05-16 16:22:31 +080054static u32 nfsd_attrmask[] = {
55 NFSD_WRITEABLE_ATTRS_WORD0,
56 NFSD_WRITEABLE_ATTRS_WORD1,
57 NFSD_WRITEABLE_ATTRS_WORD2
58};
59
60static u32 nfsd41_ex_attrmask[] = {
61 NFSD_SUPPATTR_EXCLCREAT_WORD0,
62 NFSD_SUPPATTR_EXCLCREAT_WORD1,
63 NFSD_SUPPATTR_EXCLCREAT_WORD2
64};
65
66static __be32
67check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
68 u32 *bmval, u32 *writable)
69{
70 struct dentry *dentry = cstate->current_fh.fh_dentry;
71 struct svc_export *exp = cstate->current_fh.fh_export;
72
73 /*
74 * Check about attributes are supported by the NFSv4 server or not.
75 * According to spec, unsupported attributes return ERR_ATTRNOTSUPP.
76 */
77 if ((bmval[0] & ~nfsd_suppattrs0(cstate->minorversion)) ||
78 (bmval[1] & ~nfsd_suppattrs1(cstate->minorversion)) ||
79 (bmval[2] & ~nfsd_suppattrs2(cstate->minorversion)))
80 return nfserr_attrnotsupp;
81
82 /*
83 * Check FATTR4_WORD0_ACL & FATTR4_WORD0_FS_LOCATIONS can be supported
84 * in current environment or not.
85 */
86 if (bmval[0] & FATTR4_WORD0_ACL) {
87 if (!IS_POSIXACL(dentry->d_inode))
88 return nfserr_attrnotsupp;
89 }
90 if (bmval[0] & FATTR4_WORD0_FS_LOCATIONS) {
91 if (exp->ex_fslocs.locations == NULL)
92 return nfserr_attrnotsupp;
93 }
94
95 /*
96 * According to spec, read-only attributes return ERR_INVAL.
97 */
98 if (writable) {
99 if ((bmval[0] & ~writable[0]) || (bmval[1] & ~writable[1]) ||
100 (bmval[2] & ~writable[2]))
101 return nfserr_inval;
102 }
103
104 return nfs_ok;
105}
106
107static __be32
108nfsd4_check_open_attributes(struct svc_rqst *rqstp,
109 struct nfsd4_compound_state *cstate, struct nfsd4_open *open)
110{
111 __be32 status = nfs_ok;
112
113 if (open->op_create == NFS4_OPEN_CREATE) {
114 if (open->op_createmode == NFS4_CREATE_UNCHECKED
115 || open->op_createmode == NFS4_CREATE_GUARDED)
116 status = check_attr_support(rqstp, cstate,
117 open->op_bmval, nfsd_attrmask);
118 else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1)
119 status = check_attr_support(rqstp, cstate,
120 open->op_bmval, nfsd41_ex_attrmask);
121 }
122
123 return status;
124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static inline void
127fh_dup2(struct svc_fh *dst, struct svc_fh *src)
128{
129 fh_put(dst);
130 dget(src->fh_dentry);
131 if (src->fh_export)
132 cache_get(&src->fh_export->h);
133 *dst = *src;
134}
135
Al Virob37ad282006-10-19 23:28:59 -0700136static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -0700137do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Al Virob37ad282006-10-19 23:28:59 -0700139 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 if (open->op_truncate &&
142 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
143 return nfserr_inval;
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200146 accmode |= NFSD_MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -0700147 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200148 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
J. Bruce Fields9801d8a2006-10-17 00:10:14 -0700149 if (open->op_share_deny & NFS4_SHARE_DENY_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200150 accmode |= NFSD_MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
153
154 return status;
155}
156
Al Virob37ad282006-10-19 23:28:59 -0700157static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158do_open_lookup(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
159{
160 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700161 __be32 status;
J. Bruce Fields81ac95c2006-11-08 17:44:40 -0800162 int created = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 fh_init(&resfh, NFS4_FHSIZE);
165 open->op_truncate = 0;
166
167 if (open->op_create) {
Benny Halevy79fb54a2009-04-03 08:29:17 +0300168 /* FIXME: check session persistence and pnfs flags.
169 * The nfsv4.1 spec requires the following semantics:
170 *
171 * Persistent | pNFS | Server REQUIRED | Client Allowed
172 * Reply Cache | server | |
173 * -------------+--------+-----------------+--------------------
174 * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1
175 * | | | (SHOULD)
176 * | | and EXCLUSIVE4 | or EXCLUSIVE4
177 * | | | (SHOULD NOT)
178 * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1
179 * yes | no | GUARDED4 | GUARDED4
180 * yes | yes | GUARDED4 | GUARDED4
181 */
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 /*
184 * Note: create modes (UNCHECKED,GUARDED...) are the same
185 * in NFSv4 as in v3.
186 */
187 status = nfsd_create_v3(rqstp, current_fh, open->op_fname.data,
188 open->op_fname.len, &open->op_iattr,
189 &resfh, open->op_createmode,
Jeff Layton749997e2007-07-31 00:37:51 -0700190 (u32 *)open->op_verf.data,
191 &open->op_truncate, &created);
192
J. Bruce Fields99f88722009-02-02 15:12:27 -0500193 /*
194 * Following rfc 3530 14.2.16, use the returned bitmask
195 * to indicate which attributes we used to store the
196 * verifier:
Jeff Layton749997e2007-07-31 00:37:51 -0700197 */
198 if (open->op_createmode == NFS4_CREATE_EXCLUSIVE && status == 0)
J. Bruce Fields99f88722009-02-02 15:12:27 -0500199 open->op_bmval[1] = (FATTR4_WORD1_TIME_ACCESS |
Jeff Layton749997e2007-07-31 00:37:51 -0700200 FATTR4_WORD1_TIME_MODIFY);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800201 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 status = nfsd_lookup(rqstp, current_fh,
203 open->op_fname.data, open->op_fname.len, &resfh);
204 fh_unlock(current_fh);
205 }
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800206 if (status)
207 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800209 set_change_info(&open->op_cinfo, current_fh);
J. Bruce Fields13024b72009-02-02 17:04:03 -0500210 fh_dup2(current_fh, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800212 /* set reply cache */
J. Bruce Fieldsa4773c082009-02-02 17:23:10 -0500213 fh_copy_shallow(&open->op_stateowner->so_replay.rp_openfh,
214 &resfh.fh_handle);
J. Bruce Fields81ac95c2006-11-08 17:44:40 -0800215 if (!created)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200216 status = do_open_permission(rqstp, current_fh, open,
217 NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800219out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 fh_put(&resfh);
221 return status;
222}
223
Al Virob37ad282006-10-19 23:28:59 -0700224static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225do_open_fhandle(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
226{
Al Virob37ad282006-10-19 23:28:59 -0700227 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* Only reclaims from previously confirmed clients are valid */
230 if ((status = nfs4_check_open_reclaim(&open->op_clientid)))
231 return status;
232
233 /* We don't know the target directory, and therefore can not
234 * set the change info
235 */
236
237 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
238
239 /* set replay cache */
J. Bruce Fieldsa4773c082009-02-02 17:23:10 -0500240 fh_copy_shallow(&open->op_stateowner->so_replay.rp_openfh,
241 &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
244 (open->op_iattr.ia_size == 0);
245
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200246 status = do_open_permission(rqstp, current_fh, open,
247 NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 return status;
250}
251
Andy Adamson60adfc52009-04-03 08:28:50 +0300252static void
253copy_clientid(clientid_t *clid, struct nfsd4_session *session)
254{
255 struct nfsd4_sessionid *sid =
256 (struct nfsd4_sessionid *)session->se_sessionid.data;
257
258 clid->cl_boot = sid->clientid.cl_boot;
259 clid->cl_id = sid->clientid.cl_id;
260}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
J.Bruce Fields71911552006-12-13 00:35:29 -0800262static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800263nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800264 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Al Virob37ad282006-10-19 23:28:59 -0700266 __be32 status;
Andy Adamson66689582009-04-03 08:28:45 +0300267 struct nfsd4_compoundres *resp;
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 dprintk("NFSD: nfsd4_open filename %.*s op_stateowner %p\n",
270 (int)open->op_fname.len, open->op_fname.data,
271 open->op_stateowner);
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* This check required by spec. */
274 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
275 return nfserr_inval;
276
Andy Adamson60adfc52009-04-03 08:28:50 +0300277 if (nfsd4_has_session(cstate))
278 copy_clientid(&open->op_clientid, cstate->session);
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 nfs4_lock_state();
281
282 /* check seqid for replay. set nfs4_owner */
Andy Adamson66689582009-04-03 08:28:45 +0300283 resp = rqstp->rq_resp;
284 status = nfsd4_process_open1(&resp->cstate, open);
Al Viroa90b0612006-10-19 23:29:03 -0700285 if (status == nfserr_replay_me) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 struct nfs4_replay *rp = &open->op_stateowner->so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800287 fh_put(&cstate->current_fh);
J. Bruce Fieldsa4773c082009-02-02 17:23:10 -0500288 fh_copy_shallow(&cstate->current_fh.fh_handle,
289 &rp->rp_openfh);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200290 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (status)
292 dprintk("nfsd4_open: replay failed"
293 " restoring previous filehandle\n");
294 else
Al Viroa90b0612006-10-19 23:29:03 -0700295 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297 if (status)
298 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800299
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800300 status = nfsd4_check_open_attributes(rqstp, cstate, open);
301 if (status)
302 goto out;
303
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800304 /* Openowner is now set, so sequence id will get bumped. Now we need
305 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800306 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400307 if (locks_in_grace() && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800308 goto out;
309 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400310 if (!locks_in_grace() && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800311 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700314 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 case NFS4_OPEN_CLAIM_NULL:
316 /*
317 * (1) set CURRENT_FH to the file being opened,
318 * creating it if necessary, (2) set open->op_cinfo,
319 * (3) set open->op_truncate if the file is to be
320 * truncated after opening, (4) do permission checking.
321 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800322 status = do_open_lookup(rqstp, &cstate->current_fh,
323 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (status)
325 goto out;
326 break;
327 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800328 open->op_stateowner->so_confirmed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /*
330 * The CURRENT_FH is already set to the file being
331 * opened. (1) set open->op_cinfo, (2) set
332 * open->op_truncate if the file is to be truncated
333 * after opening, (3) do permission checking.
334 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800335 status = do_open_fhandle(rqstp, &cstate->current_fh,
336 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (status)
338 goto out;
339 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800341 open->op_stateowner->so_confirmed = 1;
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400342 dprintk("NFSD: unsupported OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 open->op_claim_type);
344 status = nfserr_notsupp;
345 goto out;
346 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400347 dprintk("NFSD: Invalid OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 open->op_claim_type);
349 status = nfserr_inval;
350 goto out;
351 }
352 /*
353 * nfsd4_process_open2() does the actual opening of the file. If
354 * successful, it (1) truncates the file if open->op_truncate was
355 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
356 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800357 status = nfsd4_process_open2(rqstp, &cstate->current_fh, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358out:
Neil Brownf2327d92005-09-13 01:25:37 -0700359 if (open->op_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 nfs4_get_stateowner(open->op_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800361 cstate->replay_owner = open->op_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -0700362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 nfs4_unlock_state();
364 return status;
365}
366
367/*
368 * filehandle-manipulating ops.
369 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800370static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800371nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
372 struct svc_fh **getfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800374 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return nfserr_nofilehandle;
376
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800377 *getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return nfs_ok;
379}
380
J.Bruce Fields71911552006-12-13 00:35:29 -0800381static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800382nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
383 struct nfsd4_putfh *putfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800385 fh_put(&cstate->current_fh);
386 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
387 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
388 putfh->pf_fhlen);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200389 return fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
J.Bruce Fields71911552006-12-13 00:35:29 -0800392static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800393nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
394 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Al Virob37ad282006-10-19 23:28:59 -0700396 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800398 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700399 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return status;
401}
402
J.Bruce Fields71911552006-12-13 00:35:29 -0800403static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800404nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
405 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800407 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return nfserr_restorefh;
409
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800410 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return nfs_ok;
412}
413
J.Bruce Fields71911552006-12-13 00:35:29 -0800414static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800415nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
416 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800418 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return nfserr_nofilehandle;
420
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800421 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return nfs_ok;
423}
424
425/*
426 * misc nfsv4 ops
427 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800428static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800429nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
430 struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
432 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
433 return nfserr_inval;
434
435 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800436 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
437 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
J.Bruce Fields71911552006-12-13 00:35:29 -0800440static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800441nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
442 struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Al Virob37ad282006-10-19 23:28:59 -0700444 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 u32 *p = (u32 *)commit->co_verf.data;
447 *p++ = nfssvc_boot.tv_sec;
448 *p++ = nfssvc_boot.tv_usec;
449
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800450 status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
451 commit->co_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (status == nfserr_symlink)
453 status = nfserr_inval;
454 return status;
455}
456
Al Virob37ad282006-10-19 23:28:59 -0700457static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800458nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
459 struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700462 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 dev_t rdev;
464
465 fh_init(&resfh, NFS4_FHSIZE);
466
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200467 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR,
468 NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (status == nfserr_symlink)
470 status = nfserr_notdir;
471 if (status)
472 return status;
473
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800474 status = check_attr_support(rqstp, cstate, create->cr_bmval,
475 nfsd_attrmask);
476 if (status)
477 return status;
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 switch (create->cr_type) {
480 case NF4LNK:
481 /* ugh! we have to null-terminate the linktext, or
482 * vfs_symlink() will choke. it is always safe to
483 * null-terminate by brute force, since at worst we
484 * will overwrite the first byte of the create namelen
485 * in the XDR buffer, which has already been extracted
486 * during XDR decode.
487 */
488 create->cr_linkname[create->cr_linklen] = 0;
489
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800490 status = nfsd_symlink(rqstp, &cstate->current_fh,
491 create->cr_name, create->cr_namelen,
492 create->cr_linkname, create->cr_linklen,
493 &resfh, &create->cr_iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 break;
495
496 case NF4BLK:
497 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
498 if (MAJOR(rdev) != create->cr_specdata1 ||
499 MINOR(rdev) != create->cr_specdata2)
500 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800501 status = nfsd_create(rqstp, &cstate->current_fh,
502 create->cr_name, create->cr_namelen,
503 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505
506 case NF4CHR:
507 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
508 if (MAJOR(rdev) != create->cr_specdata1 ||
509 MINOR(rdev) != create->cr_specdata2)
510 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800511 status = nfsd_create(rqstp, &cstate->current_fh,
512 create->cr_name, create->cr_namelen,
513 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515
516 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800517 status = nfsd_create(rqstp, &cstate->current_fh,
518 create->cr_name, create->cr_namelen,
519 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 break;
521
522 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800523 status = nfsd_create(rqstp, &cstate->current_fh,
524 create->cr_name, create->cr_namelen,
525 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 break;
527
528 case NF4DIR:
529 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800530 status = nfsd_create(rqstp, &cstate->current_fh,
531 create->cr_name, create->cr_namelen,
532 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 break;
534
535 default:
536 status = nfserr_badtype;
537 }
538
539 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800540 fh_unlock(&cstate->current_fh);
541 set_change_info(&create->cr_cinfo, &cstate->current_fh);
542 fh_dup2(&cstate->current_fh, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544
545 fh_put(&resfh);
546 return status;
547}
548
J.Bruce Fields71911552006-12-13 00:35:29 -0800549static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800550nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
551 struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Al Virob37ad282006-10-19 23:28:59 -0700553 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200555 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (status)
557 return status;
558
559 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
560 return nfserr_inval;
561
Andy Adamson7e705702009-04-03 08:29:11 +0300562 getattr->ga_bmval[0] &= nfsd_suppattrs0(cstate->minorversion);
563 getattr->ga_bmval[1] &= nfsd_suppattrs1(cstate->minorversion);
564 getattr->ga_bmval[2] &= nfsd_suppattrs2(cstate->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800566 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return nfs_ok;
568}
569
J.Bruce Fields71911552006-12-13 00:35:29 -0800570static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800571nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
572 struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Al Virob37ad282006-10-19 23:28:59 -0700574 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800576 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800578 status = nfsd_link(rqstp, &cstate->current_fh,
579 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800581 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return status;
583}
584
Al Virob37ad282006-10-19 23:28:59 -0700585static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800586nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
587 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700590 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700593 ret = exp_pseudoroot(rqstp, &tmp_fh);
594 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 return ret;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800596 if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 fh_put(&tmp_fh);
598 return nfserr_noent;
599 }
600 fh_put(&tmp_fh);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800601 return nfsd_lookup(rqstp, &cstate->current_fh,
602 "..", 2, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
J.Bruce Fields71911552006-12-13 00:35:29 -0800605static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800606nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
607 struct nfsd4_lookup *lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800609 return nfsd_lookup(rqstp, &cstate->current_fh,
610 lookup->lo_name, lookup->lo_len,
611 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
J.Bruce Fields71911552006-12-13 00:35:29 -0800614static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800615nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
616 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Al Virob37ad282006-10-19 23:28:59 -0700618 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 /* no need to check permission - this will be done in nfsd_read() */
621
NeilBrown7e06b7f2005-06-23 22:03:13 -0700622 read->rd_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (read->rd_offset >= OFFSET_MAX)
624 return nfserr_inval;
625
626 nfs4_lock_state();
627 /* check stateid */
Benny Halevydd453df2009-04-03 08:28:41 +0300628 if ((status = nfs4_preprocess_stateid_op(cstate, &read->rd_stateid,
629 RD_STATE, &read->rd_filp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
631 goto out;
632 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700633 if (read->rd_filp)
634 get_file(read->rd_filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 status = nfs_ok;
636out:
637 nfs4_unlock_state();
638 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800639 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return status;
641}
642
J.Bruce Fields71911552006-12-13 00:35:29 -0800643static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800644nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
645 struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 u64 cookie = readdir->rd_cookie;
648 static const nfs4_verifier zeroverf;
649
650 /* no need to check permission - this will be done in nfsd_readdir() */
651
652 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
653 return nfserr_inval;
654
Andy Adamson7e705702009-04-03 08:29:11 +0300655 readdir->rd_bmval[0] &= nfsd_suppattrs0(cstate->minorversion);
656 readdir->rd_bmval[1] &= nfsd_suppattrs1(cstate->minorversion);
657 readdir->rd_bmval[2] &= nfsd_suppattrs2(cstate->minorversion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) ||
660 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
661 return nfserr_bad_cookie;
662
663 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800664 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return nfs_ok;
666}
667
J.Bruce Fields71911552006-12-13 00:35:29 -0800668static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800669nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
670 struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
672 readlink->rl_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800673 readlink->rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return nfs_ok;
675}
676
J.Bruce Fields71911552006-12-13 00:35:29 -0800677static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800678nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
679 struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Al Virob37ad282006-10-19 23:28:59 -0700681 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400683 if (locks_in_grace())
NeilBrownc815afc2005-06-23 22:03:00 -0700684 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800685 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
686 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (status == nfserr_symlink)
688 return nfserr_notdir;
689 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800690 fh_unlock(&cstate->current_fh);
691 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693 return status;
694}
695
J.Bruce Fields71911552006-12-13 00:35:29 -0800696static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800697nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
698 struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Al Virob37ad282006-10-19 23:28:59 -0700700 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800702 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return status;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400704 if (locks_in_grace() && !(cstate->save_fh.fh_export->ex_flags
NeilBrownc815afc2005-06-23 22:03:00 -0700705 & NFSEXP_NOSUBTREECHECK))
706 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800707 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
708 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 rename->rn_tname, rename->rn_tnamelen);
710
711 /* the underlying filesystem returns different error's than required
712 * by NFSv4. both save_fh and current_fh have been verified.. */
713 if (status == nfserr_isdir)
714 status = nfserr_exist;
715 else if ((status == nfserr_notdir) &&
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800716 (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) &&
717 S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 status = nfserr_exist;
719 else if (status == nfserr_symlink)
720 status = nfserr_notdir;
721
722 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800723 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
724 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726 return status;
727}
728
J.Bruce Fields71911552006-12-13 00:35:29 -0800729static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700730nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
731 struct nfsd4_secinfo *secinfo)
732{
733 struct svc_fh resfh;
734 struct svc_export *exp;
735 struct dentry *dentry;
736 __be32 err;
737
738 fh_init(&resfh, NFS4_FHSIZE);
739 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
740 secinfo->si_name, secinfo->si_namelen,
741 &exp, &dentry);
742 if (err)
743 return err;
744 if (dentry->d_inode == NULL) {
745 exp_put(exp);
746 err = nfserr_noent;
747 } else
748 secinfo->si_exp = exp;
749 dput(dentry);
750 return err;
751}
752
753static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800754nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
755 struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Al Virob37ad282006-10-19 23:28:59 -0700757 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
760 nfs4_lock_state();
Benny Halevydd453df2009-04-03 08:28:41 +0300761 status = nfs4_preprocess_stateid_op(cstate,
J. Bruce Fields6150ef02009-02-21 13:36:16 -0800762 &setattr->sa_stateid, WR_STATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -0800764 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700765 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800766 return status;
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
Dave Hansen18f335a2008-02-15 14:37:38 -0800769 status = mnt_want_write(cstate->current_fh.fh_export->ex_path.mnt);
770 if (status)
771 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 status = nfs_ok;
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800773
774 status = check_attr_support(rqstp, cstate, setattr->sa_bmval,
775 nfsd_attrmask);
776 if (status)
777 goto out;
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800780 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
781 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (status)
Dave Hansen18f335a2008-02-15 14:37:38 -0800783 goto out;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800784 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 0, (time_t)0);
Dave Hansen18f335a2008-02-15 14:37:38 -0800786out:
787 mnt_drop_write(cstate->current_fh.fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return status;
789}
790
J.Bruce Fields71911552006-12-13 00:35:29 -0800791static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800792nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
793 struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 stateid_t *stateid = &write->wr_stateid;
796 struct file *filp = NULL;
797 u32 *p;
Al Virob37ad282006-10-19 23:28:59 -0700798 __be32 status = nfs_ok;
David Shaw31dec252009-03-05 20:16:14 -0500799 unsigned long cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /* no need to check permission - this will be done in nfsd_write() */
802
803 if (write->wr_offset >= OFFSET_MAX)
804 return nfserr_inval;
805
806 nfs4_lock_state();
Benny Halevydd453df2009-04-03 08:28:41 +0300807 status = nfs4_preprocess_stateid_op(cstate, stateid, WR_STATE, &filp);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700808 if (filp)
809 get_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 nfs4_unlock_state();
811
J. Bruce Fields375c5542006-01-18 17:43:33 -0800812 if (status) {
813 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
814 return status;
815 }
816
David Shaw31dec252009-03-05 20:16:14 -0500817 cnt = write->wr_buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 write->wr_how_written = write->wr_stable_how;
819 p = (u32 *)write->wr_verifier.data;
820 *p++ = nfssvc_boot.tv_sec;
821 *p++ = nfssvc_boot.tv_usec;
822
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800823 status = nfsd_write(rqstp, &cstate->current_fh, filp,
824 write->wr_offset, rqstp->rq_vec, write->wr_vlen,
David Shaw31dec252009-03-05 20:16:14 -0500825 &cnt, &write->wr_how_written);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700826 if (filp)
827 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
David Shaw31dec252009-03-05 20:16:14 -0500829 write->wr_bytes_written = cnt;
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (status == nfserr_symlink)
832 status = nfserr_inval;
833 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
836/* This routine never returns NFS_OK! If there are no other errors, it
837 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
838 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
839 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
840 */
Al Virob37ad282006-10-19 23:28:59 -0700841static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800842_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800843 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Al Viro2ebbc012006-10-19 23:28:58 -0700845 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 int count;
Al Virob37ad282006-10-19 23:28:59 -0700847 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200849 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (status)
851 return status;
852
Yu Zhiguo3c8e0312009-05-16 16:22:31 +0800853 status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL);
854 if (status)
855 return status;
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
858 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
859 return nfserr_inval;
860 if (verify->ve_attrlen & 3)
861 return nfserr_inval;
862
863 /* count in words:
864 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
865 */
866 count = 4 + (verify->ve_attrlen >> 2);
867 buf = kmalloc(count << 2, GFP_KERNEL);
868 if (!buf)
869 return nfserr_resource;
870
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800871 status = nfsd4_encode_fattr(&cstate->current_fh,
872 cstate->current_fh.fh_export,
873 cstate->current_fh.fh_dentry, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 &count, verify->ve_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -0800875 rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 /* this means that nfsd4_encode_fattr() ran out of space */
878 if (status == nfserr_resource && count == 0)
879 status = nfserr_not_same;
880 if (status)
881 goto out_kfree;
882
Benny Halevy95ec28c2009-04-03 08:29:08 +0300883 /* skip bitmap */
884 p = buf + 1 + ntohl(buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 status = nfserr_not_same;
886 if (ntohl(*p++) != verify->ve_attrlen)
887 goto out_kfree;
888 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
889 status = nfserr_same;
890
891out_kfree:
892 kfree(buf);
893 return status;
894}
895
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800896static __be32
897nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
898 struct nfsd4_verify *verify)
899{
900 __be32 status;
901
902 status = _nfsd4_verify(rqstp, cstate, verify);
903 return status == nfserr_not_same ? nfs_ok : status;
904}
905
906static __be32
907nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
908 struct nfsd4_verify *verify)
909{
910 __be32 status;
911
912 status = _nfsd4_verify(rqstp, cstate, verify);
913 return status == nfserr_same ? nfs_ok : status;
914}
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916/*
917 * NULL call.
918 */
Al Viro7111c662006-10-19 23:28:45 -0700919static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
921{
922 return nfs_ok;
923}
924
Shankar Anande2b20952006-07-10 04:45:44 -0700925static inline void nfsd4_increment_op_stats(u32 opnum)
926{
927 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
928 nfsdstats.nfs4_opcount[opnum]++;
929}
930
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800931typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *,
932 void *);
Andy Adamsonf9bb94c2009-04-03 08:28:12 +0300933enum nfsd4_op_flags {
934 ALLOWED_WITHOUT_FH = 1 << 0, /* No current filehandle required */
935 ALLOWED_ON_ABSENT_FS = 2 << 0, /* ops processed on absent fs */
936 ALLOWED_AS_FIRST_OP = 3 << 0, /* ops reqired first in compound */
937};
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800938
939struct nfsd4_operation {
940 nfsd4op_func op_func;
941 u32 op_flags;
Benny Halevyb001a1b2008-07-02 11:15:03 +0300942 char *op_name;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800943};
944
945static struct nfsd4_operation nfsd4_ops[];
946
Adrian Bunkf1c7f792008-08-08 19:26:42 +0300947static const char *nfsd4_op_name(unsigned opnum);
Benny Halevyb001a1b2008-07-02 11:15:03 +0300948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/*
Andy Adamsonbf864a32009-04-03 08:28:35 +0300950 * This is a replay of a compound for which no cache entry pages
951 * were used. Encode the sequence operation, and if cachethis is FALSE
952 * encode the uncache rep error on the next operation.
953 */
954static __be32
955nfsd4_enc_uncached_replay(struct nfsd4_compoundargs *args,
956 struct nfsd4_compoundres *resp)
957{
958 struct nfsd4_op *op;
959
960 dprintk("--> %s resp->opcnt %d ce_cachethis %u \n", __func__,
961 resp->opcnt, resp->cstate.slot->sl_cache_entry.ce_cachethis);
962
963 /* Encode the replayed sequence operation */
964 BUG_ON(resp->opcnt != 1);
965 op = &args->ops[resp->opcnt - 1];
966 nfsd4_encode_operation(resp, op);
967
968 /*return nfserr_retry_uncached_rep in next operation. */
969 if (resp->cstate.slot->sl_cache_entry.ce_cachethis == 0) {
970 op = &args->ops[resp->opcnt++];
971 op->status = nfserr_retry_uncached_rep;
972 nfsd4_encode_operation(resp, op);
973 }
974 return op->status;
975}
976
977/*
Andy Adamsonf9bb94c2009-04-03 08:28:12 +0300978 * Enforce NFSv4.1 COMPOUND ordering rules.
979 *
980 * TODO:
981 * - enforce NFS4ERR_NOT_ONLY_OP,
982 * - DESTROY_SESSION MUST be the final operation in the COMPOUND request.
983 */
984static bool nfs41_op_ordering_ok(struct nfsd4_compoundargs *args)
985{
986 if (args->minorversion && args->opcnt > 0) {
987 struct nfsd4_op *op = &args->ops[0];
988 return (op->status == nfserr_op_illegal) ||
989 (nfsd4_ops[op->opnum].op_flags & ALLOWED_AS_FIRST_OP);
990 }
991 return true;
992}
993
994/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 * COMPOUND call.
996 */
Al Viro7111c662006-10-19 23:28:45 -0700997static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998nfsd4_proc_compound(struct svc_rqst *rqstp,
999 struct nfsd4_compoundargs *args,
1000 struct nfsd4_compoundres *resp)
1001{
1002 struct nfsd4_op *op;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001003 struct nfsd4_operation *opdesc;
Andy Adamsone354d572009-03-28 11:30:52 +03001004 struct nfsd4_compound_state *cstate = &resp->cstate;
J.Bruce Fieldse5710192006-12-13 00:35:20 -08001005 int slack_bytes;
Al Virob37ad282006-10-19 23:28:59 -07001006 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 resp->xbuf = &rqstp->rq_res;
Andy Adamsone354d572009-03-28 11:30:52 +03001009 resp->p = rqstp->rq_res.head[0].iov_base +
1010 rqstp->rq_res.head[0].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 resp->tagp = resp->p;
1012 /* reserve space for: taglen, tag, and opcnt */
1013 resp->p += 2 + XDR_QUADLEN(args->taglen);
1014 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
1015 resp->taglen = args->taglen;
1016 resp->tag = args->tag;
1017 resp->opcnt = 0;
1018 resp->rqstp = rqstp;
Andy Adamsond87a8ad2009-04-03 08:28:53 +03001019 resp->cstate.minorversion = args->minorversion;
Andy Adamsone354d572009-03-28 11:30:52 +03001020 resp->cstate.replay_owner = NULL;
1021 fh_init(&resp->cstate.current_fh, NFS4_FHSIZE);
1022 fh_init(&resp->cstate.save_fh, NFS4_FHSIZE);
Andy Adamson2f425872009-04-03 08:27:32 +03001023 /* Use the deferral mechanism only for NFSv4.0 compounds */
1024 rqstp->rq_usedeferral = (args->minorversion == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 /*
1027 * According to RFC3010, this takes precedence over all other errors.
1028 */
1029 status = nfserr_minor_vers_mismatch;
Benny Halevy8daf2202009-04-03 08:28:59 +03001030 if (args->minorversion > nfsd_supported_minorversion)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 goto out;
1032
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001033 if (!nfs41_op_ordering_ok(args)) {
1034 op = &args->ops[0];
1035 op->status = nfserr_sequence_pos;
1036 goto encode_op;
1037 }
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 status = nfs_ok;
1040 while (!status && resp->opcnt < args->opcnt) {
1041 op = &args->ops[resp->opcnt++];
1042
Benny Halevyb001a1b2008-07-02 11:15:03 +03001043 dprintk("nfsv4 compound op #%d/%d: %d (%s)\n",
1044 resp->opcnt, args->opcnt, op->opnum,
1045 nfsd4_op_name(op->opnum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 /*
1047 * The XDR decode routines may have pre-set op->status;
1048 * for example, if there is a miscellaneous XDR error
1049 * it will be set to nfserr_bad_xdr.
1050 */
1051 if (op->status)
1052 goto encode_op;
1053
1054 /* We must be able to encode a successful response to
1055 * this operation, with enough room left over to encode a
1056 * failed response to the next operation. If we don't
1057 * have enough room, fail with ERR_RESOURCE.
1058 */
J.Bruce Fieldse5710192006-12-13 00:35:20 -08001059 slack_bytes = (char *)resp->end - (char *)resp->p;
1060 if (slack_bytes < COMPOUND_SLACK_SPACE
1061 + COMPOUND_ERR_SLACK_SPACE) {
1062 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 op->status = nfserr_resource;
1064 goto encode_op;
1065 }
1066
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001067 opdesc = &nfsd4_ops[op->opnum];
1068
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001069 if (!cstate->current_fh.fh_dentry) {
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001070 if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001071 op->status = nfserr_nofilehandle;
1072 goto encode_op;
1073 }
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001074 } else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
1075 !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -07001076 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 goto encode_op;
1078 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001079
1080 if (opdesc->op_func)
1081 op->status = opdesc->op_func(rqstp, cstate, &op->u);
1082 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 BUG_ON(op->status == nfs_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085encode_op:
Andy Adamsonda3846a2009-04-03 08:28:22 +03001086 /* Only from SEQUENCE or CREATE_SESSION */
1087 if (resp->cstate.status == nfserr_replay_cache) {
1088 dprintk("%s NFS4.1 replay from cache\n", __func__);
Andy Adamsonbf864a32009-04-03 08:28:35 +03001089 if (nfsd4_not_cached(resp))
1090 status = nfsd4_enc_uncached_replay(args, resp);
1091 else
1092 status = op->status;
Andy Adamsonda3846a2009-04-03 08:28:22 +03001093 goto out;
1094 }
Al Viroa90b0612006-10-19 23:29:03 -07001095 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001096 op->replay = &cstate->replay_owner->so_replay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 nfsd4_encode_replay(resp, op);
1098 status = op->status = op->replay->rp_status;
1099 } else {
1100 nfsd4_encode_operation(resp, op);
1101 status = op->status;
1102 }
Benny Halevy04077172008-12-15 19:40:49 +02001103
1104 dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n",
1105 args->ops, args->opcnt, resp->opcnt, op->opnum,
1106 be32_to_cpu(status));
1107
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001108 if (cstate->replay_owner) {
1109 nfs4_put_stateowner(cstate->replay_owner);
1110 cstate->replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
NeilBrown7e06b7f2005-06-23 22:03:13 -07001112 /* XXX Ugh, we need to get rid of this kind of special case: */
1113 if (op->opnum == OP_READ && op->u.read.rd_filp)
1114 fput(op->u.read.rd_filp);
Shankar Anande2b20952006-07-10 04:45:44 -07001115
1116 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
Andy Adamson2f425872009-04-03 08:27:32 +03001118 if (!rqstp->rq_usedeferral && status == nfserr_dropit) {
1119 dprintk("%s Dropit - send NFS4ERR_DELAY\n", __func__);
1120 status = nfserr_jukebox;
1121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Andy Adamsonda3846a2009-04-03 08:28:22 +03001123 resp->cstate.status = status;
Andy Adamsone354d572009-03-28 11:30:52 +03001124 fh_put(&resp->cstate.current_fh);
1125 fh_put(&resp->cstate.save_fh);
1126 BUG_ON(resp->cstate.replay_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127out:
1128 nfsd4_release_compoundargs(args);
Andy Adamson2f425872009-04-03 08:27:32 +03001129 /* Reset deferral mechanism for RPC deferrals */
1130 rqstp->rq_usedeferral = 1;
J. Bruce Fields3b12cd92008-05-05 17:17:44 -04001131 dprintk("nfsv4 compound returned %d\n", ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return status;
1133}
1134
Benny Halevy20766012009-03-28 11:32:05 +03001135static struct nfsd4_operation nfsd4_ops[] = {
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001136 [OP_ACCESS] = {
1137 .op_func = (nfsd4op_func)nfsd4_access,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001138 .op_name = "OP_ACCESS",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001139 },
1140 [OP_CLOSE] = {
1141 .op_func = (nfsd4op_func)nfsd4_close,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001142 .op_name = "OP_CLOSE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001143 },
1144 [OP_COMMIT] = {
1145 .op_func = (nfsd4op_func)nfsd4_commit,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001146 .op_name = "OP_COMMIT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001147 },
1148 [OP_CREATE] = {
1149 .op_func = (nfsd4op_func)nfsd4_create,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001150 .op_name = "OP_CREATE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001151 },
1152 [OP_DELEGRETURN] = {
1153 .op_func = (nfsd4op_func)nfsd4_delegreturn,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001154 .op_name = "OP_DELEGRETURN",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001155 },
1156 [OP_GETATTR] = {
1157 .op_func = (nfsd4op_func)nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001158 .op_flags = ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001159 .op_name = "OP_GETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001160 },
1161 [OP_GETFH] = {
1162 .op_func = (nfsd4op_func)nfsd4_getfh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001163 .op_name = "OP_GETFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001164 },
1165 [OP_LINK] = {
1166 .op_func = (nfsd4op_func)nfsd4_link,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001167 .op_name = "OP_LINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001168 },
1169 [OP_LOCK] = {
1170 .op_func = (nfsd4op_func)nfsd4_lock,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001171 .op_name = "OP_LOCK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001172 },
1173 [OP_LOCKT] = {
1174 .op_func = (nfsd4op_func)nfsd4_lockt,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001175 .op_name = "OP_LOCKT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001176 },
1177 [OP_LOCKU] = {
1178 .op_func = (nfsd4op_func)nfsd4_locku,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001179 .op_name = "OP_LOCKU",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001180 },
1181 [OP_LOOKUP] = {
1182 .op_func = (nfsd4op_func)nfsd4_lookup,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001183 .op_name = "OP_LOOKUP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001184 },
1185 [OP_LOOKUPP] = {
1186 .op_func = (nfsd4op_func)nfsd4_lookupp,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001187 .op_name = "OP_LOOKUPP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001188 },
1189 [OP_NVERIFY] = {
1190 .op_func = (nfsd4op_func)nfsd4_nverify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001191 .op_name = "OP_NVERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001192 },
1193 [OP_OPEN] = {
1194 .op_func = (nfsd4op_func)nfsd4_open,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001195 .op_name = "OP_OPEN",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001196 },
1197 [OP_OPEN_CONFIRM] = {
1198 .op_func = (nfsd4op_func)nfsd4_open_confirm,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001199 .op_name = "OP_OPEN_CONFIRM",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001200 },
1201 [OP_OPEN_DOWNGRADE] = {
1202 .op_func = (nfsd4op_func)nfsd4_open_downgrade,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001203 .op_name = "OP_OPEN_DOWNGRADE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001204 },
1205 [OP_PUTFH] = {
1206 .op_func = (nfsd4op_func)nfsd4_putfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001207 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001208 .op_name = "OP_PUTFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001209 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001210 [OP_PUTPUBFH] = {
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001211 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001212 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001213 .op_name = "OP_PUTPUBFH",
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001214 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001215 [OP_PUTROOTFH] = {
1216 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001217 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001218 .op_name = "OP_PUTROOTFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001219 },
1220 [OP_READ] = {
1221 .op_func = (nfsd4op_func)nfsd4_read,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001222 .op_name = "OP_READ",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001223 },
1224 [OP_READDIR] = {
1225 .op_func = (nfsd4op_func)nfsd4_readdir,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001226 .op_name = "OP_READDIR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001227 },
1228 [OP_READLINK] = {
1229 .op_func = (nfsd4op_func)nfsd4_readlink,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001230 .op_name = "OP_READLINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001231 },
1232 [OP_REMOVE] = {
1233 .op_func = (nfsd4op_func)nfsd4_remove,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001234 .op_name = "OP_REMOVE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001235 },
1236 [OP_RENAME] = {
Benny Halevyb001a1b2008-07-02 11:15:03 +03001237 .op_name = "OP_RENAME",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001238 .op_func = (nfsd4op_func)nfsd4_rename,
1239 },
1240 [OP_RENEW] = {
1241 .op_func = (nfsd4op_func)nfsd4_renew,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001242 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001243 .op_name = "OP_RENEW",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001244 },
1245 [OP_RESTOREFH] = {
1246 .op_func = (nfsd4op_func)nfsd4_restorefh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001247 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001248 .op_name = "OP_RESTOREFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001249 },
1250 [OP_SAVEFH] = {
1251 .op_func = (nfsd4op_func)nfsd4_savefh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001252 .op_name = "OP_SAVEFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001253 },
Andy Adamsondcb488a32007-07-17 04:04:51 -07001254 [OP_SECINFO] = {
1255 .op_func = (nfsd4op_func)nfsd4_secinfo,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001256 .op_name = "OP_SECINFO",
Andy Adamsondcb488a32007-07-17 04:04:51 -07001257 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001258 [OP_SETATTR] = {
1259 .op_func = (nfsd4op_func)nfsd4_setattr,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001260 .op_name = "OP_SETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001261 },
1262 [OP_SETCLIENTID] = {
1263 .op_func = (nfsd4op_func)nfsd4_setclientid,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001264 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001265 .op_name = "OP_SETCLIENTID",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001266 },
1267 [OP_SETCLIENTID_CONFIRM] = {
1268 .op_func = (nfsd4op_func)nfsd4_setclientid_confirm,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001269 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001270 .op_name = "OP_SETCLIENTID_CONFIRM",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001271 },
1272 [OP_VERIFY] = {
1273 .op_func = (nfsd4op_func)nfsd4_verify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001274 .op_name = "OP_VERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001275 },
1276 [OP_WRITE] = {
1277 .op_func = (nfsd4op_func)nfsd4_write,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001278 .op_name = "OP_WRITE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001279 },
1280 [OP_RELEASE_LOCKOWNER] = {
1281 .op_func = (nfsd4op_func)nfsd4_release_lockowner,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001282 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001283 .op_name = "OP_RELEASE_LOCKOWNER",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001284 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03001285
1286 /* NFSv4.1 operations */
1287 [OP_EXCHANGE_ID] = {
1288 .op_func = (nfsd4op_func)nfsd4_exchange_id,
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001289 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001290 .op_name = "OP_EXCHANGE_ID",
1291 },
1292 [OP_CREATE_SESSION] = {
1293 .op_func = (nfsd4op_func)nfsd4_create_session,
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001294 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001295 .op_name = "OP_CREATE_SESSION",
1296 },
1297 [OP_DESTROY_SESSION] = {
1298 .op_func = (nfsd4op_func)nfsd4_destroy_session,
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001299 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001300 .op_name = "OP_DESTROY_SESSION",
1301 },
1302 [OP_SEQUENCE] = {
1303 .op_func = (nfsd4op_func)nfsd4_sequence,
Andy Adamsonf9bb94c2009-04-03 08:28:12 +03001304 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001305 .op_name = "OP_SEQUENCE",
1306 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001307};
1308
Adrian Bunkf1c7f792008-08-08 19:26:42 +03001309static const char *nfsd4_op_name(unsigned opnum)
Benny Halevyb001a1b2008-07-02 11:15:03 +03001310{
1311 if (opnum < ARRAY_SIZE(nfsd4_ops))
1312 return nfsd4_ops[opnum].op_name;
1313 return "unknown_operation";
1314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316#define nfsd4_voidres nfsd4_voidargs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317struct nfsd4_voidargs { int dummy; };
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319/*
1320 * TODO: At the present time, the NFSv4 server does not do XID caching
1321 * of requests. Implementing XID caching would not be a serious problem,
1322 * although it would require a mild change in interfaces since one
1323 * doesn't know whether an NFSv4 request is idempotent until after the
1324 * XDR decode. However, XID caching totally confuses pynfs (Peter
1325 * Astrand's regression testsuite for NFSv4 servers), which reuses
1326 * XID's liberally, so I've left it unimplemented until pynfs generates
1327 * better XID's.
1328 */
1329static struct svc_procedure nfsd_procedures4[2] = {
Yu Zhiguo0a93a472009-05-19 14:09:54 +08001330 [NFSPROC4_NULL] = {
1331 .pc_func = (svc_procfunc) nfsd4_proc_null,
1332 .pc_encode = (kxdrproc_t) nfs4svc_encode_voidres,
1333 .pc_argsize = sizeof(struct nfsd4_voidargs),
1334 .pc_ressize = sizeof(struct nfsd4_voidres),
1335 .pc_cachetype = RC_NOCACHE,
1336 .pc_xdrressize = 1,
1337 },
1338 [NFSPROC4_COMPOUND] = {
1339 .pc_func = (svc_procfunc) nfsd4_proc_compound,
1340 .pc_decode = (kxdrproc_t) nfs4svc_decode_compoundargs,
1341 .pc_encode = (kxdrproc_t) nfs4svc_encode_compoundres,
1342 .pc_argsize = sizeof(struct nfsd4_compoundargs),
1343 .pc_ressize = sizeof(struct nfsd4_compoundres),
1344 .pc_cachetype = RC_NOCACHE,
1345 .pc_xdrressize = NFSD_BUFSIZE/4,
1346 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347};
1348
1349struct svc_version nfsd_version4 = {
1350 .vs_vers = 4,
1351 .vs_nproc = 2,
1352 .vs_proc = nfsd_procedures4,
1353 .vs_dispatch = nfsd_dispatch,
1354 .vs_xdrsize = NFS4_SVC_XDRSIZE,
1355};
1356
1357/*
1358 * Local variables:
1359 * c-basic-offset: 8
1360 * End:
1361 */