blob: a106e3be7c138670830d4ff88234f791907d8581 [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>
50
51#define NFSDDBG_FACILITY NFSDDBG_PROC
52
53static inline void
54fh_dup2(struct svc_fh *dst, struct svc_fh *src)
55{
56 fh_put(dst);
57 dget(src->fh_dentry);
58 if (src->fh_export)
59 cache_get(&src->fh_export->h);
60 *dst = *src;
61}
62
Al Virob37ad282006-10-19 23:28:59 -070063static __be32
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -070064do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Al Virob37ad282006-10-19 23:28:59 -070066 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 if (open->op_truncate &&
69 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
70 return nfserr_inval;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -070073 accmode |= MAY_READ;
J. Bruce Fields9801d8a2006-10-17 00:10:14 -070074 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 accmode |= (MAY_WRITE | MAY_TRUNC);
J. Bruce Fields9801d8a2006-10-17 00:10:14 -070076 if (open->op_share_deny & NFS4_SHARE_DENY_WRITE)
77 accmode |= MAY_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
80
81 return status;
82}
83
Al Virob37ad282006-10-19 23:28:59 -070084static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070085do_open_lookup(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
86{
87 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -070088 __be32 status;
J. Bruce Fields81ac95c2006-11-08 17:44:40 -080089 int created = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 fh_init(&resfh, NFS4_FHSIZE);
92 open->op_truncate = 0;
93
94 if (open->op_create) {
95 /*
96 * Note: create modes (UNCHECKED,GUARDED...) are the same
97 * in NFSv4 as in v3.
98 */
99 status = nfsd_create_v3(rqstp, current_fh, open->op_fname.data,
100 open->op_fname.len, &open->op_iattr,
101 &resfh, open->op_createmode,
J. Bruce Fields81ac95c2006-11-08 17:44:40 -0800102 (u32 *)open->op_verf.data, &open->op_truncate, &created);
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800103 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 status = nfsd_lookup(rqstp, current_fh,
105 open->op_fname.data, open->op_fname.len, &resfh);
106 fh_unlock(current_fh);
107 }
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800108 if (status)
109 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800111 set_change_info(&open->op_cinfo, current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800113 /* set reply cache */
114 fh_dup2(current_fh, &resfh);
115 open->op_stateowner->so_replay.rp_openfh_len = resfh.fh_handle.fh_size;
116 memcpy(open->op_stateowner->so_replay.rp_openfh,
117 &resfh.fh_handle.fh_base, resfh.fh_handle.fh_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
J. Bruce Fields81ac95c2006-11-08 17:44:40 -0800119 if (!created)
120 status = do_open_permission(rqstp, current_fh, open, MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
J. Bruce Fieldsaf858522006-11-08 17:44:39 -0800122out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 fh_put(&resfh);
124 return status;
125}
126
Al Virob37ad282006-10-19 23:28:59 -0700127static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128do_open_fhandle(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
129{
Al Virob37ad282006-10-19 23:28:59 -0700130 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* Only reclaims from previously confirmed clients are valid */
133 if ((status = nfs4_check_open_reclaim(&open->op_clientid)))
134 return status;
135
136 /* We don't know the target directory, and therefore can not
137 * set the change info
138 */
139
140 memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info));
141
142 /* set replay cache */
143 open->op_stateowner->so_replay.rp_openfh_len = current_fh->fh_handle.fh_size;
144 memcpy(open->op_stateowner->so_replay.rp_openfh,
145 &current_fh->fh_handle.fh_base,
146 current_fh->fh_handle.fh_size);
147
148 open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) &&
149 (open->op_iattr.ia_size == 0);
150
J. Bruce Fieldsdc730e12006-10-17 00:10:13 -0700151 status = do_open_permission(rqstp, current_fh, open, MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 return status;
154}
155
156
J.Bruce Fields71911552006-12-13 00:35:29 -0800157static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800158nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800159 struct nfsd4_open *open)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Al Virob37ad282006-10-19 23:28:59 -0700161 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 dprintk("NFSD: nfsd4_open filename %.*s op_stateowner %p\n",
163 (int)open->op_fname.len, open->op_fname.data,
164 open->op_stateowner);
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /* This check required by spec. */
167 if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL)
168 return nfserr_inval;
169
170 nfs4_lock_state();
171
172 /* check seqid for replay. set nfs4_owner */
173 status = nfsd4_process_open1(open);
Al Viroa90b0612006-10-19 23:29:03 -0700174 if (status == nfserr_replay_me) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 struct nfs4_replay *rp = &open->op_stateowner->so_replay;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800176 fh_put(&cstate->current_fh);
177 cstate->current_fh.fh_handle.fh_size = rp->rp_openfh_len;
178 memcpy(&cstate->current_fh.fh_handle.fh_base, rp->rp_openfh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 rp->rp_openfh_len);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800180 status = fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (status)
182 dprintk("nfsd4_open: replay failed"
183 " restoring previous filehandle\n");
184 else
Al Viroa90b0612006-10-19 23:29:03 -0700185 status = nfserr_replay_me;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187 if (status)
188 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800189
190 /* Openowner is now set, so sequence id will get bumped. Now we need
191 * these checks before we do any creates: */
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800192 status = nfserr_grace;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800193 if (nfs4_in_grace() && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800194 goto out;
195 status = nfserr_no_grace;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800196 if (!nfs4_in_grace() && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
J. Bruce Fieldscbd0d512006-02-07 12:58:32 -0800197 goto out;
J. Bruce Fieldsfb553c02006-01-18 17:43:36 -0800198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 switch (open->op_claim_type) {
NeilBrown0dd3c192005-06-23 22:02:56 -0700200 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
201 status = nfserr_inval;
202 if (open->op_create)
203 goto out;
204 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 case NFS4_OPEN_CLAIM_NULL:
206 /*
207 * (1) set CURRENT_FH to the file being opened,
208 * creating it if necessary, (2) set open->op_cinfo,
209 * (3) set open->op_truncate if the file is to be
210 * truncated after opening, (4) do permission checking.
211 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800212 status = do_open_lookup(rqstp, &cstate->current_fh,
213 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (status)
215 goto out;
216 break;
217 case NFS4_OPEN_CLAIM_PREVIOUS:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800218 open->op_stateowner->so_confirmed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /*
220 * The CURRENT_FH is already set to the file being
221 * opened. (1) set open->op_cinfo, (2) set
222 * open->op_truncate if the file is to be truncated
223 * after opening, (3) do permission checking.
224 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800225 status = do_open_fhandle(rqstp, &cstate->current_fh,
226 open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (status)
228 goto out;
229 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
J. Bruce Fieldsa5258252006-01-18 17:43:30 -0800231 open->op_stateowner->so_confirmed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 printk("NFSD: unsupported OPEN claim type %d\n",
233 open->op_claim_type);
234 status = nfserr_notsupp;
235 goto out;
236 default:
237 printk("NFSD: Invalid OPEN claim type %d\n",
238 open->op_claim_type);
239 status = nfserr_inval;
240 goto out;
241 }
242 /*
243 * nfsd4_process_open2() does the actual opening of the file. If
244 * successful, it (1) truncates the file if open->op_truncate was
245 * set, (2) sets open->op_stateid, (3) sets open->op_delegation.
246 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800247 status = nfsd4_process_open2(rqstp, &cstate->current_fh, open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248out:
Neil Brownf2327d92005-09-13 01:25:37 -0700249 if (open->op_stateowner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 nfs4_get_stateowner(open->op_stateowner);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800251 cstate->replay_owner = open->op_stateowner;
Neil Brownf2327d92005-09-13 01:25:37 -0700252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 nfs4_unlock_state();
254 return status;
255}
256
257/*
258 * filehandle-manipulating ops.
259 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800260static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800261nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
262 struct svc_fh **getfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800264 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return nfserr_nofilehandle;
266
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800267 *getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return nfs_ok;
269}
270
J.Bruce Fields71911552006-12-13 00:35:29 -0800271static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800272nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
273 struct nfsd4_putfh *putfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800275 fh_put(&cstate->current_fh);
276 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
277 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
278 putfh->pf_fhlen);
279 return fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
J.Bruce Fields71911552006-12-13 00:35:29 -0800282static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800283nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
284 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Al Virob37ad282006-10-19 23:28:59 -0700286 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800288 fh_put(&cstate->current_fh);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700289 status = exp_pseudoroot(rqstp, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return status;
291}
292
J.Bruce Fields71911552006-12-13 00:35:29 -0800293static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800294nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
295 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800297 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return nfserr_restorefh;
299
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800300 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return nfs_ok;
302}
303
J.Bruce Fields71911552006-12-13 00:35:29 -0800304static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800305nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
306 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800308 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return nfserr_nofilehandle;
310
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800311 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return nfs_ok;
313}
314
315/*
316 * misc nfsv4 ops
317 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800318static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800319nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
320 struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
323 return nfserr_inval;
324
325 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800326 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
327 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
J.Bruce Fields71911552006-12-13 00:35:29 -0800330static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800331nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
332 struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Al Virob37ad282006-10-19 23:28:59 -0700334 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 u32 *p = (u32 *)commit->co_verf.data;
337 *p++ = nfssvc_boot.tv_sec;
338 *p++ = nfssvc_boot.tv_usec;
339
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800340 status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
341 commit->co_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (status == nfserr_symlink)
343 status = nfserr_inval;
344 return status;
345}
346
Al Virob37ad282006-10-19 23:28:59 -0700347static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800348nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
349 struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700352 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 dev_t rdev;
354
355 fh_init(&resfh, NFS4_FHSIZE);
356
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800357 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (status == nfserr_symlink)
359 status = nfserr_notdir;
360 if (status)
361 return status;
362
363 switch (create->cr_type) {
364 case NF4LNK:
365 /* ugh! we have to null-terminate the linktext, or
366 * vfs_symlink() will choke. it is always safe to
367 * null-terminate by brute force, since at worst we
368 * will overwrite the first byte of the create namelen
369 * in the XDR buffer, which has already been extracted
370 * during XDR decode.
371 */
372 create->cr_linkname[create->cr_linklen] = 0;
373
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800374 status = nfsd_symlink(rqstp, &cstate->current_fh,
375 create->cr_name, create->cr_namelen,
376 create->cr_linkname, create->cr_linklen,
377 &resfh, &create->cr_iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 break;
379
380 case NF4BLK:
381 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
382 if (MAJOR(rdev) != create->cr_specdata1 ||
383 MINOR(rdev) != create->cr_specdata2)
384 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800385 status = nfsd_create(rqstp, &cstate->current_fh,
386 create->cr_name, create->cr_namelen,
387 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 break;
389
390 case NF4CHR:
391 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
392 if (MAJOR(rdev) != create->cr_specdata1 ||
393 MINOR(rdev) != create->cr_specdata2)
394 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800395 status = nfsd_create(rqstp, &cstate->current_fh,
396 create->cr_name, create->cr_namelen,
397 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 break;
399
400 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800401 status = nfsd_create(rqstp, &cstate->current_fh,
402 create->cr_name, create->cr_namelen,
403 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 break;
405
406 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800407 status = nfsd_create(rqstp, &cstate->current_fh,
408 create->cr_name, create->cr_namelen,
409 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 break;
411
412 case NF4DIR:
413 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800414 status = nfsd_create(rqstp, &cstate->current_fh,
415 create->cr_name, create->cr_namelen,
416 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 break;
418
419 default:
420 status = nfserr_badtype;
421 }
422
423 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800424 fh_unlock(&cstate->current_fh);
425 set_change_info(&create->cr_cinfo, &cstate->current_fh);
426 fh_dup2(&cstate->current_fh, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428
429 fh_put(&resfh);
430 return status;
431}
432
J.Bruce Fields71911552006-12-13 00:35:29 -0800433static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800434nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
435 struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Al Virob37ad282006-10-19 23:28:59 -0700437 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800439 status = fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (status)
441 return status;
442
443 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
444 return nfserr_inval;
445
446 getattr->ga_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
447 getattr->ga_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
448
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800449 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return nfs_ok;
451}
452
J.Bruce Fields71911552006-12-13 00:35:29 -0800453static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800454nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
455 struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Al Virob37ad282006-10-19 23:28:59 -0700457 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800459 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800461 status = nfsd_link(rqstp, &cstate->current_fh,
462 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800464 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return status;
466}
467
Al Virob37ad282006-10-19 23:28:59 -0700468static __be32
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800469nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
470 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700473 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 fh_init(&tmp_fh, NFS4_FHSIZE);
J. Bruce Fieldsdf547ef2007-07-17 04:04:43 -0700476 ret = exp_pseudoroot(rqstp, &tmp_fh);
477 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return ret;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800479 if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 fh_put(&tmp_fh);
481 return nfserr_noent;
482 }
483 fh_put(&tmp_fh);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800484 return nfsd_lookup(rqstp, &cstate->current_fh,
485 "..", 2, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486}
487
J.Bruce Fields71911552006-12-13 00:35:29 -0800488static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800489nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
490 struct nfsd4_lookup *lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800492 return nfsd_lookup(rqstp, &cstate->current_fh,
493 lookup->lo_name, lookup->lo_len,
494 &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
J.Bruce Fields71911552006-12-13 00:35:29 -0800497static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800498nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
499 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Al Virob37ad282006-10-19 23:28:59 -0700501 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 /* no need to check permission - this will be done in nfsd_read() */
504
NeilBrown7e06b7f2005-06-23 22:03:13 -0700505 read->rd_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (read->rd_offset >= OFFSET_MAX)
507 return nfserr_inval;
508
509 nfs4_lock_state();
510 /* check stateid */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800511 if ((status = nfs4_preprocess_stateid_op(&cstate->current_fh,
512 &read->rd_stateid,
NeilBrown7e06b7f2005-06-23 22:03:13 -0700513 CHECK_FH | RD_STATE, &read->rd_filp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
515 goto out;
516 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700517 if (read->rd_filp)
518 get_file(read->rd_filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 status = nfs_ok;
520out:
521 nfs4_unlock_state();
522 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800523 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return status;
525}
526
J.Bruce Fields71911552006-12-13 00:35:29 -0800527static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800528nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
529 struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 u64 cookie = readdir->rd_cookie;
532 static const nfs4_verifier zeroverf;
533
534 /* no need to check permission - this will be done in nfsd_readdir() */
535
536 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
537 return nfserr_inval;
538
539 readdir->rd_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
540 readdir->rd_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
541
542 if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) ||
543 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
544 return nfserr_bad_cookie;
545
546 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800547 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return nfs_ok;
549}
550
J.Bruce Fields71911552006-12-13 00:35:29 -0800551static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800552nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
553 struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
555 readlink->rl_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800556 readlink->rl_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return nfs_ok;
558}
559
J.Bruce Fields71911552006-12-13 00:35:29 -0800560static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800561nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
562 struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Al Virob37ad282006-10-19 23:28:59 -0700564 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
NeilBrownc815afc2005-06-23 22:03:00 -0700566 if (nfs4_in_grace())
567 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800568 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
569 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (status == nfserr_symlink)
571 return nfserr_notdir;
572 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800573 fh_unlock(&cstate->current_fh);
574 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 return status;
577}
578
J.Bruce Fields71911552006-12-13 00:35:29 -0800579static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800580nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
581 struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Al Virob37ad282006-10-19 23:28:59 -0700583 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800585 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800587 if (nfs4_in_grace() && !(cstate->save_fh.fh_export->ex_flags
NeilBrownc815afc2005-06-23 22:03:00 -0700588 & NFSEXP_NOSUBTREECHECK))
589 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800590 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
591 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 rename->rn_tname, rename->rn_tnamelen);
593
594 /* the underlying filesystem returns different error's than required
595 * by NFSv4. both save_fh and current_fh have been verified.. */
596 if (status == nfserr_isdir)
597 status = nfserr_exist;
598 else if ((status == nfserr_notdir) &&
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800599 (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) &&
600 S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 status = nfserr_exist;
602 else if (status == nfserr_symlink)
603 status = nfserr_notdir;
604
605 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800606 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
607 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609 return status;
610}
611
J.Bruce Fields71911552006-12-13 00:35:29 -0800612static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800613nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
614 struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Al Virob37ad282006-10-19 23:28:59 -0700616 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
619 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800620 status = nfs4_preprocess_stateid_op(&cstate->current_fh,
J. Bruce Fields375c5542006-01-18 17:43:33 -0800621 &setattr->sa_stateid, CHECK_FH | WR_STATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -0800623 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700624 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800625 return status;
626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628 status = nfs_ok;
629 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800630 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
631 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (status)
J. Bruce Fields375c5542006-01-18 17:43:33 -0800633 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800634 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 0, (time_t)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return status;
637}
638
J.Bruce Fields71911552006-12-13 00:35:29 -0800639static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800640nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
641 struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
643 stateid_t *stateid = &write->wr_stateid;
644 struct file *filp = NULL;
645 u32 *p;
Al Virob37ad282006-10-19 23:28:59 -0700646 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 /* no need to check permission - this will be done in nfsd_write() */
649
650 if (write->wr_offset >= OFFSET_MAX)
651 return nfserr_inval;
652
653 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800654 status = nfs4_preprocess_stateid_op(&cstate->current_fh, stateid,
J. Bruce Fields375c5542006-01-18 17:43:33 -0800655 CHECK_FH | WR_STATE, &filp);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700656 if (filp)
657 get_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 nfs4_unlock_state();
659
J. Bruce Fields375c5542006-01-18 17:43:33 -0800660 if (status) {
661 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
662 return status;
663 }
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 write->wr_bytes_written = write->wr_buflen;
666 write->wr_how_written = write->wr_stable_how;
667 p = (u32 *)write->wr_verifier.data;
668 *p++ = nfssvc_boot.tv_sec;
669 *p++ = nfssvc_boot.tv_usec;
670
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800671 status = nfsd_write(rqstp, &cstate->current_fh, filp,
672 write->wr_offset, rqstp->rq_vec, write->wr_vlen,
673 write->wr_buflen, &write->wr_how_written);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700674 if (filp)
675 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 if (status == nfserr_symlink)
678 status = nfserr_inval;
679 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
682/* This routine never returns NFS_OK! If there are no other errors, it
683 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
684 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
685 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
686 */
Al Virob37ad282006-10-19 23:28:59 -0700687static __be32
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800688_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800689 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Al Viro2ebbc012006-10-19 23:28:58 -0700691 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 int count;
Al Virob37ad282006-10-19 23:28:59 -0700693 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800695 status = fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (status)
697 return status;
698
699 if ((verify->ve_bmval[0] & ~NFSD_SUPPORTED_ATTRS_WORD0)
700 || (verify->ve_bmval[1] & ~NFSD_SUPPORTED_ATTRS_WORD1))
701 return nfserr_attrnotsupp;
702 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
703 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
704 return nfserr_inval;
705 if (verify->ve_attrlen & 3)
706 return nfserr_inval;
707
708 /* count in words:
709 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
710 */
711 count = 4 + (verify->ve_attrlen >> 2);
712 buf = kmalloc(count << 2, GFP_KERNEL);
713 if (!buf)
714 return nfserr_resource;
715
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800716 status = nfsd4_encode_fattr(&cstate->current_fh,
717 cstate->current_fh.fh_export,
718 cstate->current_fh.fh_dentry, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 &count, verify->ve_bmval,
720 rqstp);
721
722 /* this means that nfsd4_encode_fattr() ran out of space */
723 if (status == nfserr_resource && count == 0)
724 status = nfserr_not_same;
725 if (status)
726 goto out_kfree;
727
728 p = buf + 3;
729 status = nfserr_not_same;
730 if (ntohl(*p++) != verify->ve_attrlen)
731 goto out_kfree;
732 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
733 status = nfserr_same;
734
735out_kfree:
736 kfree(buf);
737 return status;
738}
739
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800740static __be32
741nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
742 struct nfsd4_verify *verify)
743{
744 __be32 status;
745
746 status = _nfsd4_verify(rqstp, cstate, verify);
747 return status == nfserr_not_same ? nfs_ok : status;
748}
749
750static __be32
751nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
752 struct nfsd4_verify *verify)
753{
754 __be32 status;
755
756 status = _nfsd4_verify(rqstp, cstate, verify);
757 return status == nfserr_same ? nfs_ok : status;
758}
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760/*
761 * NULL call.
762 */
Al Viro7111c662006-10-19 23:28:45 -0700763static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
765{
766 return nfs_ok;
767}
768
Shankar Anande2b20952006-07-10 04:45:44 -0700769static inline void nfsd4_increment_op_stats(u32 opnum)
770{
771 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
772 nfsdstats.nfs4_opcount[opnum]++;
773}
774
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800775static void cstate_free(struct nfsd4_compound_state *cstate)
776{
777 if (cstate == NULL)
778 return;
779 fh_put(&cstate->current_fh);
780 fh_put(&cstate->save_fh);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800781 BUG_ON(cstate->replay_owner);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800782 kfree(cstate);
783}
784
785static struct nfsd4_compound_state *cstate_alloc(void)
786{
787 struct nfsd4_compound_state *cstate;
788
789 cstate = kmalloc(sizeof(struct nfsd4_compound_state), GFP_KERNEL);
790 if (cstate == NULL)
791 return NULL;
792 fh_init(&cstate->current_fh, NFS4_FHSIZE);
793 fh_init(&cstate->save_fh, NFS4_FHSIZE);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800794 cstate->replay_owner = NULL;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800795 return cstate;
796}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800798typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *,
799 void *);
800
801struct nfsd4_operation {
802 nfsd4op_func op_func;
803 u32 op_flags;
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800804/* Most ops require a valid current filehandle; a few don't: */
805#define ALLOWED_WITHOUT_FH 1
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800806/* GETATTR and ops not listed as returning NFS4ERR_MOVED: */
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800807#define ALLOWED_ON_ABSENT_FS 2
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800808};
809
810static struct nfsd4_operation nfsd4_ops[];
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/*
813 * COMPOUND call.
814 */
Al Viro7111c662006-10-19 23:28:45 -0700815static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816nfsd4_proc_compound(struct svc_rqst *rqstp,
817 struct nfsd4_compoundargs *args,
818 struct nfsd4_compoundres *resp)
819{
820 struct nfsd4_op *op;
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800821 struct nfsd4_operation *opdesc;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800822 struct nfsd4_compound_state *cstate = NULL;
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800823 int slack_bytes;
Al Virob37ad282006-10-19 23:28:59 -0700824 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 status = nfserr_resource;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800827 cstate = cstate_alloc();
828 if (cstate == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 resp->xbuf = &rqstp->rq_res;
832 resp->p = rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len;
833 resp->tagp = resp->p;
834 /* reserve space for: taglen, tag, and opcnt */
835 resp->p += 2 + XDR_QUADLEN(args->taglen);
836 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
837 resp->taglen = args->taglen;
838 resp->tag = args->tag;
839 resp->opcnt = 0;
840 resp->rqstp = rqstp;
841
842 /*
843 * According to RFC3010, this takes precedence over all other errors.
844 */
845 status = nfserr_minor_vers_mismatch;
846 if (args->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
847 goto out;
848
849 status = nfs_ok;
850 while (!status && resp->opcnt < args->opcnt) {
851 op = &args->ops[resp->opcnt++];
852
J. Bruce Fieldsfd445272006-01-18 17:43:23 -0800853 dprintk("nfsv4 compound op #%d: %d\n", resp->opcnt, op->opnum);
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /*
856 * The XDR decode routines may have pre-set op->status;
857 * for example, if there is a miscellaneous XDR error
858 * it will be set to nfserr_bad_xdr.
859 */
860 if (op->status)
861 goto encode_op;
862
863 /* We must be able to encode a successful response to
864 * this operation, with enough room left over to encode a
865 * failed response to the next operation. If we don't
866 * have enough room, fail with ERR_RESOURCE.
867 */
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800868 slack_bytes = (char *)resp->end - (char *)resp->p;
869 if (slack_bytes < COMPOUND_SLACK_SPACE
870 + COMPOUND_ERR_SLACK_SPACE) {
871 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 op->status = nfserr_resource;
873 goto encode_op;
874 }
875
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800876 opdesc = &nfsd4_ops[op->opnum];
877
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800878 if (!cstate->current_fh.fh_dentry) {
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800879 if (!(opdesc->op_flags & ALLOWED_WITHOUT_FH)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700880 op->status = nfserr_nofilehandle;
881 goto encode_op;
882 }
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800883 } else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
884 !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700885 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto encode_op;
887 }
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800888
889 if (opdesc->op_func)
890 op->status = opdesc->op_func(rqstp, cstate, &op->u);
891 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 BUG_ON(op->status == nfs_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894encode_op:
Al Viroa90b0612006-10-19 23:29:03 -0700895 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800896 op->replay = &cstate->replay_owner->so_replay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 nfsd4_encode_replay(resp, op);
898 status = op->status = op->replay->rp_status;
899 } else {
900 nfsd4_encode_operation(resp, op);
901 status = op->status;
902 }
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800903 if (cstate->replay_owner) {
904 nfs4_put_stateowner(cstate->replay_owner);
905 cstate->replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700907 /* XXX Ugh, we need to get rid of this kind of special case: */
908 if (op->opnum == OP_READ && op->u.read.rd_filp)
909 fput(op->u.read.rd_filp);
Shankar Anande2b20952006-07-10 04:45:44 -0700910
911 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913
914out:
915 nfsd4_release_compoundargs(args);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800916 cstate_free(cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return status;
918}
919
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800920static struct nfsd4_operation nfsd4_ops[OP_RELEASE_LOCKOWNER+1] = {
921 [OP_ACCESS] = {
922 .op_func = (nfsd4op_func)nfsd4_access,
923 },
924 [OP_CLOSE] = {
925 .op_func = (nfsd4op_func)nfsd4_close,
926 },
927 [OP_COMMIT] = {
928 .op_func = (nfsd4op_func)nfsd4_commit,
929 },
930 [OP_CREATE] = {
931 .op_func = (nfsd4op_func)nfsd4_create,
932 },
933 [OP_DELEGRETURN] = {
934 .op_func = (nfsd4op_func)nfsd4_delegreturn,
935 },
936 [OP_GETATTR] = {
937 .op_func = (nfsd4op_func)nfsd4_getattr,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800938 .op_flags = ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800939 },
940 [OP_GETFH] = {
941 .op_func = (nfsd4op_func)nfsd4_getfh,
942 },
943 [OP_LINK] = {
944 .op_func = (nfsd4op_func)nfsd4_link,
945 },
946 [OP_LOCK] = {
947 .op_func = (nfsd4op_func)nfsd4_lock,
948 },
949 [OP_LOCKT] = {
950 .op_func = (nfsd4op_func)nfsd4_lockt,
951 },
952 [OP_LOCKU] = {
953 .op_func = (nfsd4op_func)nfsd4_locku,
954 },
955 [OP_LOOKUP] = {
956 .op_func = (nfsd4op_func)nfsd4_lookup,
957 },
958 [OP_LOOKUPP] = {
959 .op_func = (nfsd4op_func)nfsd4_lookupp,
960 },
961 [OP_NVERIFY] = {
962 .op_func = (nfsd4op_func)nfsd4_nverify,
963 },
964 [OP_OPEN] = {
965 .op_func = (nfsd4op_func)nfsd4_open,
966 },
967 [OP_OPEN_CONFIRM] = {
968 .op_func = (nfsd4op_func)nfsd4_open_confirm,
969 },
970 [OP_OPEN_DOWNGRADE] = {
971 .op_func = (nfsd4op_func)nfsd4_open_downgrade,
972 },
973 [OP_PUTFH] = {
974 .op_func = (nfsd4op_func)nfsd4_putfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800975 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800976 },
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800977 [OP_PUTPUBFH] = {
978 /* unsupported; just for future reference: */
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800979 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldseeac2942006-12-13 00:35:39 -0800980 },
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800981 [OP_PUTROOTFH] = {
982 .op_func = (nfsd4op_func)nfsd4_putrootfh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -0800983 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -0800984 },
985 [OP_READ] = {
986 .op_func = (nfsd4op_func)nfsd4_read,
987 },
988 [OP_READDIR] = {
989 .op_func = (nfsd4op_func)nfsd4_readdir,
990 },
991 [OP_READLINK] = {
992 .op_func = (nfsd4op_func)nfsd4_readlink,
993 },
994 [OP_REMOVE] = {
995 .op_func = (nfsd4op_func)nfsd4_remove,
996 },
997 [OP_RENAME] = {
998 .op_func = (nfsd4op_func)nfsd4_rename,
999 },
1000 [OP_RENEW] = {
1001 .op_func = (nfsd4op_func)nfsd4_renew,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001002 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001003 },
1004 [OP_RESTOREFH] = {
1005 .op_func = (nfsd4op_func)nfsd4_restorefh,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001006 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001007 },
1008 [OP_SAVEFH] = {
1009 .op_func = (nfsd4op_func)nfsd4_savefh,
1010 },
1011 [OP_SETATTR] = {
1012 .op_func = (nfsd4op_func)nfsd4_setattr,
1013 },
1014 [OP_SETCLIENTID] = {
1015 .op_func = (nfsd4op_func)nfsd4_setclientid,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001016 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001017 },
1018 [OP_SETCLIENTID_CONFIRM] = {
1019 .op_func = (nfsd4op_func)nfsd4_setclientid_confirm,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001020 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001021 },
1022 [OP_VERIFY] = {
1023 .op_func = (nfsd4op_func)nfsd4_verify,
1024 },
1025 [OP_WRITE] = {
1026 .op_func = (nfsd4op_func)nfsd4_write,
1027 },
1028 [OP_RELEASE_LOCKOWNER] = {
1029 .op_func = (nfsd4op_func)nfsd4_release_lockowner,
J.Bruce Fields27d630e2006-12-13 00:35:43 -08001030 .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS,
J.Bruce Fieldsb5914802006-12-13 00:35:38 -08001031 },
1032};
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034#define nfs4svc_decode_voidargs NULL
1035#define nfs4svc_release_void NULL
1036#define nfsd4_voidres nfsd4_voidargs
1037#define nfs4svc_release_compound NULL
1038struct nfsd4_voidargs { int dummy; };
1039
1040#define PROC(name, argt, rest, relt, cache, respsize) \
1041 { (svc_procfunc) nfsd4_proc_##name, \
1042 (kxdrproc_t) nfs4svc_decode_##argt##args, \
1043 (kxdrproc_t) nfs4svc_encode_##rest##res, \
1044 (kxdrproc_t) nfs4svc_release_##relt, \
1045 sizeof(struct nfsd4_##argt##args), \
1046 sizeof(struct nfsd4_##rest##res), \
1047 0, \
1048 cache, \
1049 respsize, \
1050 }
1051
1052/*
1053 * TODO: At the present time, the NFSv4 server does not do XID caching
1054 * of requests. Implementing XID caching would not be a serious problem,
1055 * although it would require a mild change in interfaces since one
1056 * doesn't know whether an NFSv4 request is idempotent until after the
1057 * XDR decode. However, XID caching totally confuses pynfs (Peter
1058 * Astrand's regression testsuite for NFSv4 servers), which reuses
1059 * XID's liberally, so I've left it unimplemented until pynfs generates
1060 * better XID's.
1061 */
1062static struct svc_procedure nfsd_procedures4[2] = {
1063 PROC(null, void, void, void, RC_NOCACHE, 1),
NeilBrown7775f4c2006-04-10 22:55:20 -07001064 PROC(compound, compound, compound, compound, RC_NOCACHE, NFSD_BUFSIZE/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065};
1066
1067struct svc_version nfsd_version4 = {
1068 .vs_vers = 4,
1069 .vs_nproc = 2,
1070 .vs_proc = nfsd_procedures4,
1071 .vs_dispatch = nfsd_dispatch,
1072 .vs_xdrsize = NFS4_SVC_XDRSIZE,
1073};
1074
1075/*
1076 * Local variables:
1077 * c-basic-offset: 8
1078 * End:
1079 */