blob: ae21a4efe36ceb34c0643f1dcba32dfc13d94859 [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
54static inline void
55fh_dup2(struct svc_fh *dst, struct svc_fh *src)
56{
57 fh_put(dst);
58 dget(src->fh_dentry);
59 if (src->fh_export)
60 cache_get(&src->fh_export->h);
61 *dst = *src;
62}
63
Al Virob37ad282006-10-19 23:28:59 -070064static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -070065do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Al Virob37ad282006-10-19 23:28:59 -070067 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 if (open->op_truncate &&
70 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
71 return nfserr_inval;
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
Miklos Szeredi8837abc2008-06-16 13:20:29 +020074 accmode |= NFSD_MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -070075 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +020076 accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC);
J. Bruce Fields9801d8a2006-10-17 00:10:14 -070077 if (open->op_share_deny & NFS4_SHARE_DENY_WRITE)
Miklos Szeredi8837abc2008-06-16 13:20:29 +020078 accmode |= NFSD_MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
81
82 return status;
83}
84
Al Virob37ad282006-10-19 23:28:59 -070085static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070086do_open_lookup(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
87{
88 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -070089 __be32 status;
J. Bruce Fields81ac95c2006-11-08 17:44:40 -080090 int created = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 fh_init(&resfh, NFS4_FHSIZE);
93 open->op_truncate = 0;
94
95 if (open->op_create) {
96 /*
97 * Note: create modes (UNCHECKED,GUARDED...) are the same
98 * in NFSv4 as in v3.
99 */
100 status = nfsd_create_v3(rqstp, current_fh, open->op_fname.data,
101 open->op_fname.len, &open->op_iattr,
102 &resfh, open->op_createmode,
Jeff Layton749997e2007-07-31 00:37:51 -0700103 (u32 *)open->op_verf.data,
104 &open->op_truncate, &created);
105
J. Bruce Fields99f88722009-02-02 15:12:27 -0500106 /*
107 * Following rfc 3530 14.2.16, use the returned bitmask
108 * to indicate which attributes we used to store the
109 * verifier:
Jeff Layton749997e2007-07-31 00:37:51 -0700110 */
111 if (open->op_createmode == NFS4_CREATE_EXCLUSIVE && status == 0)
J. Bruce Fields99f88722009-02-02 15:12:27 -0500112 open->op_bmval[1] = (FATTR4_WORD1_TIME_ACCESS |
Jeff Layton749997e2007-07-31 00:37:51 -0700113 FATTR4_WORD1_TIME_MODIFY);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800114 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 status = nfsd_lookup(rqstp, current_fh,
116 open->op_fname.data, open->op_fname.len, &resfh);
117 fh_unlock(current_fh);
118 }
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800119 if (status)
120 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800122 set_change_info(&open->op_cinfo, current_fh);
J. Bruce Fields13024b72009-02-02 17:04:03 -0500123 fh_dup2(current_fh, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800125 /* set reply cache */
J. Bruce Fieldsa4773c02009-02-02 17:23:10 -0500126 fh_copy_shallow(&open->op_stateowner->so_replay.rp_openfh,
127 &resfh.fh_handle);
J. Bruce Fields81ac95c2006-11-08 17:44:40 -0800128 if (!created)
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200129 status = do_open_permission(rqstp, current_fh, open,
130 NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800132out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 fh_put(&resfh);
134 return status;
135}
136
Al Virob37ad282006-10-19 23:28:59 -0700137static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138do_open_fhandle(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
139{
Al Virob37ad282006-10-19 23:28:59 -0700140 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 /* Only reclaims from previously confirmed clients are valid */
143 if ((status = nfs4_check_open_reclaim(&open->op_clientid)))
144 return status;
145
146 /* We don't know the target directory, and therefore can not
147 * set the change info
148 */
149
150 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
151
152 /* set replay cache */
J. Bruce Fieldsa4773c02009-02-02 17:23:10 -0500153 fh_copy_shallow(&open->op_stateowner->so_replay.rp_openfh,
154 &current_fh->fh_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
157 (open->op_iattr.ia_size == 0);
158
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200159 status = do_open_permission(rqstp, current_fh, open,
160 NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 return status;
163}
164
165
J.Bruce Fields71911552006-12-13 00:35:29 -0800166static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800167nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800168 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Al Virob37ad282006-10-19 23:28:59 -0700170 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 dprintk("NFSD: nfsd4_open filename %.*s op_stateowner %p\n",
172 (int)open->op_fname.len, open->op_fname.data,
173 open->op_stateowner);
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 /* This check required by spec. */
176 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
177 return nfserr_inval;
178
179 nfs4_lock_state();
180
181 /* check seqid for replay. set nfs4_owner */
182 status = nfsd4_process_open1(open);
Al Viroa90b0612006-10-19 23:29:03 -0700183 if (status == nfserr_replay_me) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct nfs4_replay *rp = &open->op_stateowner->so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800185 fh_put(&cstate->current_fh);
J. Bruce Fieldsa4773c02009-02-02 17:23:10 -0500186 fh_copy_shallow(&cstate->current_fh.fh_handle,
187 &rp->rp_openfh);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200188 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (status)
190 dprintk("nfsd4_open: replay failed"
191 " restoring previous filehandle\n");
192 else
Al Viroa90b0612006-10-19 23:29:03 -0700193 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195 if (status)
196 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800197
198 /* Openowner is now set, so sequence id will get bumped. Now we need
199 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800200 status = nfserr_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400201 if (locks_in_grace() && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800202 goto out;
203 status = nfserr_no_grace;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400204 if (!locks_in_grace() && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800205 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700208 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 case NFS4_OPEN_CLAIM_NULL:
210 /*
211 * (1) set CURRENT_FH to the file being opened,
212 * creating it if necessary, (2) set open->op_cinfo,
213 * (3) set open->op_truncate if the file is to be
214 * truncated after opening, (4) do permission checking.
215 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800216 status = do_open_lookup(rqstp, &cstate->current_fh,
217 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 if (status)
219 goto out;
220 break;
221 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800222 open->op_stateowner->so_confirmed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /*
224 * The CURRENT_FH is already set to the file being
225 * opened. (1) set open->op_cinfo, (2) set
226 * open->op_truncate if the file is to be truncated
227 * after opening, (3) do permission checking.
228 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800229 status = do_open_fhandle(rqstp, &cstate->current_fh,
230 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (status)
232 goto out;
233 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800235 open->op_stateowner->so_confirmed = 1;
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400236 dprintk("NFSD: unsupported OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 open->op_claim_type);
238 status = nfserr_notsupp;
239 goto out;
240 default:
J. Bruce Fields2fdada02007-07-27 16:10:37 -0400241 dprintk("NFSD: Invalid OPEN claim type %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 open->op_claim_type);
243 status = nfserr_inval;
244 goto out;
245 }
246 /*
247 * nfsd4_process_open2() does the actual opening of the file. If
248 * successful, it (1) truncates the file if open->op_truncate was
249 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
250 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800251 status = nfsd4_process_open2(rqstp, &cstate->current_fh, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252out:
Neil Brownf2327d92005-09-13 01:25:37 -0700253 if (open->op_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 nfs4_get_stateowner(open->op_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800255 cstate->replay_owner = open->op_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -0700256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 nfs4_unlock_state();
258 return status;
259}
260
261/*
262 * filehandle-manipulating ops.
263 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800264static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800265nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
266 struct svc_fh **getfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800268 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return nfserr_nofilehandle;
270
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800271 *getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return nfs_ok;
273}
274
J.Bruce Fields71911552006-12-13 00:35:29 -0800275static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800276nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
277 struct nfsd4_putfh *putfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800279 fh_put(&cstate->current_fh);
280 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
281 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
282 putfh->pf_fhlen);
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200283 return fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
J.Bruce Fields71911552006-12-13 00:35:29 -0800286static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800287nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
288 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Al Virob37ad282006-10-19 23:28:59 -0700290 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800292 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700293 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return status;
295}
296
J.Bruce Fields71911552006-12-13 00:35:29 -0800297static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800298nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
299 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800301 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return nfserr_restorefh;
303
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800304 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return nfs_ok;
306}
307
J.Bruce Fields71911552006-12-13 00:35:29 -0800308static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800309nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
310 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800312 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return nfserr_nofilehandle;
314
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800315 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return nfs_ok;
317}
318
319/*
320 * misc nfsv4 ops
321 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800322static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800323nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
324 struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
327 return nfserr_inval;
328
329 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800330 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
331 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
J.Bruce Fields71911552006-12-13 00:35:29 -0800334static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800335nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
336 struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Al Virob37ad282006-10-19 23:28:59 -0700338 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 u32 *p = (u32 *)commit->co_verf.data;
341 *p++ = nfssvc_boot.tv_sec;
342 *p++ = nfssvc_boot.tv_usec;
343
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800344 status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
345 commit->co_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (status == nfserr_symlink)
347 status = nfserr_inval;
348 return status;
349}
350
Al Virob37ad282006-10-19 23:28:59 -0700351static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800352nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
353 struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700356 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 dev_t rdev;
358
359 fh_init(&resfh, NFS4_FHSIZE);
360
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200361 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR,
362 NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (status == nfserr_symlink)
364 status = nfserr_notdir;
365 if (status)
366 return status;
367
368 switch (create->cr_type) {
369 case NF4LNK:
370 /* ugh! we have to null-terminate the linktext, or
371 * vfs_symlink() will choke. it is always safe to
372 * null-terminate by brute force, since at worst we
373 * will overwrite the first byte of the create namelen
374 * in the XDR buffer, which has already been extracted
375 * during XDR decode.
376 */
377 create->cr_linkname[create->cr_linklen] = 0;
378
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800379 status = nfsd_symlink(rqstp, &cstate->current_fh,
380 create->cr_name, create->cr_namelen,
381 create->cr_linkname, create->cr_linklen,
382 &resfh, &create->cr_iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 break;
384
385 case NF4BLK:
386 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
387 if (MAJOR(rdev) != create->cr_specdata1 ||
388 MINOR(rdev) != create->cr_specdata2)
389 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800390 status = nfsd_create(rqstp, &cstate->current_fh,
391 create->cr_name, create->cr_namelen,
392 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 break;
394
395 case NF4CHR:
396 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
397 if (MAJOR(rdev) != create->cr_specdata1 ||
398 MINOR(rdev) != create->cr_specdata2)
399 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800400 status = nfsd_create(rqstp, &cstate->current_fh,
401 create->cr_name, create->cr_namelen,
402 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 break;
404
405 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800406 status = nfsd_create(rqstp, &cstate->current_fh,
407 create->cr_name, create->cr_namelen,
408 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 break;
410
411 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800412 status = nfsd_create(rqstp, &cstate->current_fh,
413 create->cr_name, create->cr_namelen,
414 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 break;
416
417 case NF4DIR:
418 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800419 status = nfsd_create(rqstp, &cstate->current_fh,
420 create->cr_name, create->cr_namelen,
421 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 break;
423
424 default:
425 status = nfserr_badtype;
426 }
427
428 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800429 fh_unlock(&cstate->current_fh);
430 set_change_info(&create->cr_cinfo, &cstate->current_fh);
431 fh_dup2(&cstate->current_fh, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433
434 fh_put(&resfh);
435 return status;
436}
437
J.Bruce Fields71911552006-12-13 00:35:29 -0800438static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800439nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
440 struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Al Virob37ad282006-10-19 23:28:59 -0700442 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200444 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (status)
446 return status;
447
448 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
449 return nfserr_inval;
450
451 getattr->ga_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
452 getattr->ga_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
453
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800454 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return nfs_ok;
456}
457
J.Bruce Fields71911552006-12-13 00:35:29 -0800458static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800459nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
460 struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Al Virob37ad282006-10-19 23:28:59 -0700462 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800464 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800466 status = nfsd_link(rqstp, &cstate->current_fh,
467 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800469 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return status;
471}
472
Al Virob37ad282006-10-19 23:28:59 -0700473static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800474nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
475 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700478 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700481 ret = exp_pseudoroot(rqstp, &tmp_fh);
482 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return ret;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800484 if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 fh_put(&tmp_fh);
486 return nfserr_noent;
487 }
488 fh_put(&tmp_fh);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800489 return nfsd_lookup(rqstp, &cstate->current_fh,
490 "..", 2, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
J.Bruce Fields71911552006-12-13 00:35:29 -0800493static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800494nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
495 struct nfsd4_lookup *lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800497 return nfsd_lookup(rqstp, &cstate->current_fh,
498 lookup->lo_name, lookup->lo_len,
499 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
J.Bruce Fields71911552006-12-13 00:35:29 -0800502static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800503nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
504 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Al Virob37ad282006-10-19 23:28:59 -0700506 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /* no need to check permission - this will be done in nfsd_read() */
509
NeilBrown7e06b7f2005-06-23 22:03:13 -0700510 read->rd_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (read->rd_offset >= OFFSET_MAX)
512 return nfserr_inval;
513
514 nfs4_lock_state();
515 /* check stateid */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800516 if ((status = nfs4_preprocess_stateid_op(&cstate->current_fh,
517 &read->rd_stateid,
J. Bruce Fields6150ef02009-02-21 13:36:16 -0800518 RD_STATE, &read->rd_filp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
520 goto out;
521 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700522 if (read->rd_filp)
523 get_file(read->rd_filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 status = nfs_ok;
525out:
526 nfs4_unlock_state();
527 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800528 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return status;
530}
531
J.Bruce Fields71911552006-12-13 00:35:29 -0800532static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800533nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
534 struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 u64 cookie = readdir->rd_cookie;
537 static const nfs4_verifier zeroverf;
538
539 /* no need to check permission - this will be done in nfsd_readdir() */
540
541 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
542 return nfserr_inval;
543
544 readdir->rd_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
545 readdir->rd_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
546
547 if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) ||
548 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
549 return nfserr_bad_cookie;
550
551 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800552 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return nfs_ok;
554}
555
J.Bruce Fields71911552006-12-13 00:35:29 -0800556static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800557nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
558 struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 readlink->rl_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800561 readlink->rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return nfs_ok;
563}
564
J.Bruce Fields71911552006-12-13 00:35:29 -0800565static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800566nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
567 struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Al Virob37ad282006-10-19 23:28:59 -0700569 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400571 if (locks_in_grace())
NeilBrownc815afc2005-06-23 22:03:00 -0700572 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800573 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
574 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (status == nfserr_symlink)
576 return nfserr_notdir;
577 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800578 fh_unlock(&cstate->current_fh);
579 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581 return status;
582}
583
J.Bruce Fields71911552006-12-13 00:35:29 -0800584static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800585nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
586 struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Al Virob37ad282006-10-19 23:28:59 -0700588 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800590 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return status;
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400592 if (locks_in_grace() && !(cstate->save_fh.fh_export->ex_flags
NeilBrownc815afc2005-06-23 22:03:00 -0700593 & NFSEXP_NOSUBTREECHECK))
594 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800595 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
596 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 rename->rn_tname, rename->rn_tnamelen);
598
599 /* the underlying filesystem returns different error's than required
600 * by NFSv4. both save_fh and current_fh have been verified.. */
601 if (status == nfserr_isdir)
602 status = nfserr_exist;
603 else if ((status == nfserr_notdir) &&
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800604 (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) &&
605 S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 status = nfserr_exist;
607 else if (status == nfserr_symlink)
608 status = nfserr_notdir;
609
610 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800611 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
612 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614 return status;
615}
616
J.Bruce Fields71911552006-12-13 00:35:29 -0800617static __be32
Andy Adamsondcb488a32007-07-17 04:04:51 -0700618nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
619 struct nfsd4_secinfo *secinfo)
620{
621 struct svc_fh resfh;
622 struct svc_export *exp;
623 struct dentry *dentry;
624 __be32 err;
625
626 fh_init(&resfh, NFS4_FHSIZE);
627 err = nfsd_lookup_dentry(rqstp, &cstate->current_fh,
628 secinfo->si_name, secinfo->si_namelen,
629 &exp, &dentry);
630 if (err)
631 return err;
632 if (dentry->d_inode == NULL) {
633 exp_put(exp);
634 err = nfserr_noent;
635 } else
636 secinfo->si_exp = exp;
637 dput(dentry);
638 return err;
639}
640
641static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800642nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
643 struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Al Virob37ad282006-10-19 23:28:59 -0700645 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
648 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800649 status = nfs4_preprocess_stateid_op(&cstate->current_fh,
J. Bruce Fields6150ef02009-02-21 13:36:16 -0800650 &setattr->sa_stateid, WR_STATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -0800652 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700653 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800654 return status;
655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
Dave Hansen18f335a2008-02-15 14:37:38 -0800657 status = mnt_want_write(cstate->current_fh.fh_export->ex_path.mnt);
658 if (status)
659 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 status = nfs_ok;
661 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800662 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
663 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (status)
Dave Hansen18f335a2008-02-15 14:37:38 -0800665 goto out;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800666 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 0, (time_t)0);
Dave Hansen18f335a2008-02-15 14:37:38 -0800668out:
669 mnt_drop_write(cstate->current_fh.fh_export->ex_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return status;
671}
672
J.Bruce Fields71911552006-12-13 00:35:29 -0800673static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800674nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
675 struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 stateid_t *stateid = &write->wr_stateid;
678 struct file *filp = NULL;
679 u32 *p;
Al Virob37ad282006-10-19 23:28:59 -0700680 __be32 status = nfs_ok;
David Shaw31dec252009-03-05 20:16:14 -0500681 unsigned long cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 /* no need to check permission - this will be done in nfsd_write() */
684
685 if (write->wr_offset >= OFFSET_MAX)
686 return nfserr_inval;
687
688 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800689 status = nfs4_preprocess_stateid_op(&cstate->current_fh, stateid,
J. Bruce Fields6150ef02009-02-21 13:36:16 -0800690 WR_STATE, &filp);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700691 if (filp)
692 get_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 nfs4_unlock_state();
694
J. Bruce Fields375c5542006-01-18 17:43:33 -0800695 if (status) {
696 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
697 return status;
698 }
699
David Shaw31dec252009-03-05 20:16:14 -0500700 cnt = write->wr_buflen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 write->wr_how_written = write->wr_stable_how;
702 p = (u32 *)write->wr_verifier.data;
703 *p++ = nfssvc_boot.tv_sec;
704 *p++ = nfssvc_boot.tv_usec;
705
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800706 status = nfsd_write(rqstp, &cstate->current_fh, filp,
707 write->wr_offset, rqstp->rq_vec, write->wr_vlen,
David Shaw31dec252009-03-05 20:16:14 -0500708 &cnt, &write->wr_how_written);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700709 if (filp)
710 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
David Shaw31dec252009-03-05 20:16:14 -0500712 write->wr_bytes_written = cnt;
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (status == nfserr_symlink)
715 status = nfserr_inval;
716 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719/* This routine never returns NFS_OK! If there are no other errors, it
720 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
721 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
722 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
723 */
Al Virob37ad282006-10-19 23:28:59 -0700724static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800725_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800726 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Al Viro2ebbc012006-10-19 23:28:58 -0700728 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 int count;
Al Virob37ad282006-10-19 23:28:59 -0700730 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200732 status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (status)
734 return status;
735
736 if ((verify->ve_bmval[0] & ~NFSD_SUPPORTED_ATTRS_WORD0)
737 || (verify->ve_bmval[1] & ~NFSD_SUPPORTED_ATTRS_WORD1))
738 return nfserr_attrnotsupp;
739 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
740 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
741 return nfserr_inval;
742 if (verify->ve_attrlen & 3)
743 return nfserr_inval;
744
745 /* count in words:
746 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
747 */
748 count = 4 + (verify->ve_attrlen >> 2);
749 buf = kmalloc(count << 2, GFP_KERNEL);
750 if (!buf)
751 return nfserr_resource;
752
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800753 status = nfsd4_encode_fattr(&cstate->current_fh,
754 cstate->current_fh.fh_export,
755 cstate->current_fh.fh_dentry, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 &count, verify->ve_bmval,
Frank Filz406a7ea2007-11-27 11:34:05 -0800757 rqstp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 /* this means that nfsd4_encode_fattr() ran out of space */
760 if (status == nfserr_resource && count == 0)
761 status = nfserr_not_same;
762 if (status)
763 goto out_kfree;
764
765 p = buf + 3;
766 status = nfserr_not_same;
767 if (ntohl(*p++) != verify->ve_attrlen)
768 goto out_kfree;
769 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
770 status = nfserr_same;
771
772out_kfree:
773 kfree(buf);
774 return status;
775}
776
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800777static __be32
778nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
779 struct nfsd4_verify *verify)
780{
781 __be32 status;
782
783 status = _nfsd4_verify(rqstp, cstate, verify);
784 return status == nfserr_not_same ? nfs_ok : status;
785}
786
787static __be32
788nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
789 struct nfsd4_verify *verify)
790{
791 __be32 status;
792
793 status = _nfsd4_verify(rqstp, cstate, verify);
794 return status == nfserr_same ? nfs_ok : status;
795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/*
798 * NULL call.
799 */
Al Viro7111c662006-10-19 23:28:45 -0700800static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
802{
803 return nfs_ok;
804}
805
Shankar Anande2b20952006-07-10 04:45:44 -0700806static inline void nfsd4_increment_op_stats(u32 opnum)
807{
808 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
809 nfsdstats.nfs4_opcount[opnum]++;
810}
811
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800812typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *,
813 void *);
Andy Adamsonf9bb94c42009-04-03 08:28:12 +0300814enum nfsd4_op_flags {
815 ALLOWED_WITHOUT_FH = 1 << 0, /* No current filehandle required */
816 ALLOWED_ON_ABSENT_FS = 2 << 0, /* ops processed on absent fs */
817 ALLOWED_AS_FIRST_OP = 3 << 0, /* ops reqired first in compound */
818};
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800819
820struct nfsd4_operation {
821 nfsd4op_func op_func;
822 u32 op_flags;
Benny Halevyb001a1b2008-07-02 11:15:03 +0300823 char *op_name;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800824};
825
826static struct nfsd4_operation nfsd4_ops[];
827
Adrian Bunkf1c7f792008-08-08 19:26:42 +0300828static const char *nfsd4_op_name(unsigned opnum);
Benny Halevyb001a1b2008-07-02 11:15:03 +0300829
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830/*
Andy Adamsonbf864a32009-04-03 08:28:35 +0300831 * This is a replay of a compound for which no cache entry pages
832 * were used. Encode the sequence operation, and if cachethis is FALSE
833 * encode the uncache rep error on the next operation.
834 */
835static __be32
836nfsd4_enc_uncached_replay(struct nfsd4_compoundargs *args,
837 struct nfsd4_compoundres *resp)
838{
839 struct nfsd4_op *op;
840
841 dprintk("--> %s resp->opcnt %d ce_cachethis %u \n", __func__,
842 resp->opcnt, resp->cstate.slot->sl_cache_entry.ce_cachethis);
843
844 /* Encode the replayed sequence operation */
845 BUG_ON(resp->opcnt != 1);
846 op = &args->ops[resp->opcnt - 1];
847 nfsd4_encode_operation(resp, op);
848
849 /*return nfserr_retry_uncached_rep in next operation. */
850 if (resp->cstate.slot->sl_cache_entry.ce_cachethis == 0) {
851 op = &args->ops[resp->opcnt++];
852 op->status = nfserr_retry_uncached_rep;
853 nfsd4_encode_operation(resp, op);
854 }
855 return op->status;
856}
857
858/*
Andy Adamsonf9bb94c42009-04-03 08:28:12 +0300859 * Enforce NFSv4.1 COMPOUND ordering rules.
860 *
861 * TODO:
862 * - enforce NFS4ERR_NOT_ONLY_OP,
863 * - DESTROY_SESSION MUST be the final operation in the COMPOUND request.
864 */
865static bool nfs41_op_ordering_ok(struct nfsd4_compoundargs *args)
866{
867 if (args->minorversion && args->opcnt > 0) {
868 struct nfsd4_op *op = &args->ops[0];
869 return (op->status == nfserr_op_illegal) ||
870 (nfsd4_ops[op->opnum].op_flags & ALLOWED_AS_FIRST_OP);
871 }
872 return true;
873}
874
875/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 * COMPOUND call.
877 */
Al Viro7111c662006-10-19 23:28:45 -0700878static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879nfsd4_proc_compound(struct svc_rqst *rqstp,
880 struct nfsd4_compoundargs *args,
881 struct nfsd4_compoundres *resp)
882{
883 struct nfsd4_op *op;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800884 struct nfsd4_operation *opdesc;
Andy Adamsone354d572009-03-28 11:30:52 +0300885 struct nfsd4_compound_state *cstate = &resp->cstate;
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800886 int slack_bytes;
Al Virob37ad282006-10-19 23:28:59 -0700887 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 resp->xbuf = &rqstp->rq_res;
Andy Adamsone354d572009-03-28 11:30:52 +0300890 resp->p = rqstp->rq_res.head[0].iov_base +
891 rqstp->rq_res.head[0].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 resp->tagp = resp->p;
893 /* reserve space for: taglen, tag, and opcnt */
894 resp->p += 2 + XDR_QUADLEN(args->taglen);
895 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
896 resp->taglen = args->taglen;
897 resp->tag = args->tag;
898 resp->opcnt = 0;
899 resp->rqstp = rqstp;
Andy Adamsone354d572009-03-28 11:30:52 +0300900 resp->cstate.replay_owner = NULL;
901 fh_init(&resp->cstate.current_fh, NFS4_FHSIZE);
902 fh_init(&resp->cstate.save_fh, NFS4_FHSIZE);
Andy Adamson2f425872009-04-03 08:27:32 +0300903 /* Use the deferral mechanism only for NFSv4.0 compounds */
904 rqstp->rq_usedeferral = (args->minorversion == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 /*
907 * According to RFC3010, this takes precedence over all other errors.
908 */
909 status = nfserr_minor_vers_mismatch;
910 if (args->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
911 goto out;
912
Andy Adamsonf9bb94c42009-04-03 08:28:12 +0300913 if (!nfs41_op_ordering_ok(args)) {
914 op = &args->ops[0];
915 op->status = nfserr_sequence_pos;
916 goto encode_op;
917 }
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 status = nfs_ok;
920 while (!status && resp->opcnt < args->opcnt) {
921 op = &args->ops[resp->opcnt++];
922
Benny Halevyb001a1b2008-07-02 11:15:03 +0300923 dprintk("nfsv4 compound op #%d/%d: %d (%s)\n",
924 resp->opcnt, args->opcnt, op->opnum,
925 nfsd4_op_name(op->opnum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 /*
927 * The XDR decode routines may have pre-set op->status;
928 * for example, if there is a miscellaneous XDR error
929 * it will be set to nfserr_bad_xdr.
930 */
931 if (op->status)
932 goto encode_op;
933
934 /* We must be able to encode a successful response to
935 * this operation, with enough room left over to encode a
936 * failed response to the next operation. If we don't
937 * have enough room, fail with ERR_RESOURCE.
938 */
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800939 slack_bytes = (char *)resp->end - (char *)resp->p;
940 if (slack_bytes < COMPOUND_SLACK_SPACE
941 + COMPOUND_ERR_SLACK_SPACE) {
942 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 op->status = nfserr_resource;
944 goto encode_op;
945 }
946
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800947 opdesc = &nfsd4_ops[op->opnum];
948
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800949 if (!cstate->current_fh.fh_dentry) {
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800950 if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700951 op->status = nfserr_nofilehandle;
952 goto encode_op;
953 }
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800954 } else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
955 !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700956 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 goto encode_op;
958 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800959
960 if (opdesc->op_func)
961 op->status = opdesc->op_func(rqstp, cstate, &op->u);
962 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 BUG_ON(op->status == nfs_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965encode_op:
Andy Adamsonda3846a2009-04-03 08:28:22 +0300966 /* Only from SEQUENCE or CREATE_SESSION */
967 if (resp->cstate.status == nfserr_replay_cache) {
968 dprintk("%s NFS4.1 replay from cache\n", __func__);
Andy Adamsonbf864a32009-04-03 08:28:35 +0300969 if (nfsd4_not_cached(resp))
970 status = nfsd4_enc_uncached_replay(args, resp);
971 else
972 status = op->status;
Andy Adamsonda3846a2009-04-03 08:28:22 +0300973 goto out;
974 }
Al Viroa90b0612006-10-19 23:29:03 -0700975 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800976 op->replay = &cstate->replay_owner->so_replay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 nfsd4_encode_replay(resp, op);
978 status = op->status = op->replay->rp_status;
979 } else {
980 nfsd4_encode_operation(resp, op);
981 status = op->status;
982 }
Benny Halevy04077172008-12-15 19:40:49 +0200983
984 dprintk("nfsv4 compound op %p opcnt %d #%d: %d: status %d\n",
985 args->ops, args->opcnt, resp->opcnt, op->opnum,
986 be32_to_cpu(status));
987
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800988 if (cstate->replay_owner) {
989 nfs4_put_stateowner(cstate->replay_owner);
990 cstate->replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700992 /* XXX Ugh, we need to get rid of this kind of special case: */
993 if (op->opnum == OP_READ && op->u.read.rd_filp)
994 fput(op->u.read.rd_filp);
Shankar Anande2b20952006-07-10 04:45:44 -0700995
996 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Andy Adamson2f425872009-04-03 08:27:32 +0300998 if (!rqstp->rq_usedeferral && status == nfserr_dropit) {
999 dprintk("%s Dropit - send NFS4ERR_DELAY\n", __func__);
1000 status = nfserr_jukebox;
1001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Andy Adamsonda3846a2009-04-03 08:28:22 +03001003 resp->cstate.status = status;
Andy Adamsone354d572009-03-28 11:30:52 +03001004 fh_put(&resp->cstate.current_fh);
1005 fh_put(&resp->cstate.save_fh);
1006 BUG_ON(resp->cstate.replay_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007out:
1008 nfsd4_release_compoundargs(args);
Andy Adamson2f425872009-04-03 08:27:32 +03001009 /* Reset deferral mechanism for RPC deferrals */
1010 rqstp->rq_usedeferral = 1;
J. Bruce Fields3b12cd92008-05-05 17:17:44 -04001011 dprintk("nfsv4 compound returned %d\n", ntohl(status));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return status;
1013}
1014
Benny Halevy20766012009-03-28 11:32:05 +03001015static struct nfsd4_operation nfsd4_ops[] = {
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001016 [OP_ACCESS] = {
1017 .op_func = (nfsd4op_func)nfsd4_access,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001018 .op_name = "OP_ACCESS",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001019 },
1020 [OP_CLOSE] = {
1021 .op_func = (nfsd4op_func)nfsd4_close,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001022 .op_name = "OP_CLOSE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001023 },
1024 [OP_COMMIT] = {
1025 .op_func = (nfsd4op_func)nfsd4_commit,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001026 .op_name = "OP_COMMIT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001027 },
1028 [OP_CREATE] = {
1029 .op_func = (nfsd4op_func)nfsd4_create,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001030 .op_name = "OP_CREATE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001031 },
1032 [OP_DELEGRETURN] = {
1033 .op_func = (nfsd4op_func)nfsd4_delegreturn,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001034 .op_name = "OP_DELEGRETURN",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001035 },
1036 [OP_GETATTR] = {
1037 .op_func = (nfsd4op_func)nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001038 .op_flags = ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001039 .op_name = "OP_GETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001040 },
1041 [OP_GETFH] = {
1042 .op_func = (nfsd4op_func)nfsd4_getfh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001043 .op_name = "OP_GETFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001044 },
1045 [OP_LINK] = {
1046 .op_func = (nfsd4op_func)nfsd4_link,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001047 .op_name = "OP_LINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001048 },
1049 [OP_LOCK] = {
1050 .op_func = (nfsd4op_func)nfsd4_lock,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001051 .op_name = "OP_LOCK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001052 },
1053 [OP_LOCKT] = {
1054 .op_func = (nfsd4op_func)nfsd4_lockt,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001055 .op_name = "OP_LOCKT",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001056 },
1057 [OP_LOCKU] = {
1058 .op_func = (nfsd4op_func)nfsd4_locku,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001059 .op_name = "OP_LOCKU",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001060 },
1061 [OP_LOOKUP] = {
1062 .op_func = (nfsd4op_func)nfsd4_lookup,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001063 .op_name = "OP_LOOKUP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001064 },
1065 [OP_LOOKUPP] = {
1066 .op_func = (nfsd4op_func)nfsd4_lookupp,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001067 .op_name = "OP_LOOKUPP",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001068 },
1069 [OP_NVERIFY] = {
1070 .op_func = (nfsd4op_func)nfsd4_nverify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001071 .op_name = "OP_NVERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001072 },
1073 [OP_OPEN] = {
1074 .op_func = (nfsd4op_func)nfsd4_open,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001075 .op_name = "OP_OPEN",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001076 },
1077 [OP_OPEN_CONFIRM] = {
1078 .op_func = (nfsd4op_func)nfsd4_open_confirm,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001079 .op_name = "OP_OPEN_CONFIRM",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001080 },
1081 [OP_OPEN_DOWNGRADE] = {
1082 .op_func = (nfsd4op_func)nfsd4_open_downgrade,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001083 .op_name = "OP_OPEN_DOWNGRADE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001084 },
1085 [OP_PUTFH] = {
1086 .op_func = (nfsd4op_func)nfsd4_putfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001087 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001088 .op_name = "OP_PUTFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001089 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001090 [OP_PUTPUBFH] = {
J. Bruce Fieldsa1c8c4d2009-03-09 12:17:29 -04001091 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001092 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001093 .op_name = "OP_PUTPUBFH",
J.Bruce Fieldseeac2942006-12-13 00:35:39 -08001094 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001095 [OP_PUTROOTFH] = {
1096 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001097 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001098 .op_name = "OP_PUTROOTFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001099 },
1100 [OP_READ] = {
1101 .op_func = (nfsd4op_func)nfsd4_read,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001102 .op_name = "OP_READ",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001103 },
1104 [OP_READDIR] = {
1105 .op_func = (nfsd4op_func)nfsd4_readdir,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001106 .op_name = "OP_READDIR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001107 },
1108 [OP_READLINK] = {
1109 .op_func = (nfsd4op_func)nfsd4_readlink,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001110 .op_name = "OP_READLINK",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001111 },
1112 [OP_REMOVE] = {
1113 .op_func = (nfsd4op_func)nfsd4_remove,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001114 .op_name = "OP_REMOVE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001115 },
1116 [OP_RENAME] = {
Benny Halevyb001a1b2008-07-02 11:15:03 +03001117 .op_name = "OP_RENAME",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001118 .op_func = (nfsd4op_func)nfsd4_rename,
1119 },
1120 [OP_RENEW] = {
1121 .op_func = (nfsd4op_func)nfsd4_renew,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001122 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001123 .op_name = "OP_RENEW",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001124 },
1125 [OP_RESTOREFH] = {
1126 .op_func = (nfsd4op_func)nfsd4_restorefh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001127 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001128 .op_name = "OP_RESTOREFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001129 },
1130 [OP_SAVEFH] = {
1131 .op_func = (nfsd4op_func)nfsd4_savefh,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001132 .op_name = "OP_SAVEFH",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001133 },
Andy Adamsondcb488a32007-07-17 04:04:51 -07001134 [OP_SECINFO] = {
1135 .op_func = (nfsd4op_func)nfsd4_secinfo,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001136 .op_name = "OP_SECINFO",
Andy Adamsondcb488a32007-07-17 04:04:51 -07001137 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001138 [OP_SETATTR] = {
1139 .op_func = (nfsd4op_func)nfsd4_setattr,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001140 .op_name = "OP_SETATTR",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001141 },
1142 [OP_SETCLIENTID] = {
1143 .op_func = (nfsd4op_func)nfsd4_setclientid,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001144 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001145 .op_name = "OP_SETCLIENTID",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001146 },
1147 [OP_SETCLIENTID_CONFIRM] = {
1148 .op_func = (nfsd4op_func)nfsd4_setclientid_confirm,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001149 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001150 .op_name = "OP_SETCLIENTID_CONFIRM",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001151 },
1152 [OP_VERIFY] = {
1153 .op_func = (nfsd4op_func)nfsd4_verify,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001154 .op_name = "OP_VERIFY",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001155 },
1156 [OP_WRITE] = {
1157 .op_func = (nfsd4op_func)nfsd4_write,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001158 .op_name = "OP_WRITE",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001159 },
1160 [OP_RELEASE_LOCKOWNER] = {
1161 .op_func = (nfsd4op_func)nfsd4_release_lockowner,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001162 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
Benny Halevyb001a1b2008-07-02 11:15:03 +03001163 .op_name = "OP_RELEASE_LOCKOWNER",
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001164 },
Andy Adamson069b6ad2009-04-03 08:27:58 +03001165
1166 /* NFSv4.1 operations */
1167 [OP_EXCHANGE_ID] = {
1168 .op_func = (nfsd4op_func)nfsd4_exchange_id,
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001169 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001170 .op_name = "OP_EXCHANGE_ID",
1171 },
1172 [OP_CREATE_SESSION] = {
1173 .op_func = (nfsd4op_func)nfsd4_create_session,
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001174 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001175 .op_name = "OP_CREATE_SESSION",
1176 },
1177 [OP_DESTROY_SESSION] = {
1178 .op_func = (nfsd4op_func)nfsd4_destroy_session,
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001179 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001180 .op_name = "OP_DESTROY_SESSION",
1181 },
1182 [OP_SEQUENCE] = {
1183 .op_func = (nfsd4op_func)nfsd4_sequence,
Andy Adamsonf9bb94c42009-04-03 08:28:12 +03001184 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP,
Andy Adamson069b6ad2009-04-03 08:27:58 +03001185 .op_name = "OP_SEQUENCE",
1186 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001187};
1188
Adrian Bunkf1c7f792008-08-08 19:26:42 +03001189static const char *nfsd4_op_name(unsigned opnum)
Benny Halevyb001a1b2008-07-02 11:15:03 +03001190{
1191 if (opnum < ARRAY_SIZE(nfsd4_ops))
1192 return nfsd4_ops[opnum].op_name;
1193 return "unknown_operation";
1194}
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196#define nfs4svc_decode_voidargs NULL
1197#define nfs4svc_release_void NULL
1198#define nfsd4_voidres nfsd4_voidargs
1199#define nfs4svc_release_compound NULL
1200struct nfsd4_voidargs { int dummy; };
1201
1202#define PROC(name, argt, rest, relt, cache, respsize) \
1203 { (svc_procfunc) nfsd4_proc_##name, \
1204 (kxdrproc_t) nfs4svc_decode_##argt##args, \
1205 (kxdrproc_t) nfs4svc_encode_##rest##res, \
1206 (kxdrproc_t) nfs4svc_release_##relt, \
1207 sizeof(struct nfsd4_##argt##args), \
1208 sizeof(struct nfsd4_##rest##res), \
1209 0, \
1210 cache, \
1211 respsize, \
1212 }
1213
1214/*
1215 * TODO: At the present time, the NFSv4 server does not do XID caching
1216 * of requests. Implementing XID caching would not be a serious problem,
1217 * although it would require a mild change in interfaces since one
1218 * doesn't know whether an NFSv4 request is idempotent until after the
1219 * XDR decode. However, XID caching totally confuses pynfs (Peter
1220 * Astrand's regression testsuite for NFSv4 servers), which reuses
1221 * XID's liberally, so I've left it unimplemented until pynfs generates
1222 * better XID's.
1223 */
1224static struct svc_procedure nfsd_procedures4[2] = {
1225 PROC(null, void, void, void, RC_NOCACHE, 1),
NeilBrown7775f4c2006-04-10 22:55:20 -07001226 PROC(compound, compound, compound, compound, RC_NOCACHE, NFSD_BUFSIZE/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227};
1228
1229struct svc_version nfsd_version4 = {
1230 .vs_vers = 4,
1231 .vs_nproc = 2,
1232 .vs_proc = nfsd_procedures4,
1233 .vs_dispatch = nfsd_dispatch,
1234 .vs_xdrsize = NFS4_SVC_XDRSIZE,
1235};
1236
1237/*
1238 * Local variables:
1239 * c-basic-offset: 8
1240 * End:
1241 */