blob: 9fcf46a7d95d83bf06b37238dedc8f6122f7ce78 [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 Fieldsca364312006-12-13 00:35:27 -0800261nfsd4_getfh(struct nfsd4_compound_state *cstate, struct svc_fh **getfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800263 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return nfserr_nofilehandle;
265
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800266 *getfh = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return nfs_ok;
268}
269
J.Bruce Fields71911552006-12-13 00:35:29 -0800270static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800271nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
272 struct nfsd4_putfh *putfh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800274 fh_put(&cstate->current_fh);
275 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
276 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
277 putfh->pf_fhlen);
278 return fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
J.Bruce Fields71911552006-12-13 00:35:29 -0800281static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800282nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Al Virob37ad282006-10-19 23:28:59 -0700284 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800286 fh_put(&cstate->current_fh);
287 status = exp_pseudoroot(rqstp->rq_client, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 &rqstp->rq_chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return status;
290}
291
J.Bruce Fields71911552006-12-13 00:35:29 -0800292static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800293nfsd4_restorefh(struct nfsd4_compound_state *cstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800295 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return nfserr_restorefh;
297
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800298 fh_dup2(&cstate->current_fh, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return nfs_ok;
300}
301
J.Bruce Fields71911552006-12-13 00:35:29 -0800302static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800303nfsd4_savefh(struct nfsd4_compound_state *cstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800305 if (!cstate->current_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return nfserr_nofilehandle;
307
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800308 fh_dup2(&cstate->save_fh, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return nfs_ok;
310}
311
312/*
313 * misc nfsv4 ops
314 */
J.Bruce Fields71911552006-12-13 00:35:29 -0800315static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800316nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
317 struct nfsd4_access *access)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
320 return nfserr_inval;
321
322 access->ac_resp_access = access->ac_req_access;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800323 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
324 &access->ac_supported);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
J.Bruce Fields71911552006-12-13 00:35:29 -0800327static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800328nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
329 struct nfsd4_commit *commit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Al Virob37ad282006-10-19 23:28:59 -0700331 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 u32 *p = (u32 *)commit->co_verf.data;
334 *p++ = nfssvc_boot.tv_sec;
335 *p++ = nfssvc_boot.tv_usec;
336
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800337 status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
338 commit->co_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (status == nfserr_symlink)
340 status = nfserr_inval;
341 return status;
342}
343
Al Virob37ad282006-10-19 23:28:59 -0700344static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800345nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
346 struct nfsd4_create *create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct svc_fh resfh;
Al Virob37ad282006-10-19 23:28:59 -0700349 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 dev_t rdev;
351
352 fh_init(&resfh, NFS4_FHSIZE);
353
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800354 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (status == nfserr_symlink)
356 status = nfserr_notdir;
357 if (status)
358 return status;
359
360 switch (create->cr_type) {
361 case NF4LNK:
362 /* ugh! we have to null-terminate the linktext, or
363 * vfs_symlink() will choke. it is always safe to
364 * null-terminate by brute force, since at worst we
365 * will overwrite the first byte of the create namelen
366 * in the XDR buffer, which has already been extracted
367 * during XDR decode.
368 */
369 create->cr_linkname[create->cr_linklen] = 0;
370
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800371 status = nfsd_symlink(rqstp, &cstate->current_fh,
372 create->cr_name, create->cr_namelen,
373 create->cr_linkname, create->cr_linklen,
374 &resfh, &create->cr_iattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 break;
376
377 case NF4BLK:
378 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
379 if (MAJOR(rdev) != create->cr_specdata1 ||
380 MINOR(rdev) != create->cr_specdata2)
381 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800382 status = nfsd_create(rqstp, &cstate->current_fh,
383 create->cr_name, create->cr_namelen,
384 &create->cr_iattr, S_IFBLK, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 break;
386
387 case NF4CHR:
388 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
389 if (MAJOR(rdev) != create->cr_specdata1 ||
390 MINOR(rdev) != create->cr_specdata2)
391 return nfserr_inval;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800392 status = nfsd_create(rqstp, &cstate->current_fh,
393 create->cr_name, create->cr_namelen,
394 &create->cr_iattr,S_IFCHR, rdev, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 break;
396
397 case NF4SOCK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800398 status = nfsd_create(rqstp, &cstate->current_fh,
399 create->cr_name, create->cr_namelen,
400 &create->cr_iattr, S_IFSOCK, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 break;
402
403 case NF4FIFO:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800404 status = nfsd_create(rqstp, &cstate->current_fh,
405 create->cr_name, create->cr_namelen,
406 &create->cr_iattr, S_IFIFO, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
408
409 case NF4DIR:
410 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800411 status = nfsd_create(rqstp, &cstate->current_fh,
412 create->cr_name, create->cr_namelen,
413 &create->cr_iattr, S_IFDIR, 0, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 break;
415
416 default:
417 status = nfserr_badtype;
418 }
419
420 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800421 fh_unlock(&cstate->current_fh);
422 set_change_info(&create->cr_cinfo, &cstate->current_fh);
423 fh_dup2(&cstate->current_fh, &resfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
426 fh_put(&resfh);
427 return status;
428}
429
J.Bruce Fields71911552006-12-13 00:35:29 -0800430static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800431nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
432 struct nfsd4_getattr *getattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Al Virob37ad282006-10-19 23:28:59 -0700434 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800436 status = fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (status)
438 return status;
439
440 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
441 return nfserr_inval;
442
443 getattr->ga_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
444 getattr->ga_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
445
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800446 getattr->ga_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return nfs_ok;
448}
449
J.Bruce Fields71911552006-12-13 00:35:29 -0800450static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800451nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
452 struct nfsd4_link *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Al Virob37ad282006-10-19 23:28:59 -0700454 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800456 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800458 status = nfsd_link(rqstp, &cstate->current_fh,
459 link->li_name, link->li_namelen, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (!status)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800461 set_change_info(&link->li_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return status;
463}
464
Al Virob37ad282006-10-19 23:28:59 -0700465static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800466nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct svc_fh tmp_fh;
Al Virob37ad282006-10-19 23:28:59 -0700469 __be32 ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 fh_init(&tmp_fh, NFS4_FHSIZE);
472 if((ret = exp_pseudoroot(rqstp->rq_client, &tmp_fh,
473 &rqstp->rq_chandle)) != 0)
474 return ret;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800475 if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 fh_put(&tmp_fh);
477 return nfserr_noent;
478 }
479 fh_put(&tmp_fh);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800480 return nfsd_lookup(rqstp, &cstate->current_fh,
481 "..", 2, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
J.Bruce Fields71911552006-12-13 00:35:29 -0800484static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800485nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
486 struct nfsd4_lookup *lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800488 return nfsd_lookup(rqstp, &cstate->current_fh,
489 lookup->lo_name, lookup->lo_len,
490 &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_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
495 struct nfsd4_read *read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Al Virob37ad282006-10-19 23:28:59 -0700497 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 /* no need to check permission - this will be done in nfsd_read() */
500
NeilBrown7e06b7f2005-06-23 22:03:13 -0700501 read->rd_filp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (read->rd_offset >= OFFSET_MAX)
503 return nfserr_inval;
504
505 nfs4_lock_state();
506 /* check stateid */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800507 if ((status = nfs4_preprocess_stateid_op(&cstate->current_fh,
508 &read->rd_stateid,
NeilBrown7e06b7f2005-06-23 22:03:13 -0700509 CHECK_FH | RD_STATE, &read->rd_filp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
511 goto out;
512 }
NeilBrown7e06b7f2005-06-23 22:03:13 -0700513 if (read->rd_filp)
514 get_file(read->rd_filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 status = nfs_ok;
516out:
517 nfs4_unlock_state();
518 read->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800519 read->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return status;
521}
522
J.Bruce Fields71911552006-12-13 00:35:29 -0800523static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800524nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
525 struct nfsd4_readdir *readdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
527 u64 cookie = readdir->rd_cookie;
528 static const nfs4_verifier zeroverf;
529
530 /* no need to check permission - this will be done in nfsd_readdir() */
531
532 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
533 return nfserr_inval;
534
535 readdir->rd_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
536 readdir->rd_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
537
538 if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) ||
539 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
540 return nfserr_bad_cookie;
541
542 readdir->rd_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800543 readdir->rd_fhp = &cstate->current_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 return nfs_ok;
545}
546
J.Bruce Fields71911552006-12-13 00:35:29 -0800547static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800548nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
549 struct nfsd4_readlink *readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 readlink->rl_rqstp = rqstp;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800552 readlink->rl_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_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
558 struct nfsd4_remove *remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Al Virob37ad282006-10-19 23:28:59 -0700560 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
NeilBrownc815afc2005-06-23 22:03:00 -0700562 if (nfs4_in_grace())
563 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800564 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
565 remove->rm_name, remove->rm_namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (status == nfserr_symlink)
567 return nfserr_notdir;
568 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800569 fh_unlock(&cstate->current_fh);
570 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572 return status;
573}
574
J.Bruce Fields71911552006-12-13 00:35:29 -0800575static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800576nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
577 struct nfsd4_rename *rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Al Virob37ad282006-10-19 23:28:59 -0700579 __be32 status = nfserr_nofilehandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800581 if (!cstate->save_fh.fh_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800583 if (nfs4_in_grace() && !(cstate->save_fh.fh_export->ex_flags
NeilBrownc815afc2005-06-23 22:03:00 -0700584 & NFSEXP_NOSUBTREECHECK))
585 return nfserr_grace;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800586 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
587 rename->rn_snamelen, &cstate->current_fh,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 rename->rn_tname, rename->rn_tnamelen);
589
590 /* the underlying filesystem returns different error's than required
591 * by NFSv4. both save_fh and current_fh have been verified.. */
592 if (status == nfserr_isdir)
593 status = nfserr_exist;
594 else if ((status == nfserr_notdir) &&
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800595 (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) &&
596 S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 status = nfserr_exist;
598 else if (status == nfserr_symlink)
599 status = nfserr_notdir;
600
601 if (!status) {
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800602 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
603 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 return status;
606}
607
J.Bruce Fields71911552006-12-13 00:35:29 -0800608static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800609nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
610 struct nfsd4_setattr *setattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Al Virob37ad282006-10-19 23:28:59 -0700612 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
615 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800616 status = nfs4_preprocess_stateid_op(&cstate->current_fh,
J. Bruce Fields375c5542006-01-18 17:43:33 -0800617 &setattr->sa_stateid, CHECK_FH | WR_STATE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 nfs4_unlock_state();
J. Bruce Fields375c5542006-01-18 17:43:33 -0800619 if (status) {
Greg Banks3e3b4802006-10-02 02:17:41 -0700620 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
J. Bruce Fields375c5542006-01-18 17:43:33 -0800621 return status;
622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624 status = nfs_ok;
625 if (setattr->sa_acl != NULL)
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800626 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
627 setattr->sa_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (status)
J. Bruce Fields375c5542006-01-18 17:43:33 -0800629 return status;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800630 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 0, (time_t)0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return status;
633}
634
J.Bruce Fields71911552006-12-13 00:35:29 -0800635static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800636nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
637 struct nfsd4_write *write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 stateid_t *stateid = &write->wr_stateid;
640 struct file *filp = NULL;
641 u32 *p;
Al Virob37ad282006-10-19 23:28:59 -0700642 __be32 status = nfs_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 /* no need to check permission - this will be done in nfsd_write() */
645
646 if (write->wr_offset >= OFFSET_MAX)
647 return nfserr_inval;
648
649 nfs4_lock_state();
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800650 status = nfs4_preprocess_stateid_op(&cstate->current_fh, stateid,
J. Bruce Fields375c5542006-01-18 17:43:33 -0800651 CHECK_FH | WR_STATE, &filp);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700652 if (filp)
653 get_file(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 nfs4_unlock_state();
655
J. Bruce Fields375c5542006-01-18 17:43:33 -0800656 if (status) {
657 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
658 return status;
659 }
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 write->wr_bytes_written = write->wr_buflen;
662 write->wr_how_written = write->wr_stable_how;
663 p = (u32 *)write->wr_verifier.data;
664 *p++ = nfssvc_boot.tv_sec;
665 *p++ = nfssvc_boot.tv_usec;
666
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800667 status = nfsd_write(rqstp, &cstate->current_fh, filp,
668 write->wr_offset, rqstp->rq_vec, write->wr_vlen,
669 write->wr_buflen, &write->wr_how_written);
NeilBrown7e06b7f2005-06-23 22:03:13 -0700670 if (filp)
671 fput(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 if (status == nfserr_symlink)
674 status = nfserr_inval;
675 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678/* This routine never returns NFS_OK! If there are no other errors, it
679 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
680 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
681 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
682 */
Al Virob37ad282006-10-19 23:28:59 -0700683static __be32
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800684nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
685 struct nfsd4_verify *verify)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Al Viro2ebbc012006-10-19 23:28:58 -0700687 __be32 *buf, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 int count;
Al Virob37ad282006-10-19 23:28:59 -0700689 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800691 status = fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (status)
693 return status;
694
695 if ((verify->ve_bmval[0] & ~NFSD_SUPPORTED_ATTRS_WORD0)
696 || (verify->ve_bmval[1] & ~NFSD_SUPPORTED_ATTRS_WORD1))
697 return nfserr_attrnotsupp;
698 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
699 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
700 return nfserr_inval;
701 if (verify->ve_attrlen & 3)
702 return nfserr_inval;
703
704 /* count in words:
705 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
706 */
707 count = 4 + (verify->ve_attrlen >> 2);
708 buf = kmalloc(count << 2, GFP_KERNEL);
709 if (!buf)
710 return nfserr_resource;
711
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800712 status = nfsd4_encode_fattr(&cstate->current_fh,
713 cstate->current_fh.fh_export,
714 cstate->current_fh.fh_dentry, buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 &count, verify->ve_bmval,
716 rqstp);
717
718 /* this means that nfsd4_encode_fattr() ran out of space */
719 if (status == nfserr_resource && count == 0)
720 status = nfserr_not_same;
721 if (status)
722 goto out_kfree;
723
724 p = buf + 3;
725 status = nfserr_not_same;
726 if (ntohl(*p++) != verify->ve_attrlen)
727 goto out_kfree;
728 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
729 status = nfserr_same;
730
731out_kfree:
732 kfree(buf);
733 return status;
734}
735
736/*
737 * NULL call.
738 */
Al Viro7111c662006-10-19 23:28:45 -0700739static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
741{
742 return nfs_ok;
743}
744
Shankar Anande2b20952006-07-10 04:45:44 -0700745static inline void nfsd4_increment_op_stats(u32 opnum)
746{
747 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
748 nfsdstats.nfs4_opcount[opnum]++;
749}
750
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800751static void cstate_free(struct nfsd4_compound_state *cstate)
752{
753 if (cstate == NULL)
754 return;
755 fh_put(&cstate->current_fh);
756 fh_put(&cstate->save_fh);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800757 BUG_ON(cstate->replay_owner);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800758 kfree(cstate);
759}
760
761static struct nfsd4_compound_state *cstate_alloc(void)
762{
763 struct nfsd4_compound_state *cstate;
764
765 cstate = kmalloc(sizeof(struct nfsd4_compound_state), GFP_KERNEL);
766 if (cstate == NULL)
767 return NULL;
768 fh_init(&cstate->current_fh, NFS4_FHSIZE);
769 fh_init(&cstate->save_fh, NFS4_FHSIZE);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800770 cstate->replay_owner = NULL;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800771 return cstate;
772}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774/*
775 * COMPOUND call.
776 */
Al Viro7111c662006-10-19 23:28:45 -0700777static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778nfsd4_proc_compound(struct svc_rqst *rqstp,
779 struct nfsd4_compoundargs *args,
780 struct nfsd4_compoundres *resp)
781{
782 struct nfsd4_op *op;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800783 struct nfsd4_compound_state *cstate = NULL;
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800784 int slack_bytes;
Al Virob37ad282006-10-19 23:28:59 -0700785 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 status = nfserr_resource;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800788 cstate = cstate_alloc();
789 if (cstate == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 resp->xbuf = &rqstp->rq_res;
793 resp->p = rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len;
794 resp->tagp = resp->p;
795 /* reserve space for: taglen, tag, and opcnt */
796 resp->p += 2 + XDR_QUADLEN(args->taglen);
797 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
798 resp->taglen = args->taglen;
799 resp->tag = args->tag;
800 resp->opcnt = 0;
801 resp->rqstp = rqstp;
802
803 /*
804 * According to RFC3010, this takes precedence over all other errors.
805 */
806 status = nfserr_minor_vers_mismatch;
807 if (args->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
808 goto out;
809
810 status = nfs_ok;
811 while (!status && resp->opcnt < args->opcnt) {
812 op = &args->ops[resp->opcnt++];
813
J. Bruce Fieldsfd445272006-01-18 17:43:23 -0800814 dprintk("nfsv4 compound op #%d: %d\n", resp->opcnt, op->opnum);
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /*
817 * The XDR decode routines may have pre-set op->status;
818 * for example, if there is a miscellaneous XDR error
819 * it will be set to nfserr_bad_xdr.
820 */
821 if (op->status)
822 goto encode_op;
823
824 /* We must be able to encode a successful response to
825 * this operation, with enough room left over to encode a
826 * failed response to the next operation. If we don't
827 * have enough room, fail with ERR_RESOURCE.
828 */
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800829 slack_bytes = (char *)resp->end - (char *)resp->p;
830 if (slack_bytes < COMPOUND_SLACK_SPACE
831 + COMPOUND_ERR_SLACK_SPACE) {
832 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 op->status = nfserr_resource;
834 goto encode_op;
835 }
836
837 /* All operations except RENEW, SETCLIENTID, RESTOREFH
838 * SETCLIENTID_CONFIRM, PUTFH and PUTROOTFH
839 * require a valid current filehandle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800841 if (!cstate->current_fh.fh_dentry) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700842 if (!((op->opnum == OP_PUTFH) ||
843 (op->opnum == OP_PUTROOTFH) ||
844 (op->opnum == OP_SETCLIENTID) ||
845 (op->opnum == OP_SETCLIENTID_CONFIRM) ||
846 (op->opnum == OP_RENEW) ||
847 (op->opnum == OP_RESTOREFH) ||
848 (op->opnum == OP_RELEASE_LOCKOWNER))) {
849 op->status = nfserr_nofilehandle;
850 goto encode_op;
851 }
852 }
853 /* Check must be done at start of each operation, except
854 * for GETATTR and ops not listed as returning NFS4ERR_MOVED
855 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800856 else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700857 !((op->opnum == OP_GETATTR) ||
858 (op->opnum == OP_PUTROOTFH) ||
859 (op->opnum == OP_PUTPUBFH) ||
860 (op->opnum == OP_RENEW) ||
861 (op->opnum == OP_SETCLIENTID) ||
862 (op->opnum == OP_RELEASE_LOCKOWNER))) {
863 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 goto encode_op;
865 }
866 switch (op->opnum) {
867 case OP_ACCESS:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800868 op->status = nfsd4_access(rqstp, cstate,
869 &op->u.access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 break;
871 case OP_CLOSE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800872 op->status = nfsd4_close(rqstp, cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800873 &op->u.close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 break;
875 case OP_COMMIT:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800876 op->status = nfsd4_commit(rqstp, cstate,
877 &op->u.commit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 break;
879 case OP_CREATE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800880 op->status = nfsd4_create(rqstp, cstate,
881 &op->u.create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 break;
883 case OP_DELEGRETURN:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800884 op->status = nfsd4_delegreturn(rqstp, cstate,
885 &op->u.delegreturn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 break;
887 case OP_GETATTR:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800888 op->status = nfsd4_getattr(rqstp, cstate,
889 &op->u.getattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 break;
891 case OP_GETFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800892 op->status = nfsd4_getfh(cstate, &op->u.getfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 break;
894 case OP_LINK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800895 op->status = nfsd4_link(rqstp, cstate, &op->u.link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 break;
897 case OP_LOCK:
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800898 op->status = nfsd4_lock(rqstp, cstate, &op->u.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 break;
900 case OP_LOCKT:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800901 op->status = nfsd4_lockt(rqstp, cstate, &op->u.lockt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 break;
903 case OP_LOCKU:
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800904 op->status = nfsd4_locku(rqstp, cstate, &op->u.locku);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 break;
906 case OP_LOOKUP:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800907 op->status = nfsd4_lookup(rqstp, cstate,
908 &op->u.lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 break;
910 case OP_LOOKUPP:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800911 op->status = nfsd4_lookupp(rqstp, cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 break;
913 case OP_NVERIFY:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800914 op->status = nfsd4_verify(rqstp, cstate,
915 &op->u.nverify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (op->status == nfserr_not_same)
917 op->status = nfs_ok;
918 break;
919 case OP_OPEN:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800920 op->status = nfsd4_open(rqstp, cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800921 &op->u.open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 break;
923 case OP_OPEN_CONFIRM:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800924 op->status = nfsd4_open_confirm(rqstp, cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800925 &op->u.open_confirm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 break;
927 case OP_OPEN_DOWNGRADE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800928 op->status = nfsd4_open_downgrade(rqstp, cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800929 &op->u.open_downgrade);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 break;
931 case OP_PUTFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800932 op->status = nfsd4_putfh(rqstp, cstate, &op->u.putfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 break;
934 case OP_PUTROOTFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800935 op->status = nfsd4_putrootfh(rqstp, cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 break;
937 case OP_READ:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800938 op->status = nfsd4_read(rqstp, cstate, &op->u.read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 break;
940 case OP_READDIR:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800941 op->status = nfsd4_readdir(rqstp, cstate,
942 &op->u.readdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 break;
944 case OP_READLINK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800945 op->status = nfsd4_readlink(rqstp, cstate,
946 &op->u.readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 break;
948 case OP_REMOVE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800949 op->status = nfsd4_remove(rqstp, cstate,
950 &op->u.remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 break;
952 case OP_RENAME:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800953 op->status = nfsd4_rename(rqstp, cstate,
954 &op->u.rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 break;
956 case OP_RENEW:
957 op->status = nfsd4_renew(&op->u.renew);
958 break;
959 case OP_RESTOREFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800960 op->status = nfsd4_restorefh(cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 break;
962 case OP_SAVEFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800963 op->status = nfsd4_savefh(cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 break;
965 case OP_SETATTR:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800966 op->status = nfsd4_setattr(rqstp, cstate,
967 &op->u.setattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 break;
969 case OP_SETCLIENTID:
970 op->status = nfsd4_setclientid(rqstp, &op->u.setclientid);
971 break;
972 case OP_SETCLIENTID_CONFIRM:
973 op->status = nfsd4_setclientid_confirm(rqstp, &op->u.setclientid_confirm);
974 break;
975 case OP_VERIFY:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800976 op->status = nfsd4_verify(rqstp, cstate,
977 &op->u.verify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (op->status == nfserr_same)
979 op->status = nfs_ok;
980 break;
981 case OP_WRITE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800982 op->status = nfsd4_write(rqstp, cstate, &op->u.write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 break;
984 case OP_RELEASE_LOCKOWNER:
985 op->status = nfsd4_release_lockowner(rqstp, &op->u.release_lockowner);
986 break;
987 default:
988 BUG_ON(op->status == nfs_ok);
989 break;
990 }
991
992encode_op:
Al Viroa90b0612006-10-19 23:29:03 -0700993 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800994 op->replay = &cstate->replay_owner->so_replay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 nfsd4_encode_replay(resp, op);
996 status = op->status = op->replay->rp_status;
997 } else {
998 nfsd4_encode_operation(resp, op);
999 status = op->status;
1000 }
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001001 if (cstate->replay_owner) {
1002 nfs4_put_stateowner(cstate->replay_owner);
1003 cstate->replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
NeilBrown7e06b7f2005-06-23 22:03:13 -07001005 /* XXX Ugh, we need to get rid of this kind of special case: */
1006 if (op->opnum == OP_READ && op->u.read.rd_filp)
1007 fput(op->u.read.rd_filp);
Shankar Anande2b20952006-07-10 04:45:44 -07001008
1009 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
1011
1012out:
1013 nfsd4_release_compoundargs(args);
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001014 cstate_free(cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return status;
1016}
1017
1018#define nfs4svc_decode_voidargs NULL
1019#define nfs4svc_release_void NULL
1020#define nfsd4_voidres nfsd4_voidargs
1021#define nfs4svc_release_compound NULL
1022struct nfsd4_voidargs { int dummy; };
1023
1024#define PROC(name, argt, rest, relt, cache, respsize) \
1025 { (svc_procfunc) nfsd4_proc_##name, \
1026 (kxdrproc_t) nfs4svc_decode_##argt##args, \
1027 (kxdrproc_t) nfs4svc_encode_##rest##res, \
1028 (kxdrproc_t) nfs4svc_release_##relt, \
1029 sizeof(struct nfsd4_##argt##args), \
1030 sizeof(struct nfsd4_##rest##res), \
1031 0, \
1032 cache, \
1033 respsize, \
1034 }
1035
1036/*
1037 * TODO: At the present time, the NFSv4 server does not do XID caching
1038 * of requests. Implementing XID caching would not be a serious problem,
1039 * although it would require a mild change in interfaces since one
1040 * doesn't know whether an NFSv4 request is idempotent until after the
1041 * XDR decode. However, XID caching totally confuses pynfs (Peter
1042 * Astrand's regression testsuite for NFSv4 servers), which reuses
1043 * XID's liberally, so I've left it unimplemented until pynfs generates
1044 * better XID's.
1045 */
1046static struct svc_procedure nfsd_procedures4[2] = {
1047 PROC(null, void, void, void, RC_NOCACHE, 1),
NeilBrown7775f4c2006-04-10 22:55:20 -07001048 PROC(compound, compound, compound, compound, RC_NOCACHE, NFSD_BUFSIZE/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049};
1050
1051struct svc_version nfsd_version4 = {
1052 .vs_vers = 4,
1053 .vs_nproc = 2,
1054 .vs_proc = nfsd_procedures4,
1055 .vs_dispatch = nfsd_dispatch,
1056 .vs_xdrsize = NFS4_SVC_XDRSIZE,
1057};
1058
1059/*
1060 * Local variables:
1061 * c-basic-offset: 8
1062 * End:
1063 */