blob: 8fc2cab9d76a86ddba75df59f845ab1380cd0522 [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 Fieldsc954e2a2006-12-13 00:35:31 -0800684_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800685 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
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800736static __be32
737nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
738 struct nfsd4_verify *verify)
739{
740 __be32 status;
741
742 status = _nfsd4_verify(rqstp, cstate, verify);
743 return status == nfserr_not_same ? nfs_ok : status;
744}
745
746static __be32
747nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
748 struct nfsd4_verify *verify)
749{
750 __be32 status;
751
752 status = _nfsd4_verify(rqstp, cstate, verify);
753 return status == nfserr_same ? nfs_ok : status;
754}
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756/*
757 * NULL call.
758 */
Al Viro7111c662006-10-19 23:28:45 -0700759static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
761{
762 return nfs_ok;
763}
764
Shankar Anande2b20952006-07-10 04:45:44 -0700765static inline void nfsd4_increment_op_stats(u32 opnum)
766{
767 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
768 nfsdstats.nfs4_opcount[opnum]++;
769}
770
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800771static void cstate_free(struct nfsd4_compound_state *cstate)
772{
773 if (cstate == NULL)
774 return;
775 fh_put(&cstate->current_fh);
776 fh_put(&cstate->save_fh);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800777 BUG_ON(cstate->replay_owner);
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800778 kfree(cstate);
779}
780
781static struct nfsd4_compound_state *cstate_alloc(void)
782{
783 struct nfsd4_compound_state *cstate;
784
785 cstate = kmalloc(sizeof(struct nfsd4_compound_state), GFP_KERNEL);
786 if (cstate == NULL)
787 return NULL;
788 fh_init(&cstate->current_fh, NFS4_FHSIZE);
789 fh_init(&cstate->save_fh, NFS4_FHSIZE);
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800790 cstate->replay_owner = NULL;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800791 return cstate;
792}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794/*
795 * COMPOUND call.
796 */
Al Viro7111c662006-10-19 23:28:45 -0700797static __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798nfsd4_proc_compound(struct svc_rqst *rqstp,
799 struct nfsd4_compoundargs *args,
800 struct nfsd4_compoundres *resp)
801{
802 struct nfsd4_op *op;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800803 struct nfsd4_compound_state *cstate = NULL;
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800804 int slack_bytes;
Al Virob37ad282006-10-19 23:28:59 -0700805 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 status = nfserr_resource;
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800808 cstate = cstate_alloc();
809 if (cstate == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 resp->xbuf = &rqstp->rq_res;
813 resp->p = rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len;
814 resp->tagp = resp->p;
815 /* reserve space for: taglen, tag, and opcnt */
816 resp->p += 2 + XDR_QUADLEN(args->taglen);
817 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
818 resp->taglen = args->taglen;
819 resp->tag = args->tag;
820 resp->opcnt = 0;
821 resp->rqstp = rqstp;
822
823 /*
824 * According to RFC3010, this takes precedence over all other errors.
825 */
826 status = nfserr_minor_vers_mismatch;
827 if (args->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
828 goto out;
829
830 status = nfs_ok;
831 while (!status && resp->opcnt < args->opcnt) {
832 op = &args->ops[resp->opcnt++];
833
J. Bruce Fieldsfd445272006-01-18 17:43:23 -0800834 dprintk("nfsv4 compound op #%d: %d\n", resp->opcnt, op->opnum);
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /*
837 * The XDR decode routines may have pre-set op->status;
838 * for example, if there is a miscellaneous XDR error
839 * it will be set to nfserr_bad_xdr.
840 */
841 if (op->status)
842 goto encode_op;
843
844 /* We must be able to encode a successful response to
845 * this operation, with enough room left over to encode a
846 * failed response to the next operation. If we don't
847 * have enough room, fail with ERR_RESOURCE.
848 */
J.Bruce Fieldse5710192006-12-13 00:35:20 -0800849 slack_bytes = (char *)resp->end - (char *)resp->p;
850 if (slack_bytes < COMPOUND_SLACK_SPACE
851 + COMPOUND_ERR_SLACK_SPACE) {
852 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 op->status = nfserr_resource;
854 goto encode_op;
855 }
856
857 /* All operations except RENEW, SETCLIENTID, RESTOREFH
858 * SETCLIENTID_CONFIRM, PUTFH and PUTROOTFH
859 * require a valid current filehandle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800861 if (!cstate->current_fh.fh_dentry) {
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700862 if (!((op->opnum == OP_PUTFH) ||
863 (op->opnum == OP_PUTROOTFH) ||
864 (op->opnum == OP_SETCLIENTID) ||
865 (op->opnum == OP_SETCLIENTID_CONFIRM) ||
866 (op->opnum == OP_RENEW) ||
867 (op->opnum == OP_RESTOREFH) ||
868 (op->opnum == OP_RELEASE_LOCKOWNER))) {
869 op->status = nfserr_nofilehandle;
870 goto encode_op;
871 }
872 }
873 /* Check must be done at start of each operation, except
874 * for GETATTR and ops not listed as returning NFS4ERR_MOVED
875 */
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800876 else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
J.Bruce Fields42ca0992006-10-04 02:16:20 -0700877 !((op->opnum == OP_GETATTR) ||
878 (op->opnum == OP_PUTROOTFH) ||
879 (op->opnum == OP_PUTPUBFH) ||
880 (op->opnum == OP_RENEW) ||
881 (op->opnum == OP_SETCLIENTID) ||
882 (op->opnum == OP_RELEASE_LOCKOWNER))) {
883 op->status = nfserr_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 goto encode_op;
885 }
886 switch (op->opnum) {
887 case OP_ACCESS:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800888 op->status = nfsd4_access(rqstp, cstate,
889 &op->u.access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 break;
891 case OP_CLOSE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800892 op->status = nfsd4_close(rqstp, cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800893 &op->u.close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 break;
895 case OP_COMMIT:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800896 op->status = nfsd4_commit(rqstp, cstate,
897 &op->u.commit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 break;
899 case OP_CREATE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800900 op->status = nfsd4_create(rqstp, cstate,
901 &op->u.create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 break;
903 case OP_DELEGRETURN:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800904 op->status = nfsd4_delegreturn(rqstp, cstate,
905 &op->u.delegreturn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 break;
907 case OP_GETATTR:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800908 op->status = nfsd4_getattr(rqstp, cstate,
909 &op->u.getattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 break;
911 case OP_GETFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800912 op->status = nfsd4_getfh(cstate, &op->u.getfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 break;
914 case OP_LINK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800915 op->status = nfsd4_link(rqstp, cstate, &op->u.link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 break;
917 case OP_LOCK:
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800918 op->status = nfsd4_lock(rqstp, cstate, &op->u.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 break;
920 case OP_LOCKT:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800921 op->status = nfsd4_lockt(rqstp, cstate, &op->u.lockt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 break;
923 case OP_LOCKU:
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800924 op->status = nfsd4_locku(rqstp, cstate, &op->u.locku);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 break;
926 case OP_LOOKUP:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800927 op->status = nfsd4_lookup(rqstp, cstate,
928 &op->u.lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 break;
930 case OP_LOOKUPP:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800931 op->status = nfsd4_lookupp(rqstp, cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 break;
933 case OP_NVERIFY:
J.Bruce Fieldsc954e2a2006-12-13 00:35:31 -0800934 op->status = nfsd4_nverify(rqstp, cstate,
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800935 &op->u.nverify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 break;
937 case OP_OPEN:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800938 op->status = nfsd4_open(rqstp, cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800939 &op->u.open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 break;
941 case OP_OPEN_CONFIRM:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800942 op->status = nfsd4_open_confirm(rqstp, cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800943 &op->u.open_confirm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 break;
945 case OP_OPEN_DOWNGRADE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800946 op->status = nfsd4_open_downgrade(rqstp, cstate,
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -0800947 &op->u.open_downgrade);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 break;
949 case OP_PUTFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800950 op->status = nfsd4_putfh(rqstp, cstate, &op->u.putfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 break;
952 case OP_PUTROOTFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800953 op->status = nfsd4_putrootfh(rqstp, cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 break;
955 case OP_READ:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800956 op->status = nfsd4_read(rqstp, cstate, &op->u.read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 break;
958 case OP_READDIR:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800959 op->status = nfsd4_readdir(rqstp, cstate,
960 &op->u.readdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 break;
962 case OP_READLINK:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800963 op->status = nfsd4_readlink(rqstp, cstate,
964 &op->u.readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 break;
966 case OP_REMOVE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800967 op->status = nfsd4_remove(rqstp, cstate,
968 &op->u.remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 break;
970 case OP_RENAME:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800971 op->status = nfsd4_rename(rqstp, cstate,
972 &op->u.rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 break;
974 case OP_RENEW:
975 op->status = nfsd4_renew(&op->u.renew);
976 break;
977 case OP_RESTOREFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800978 op->status = nfsd4_restorefh(cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 case OP_SAVEFH:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800981 op->status = nfsd4_savefh(cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 break;
983 case OP_SETATTR:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800984 op->status = nfsd4_setattr(rqstp, cstate,
985 &op->u.setattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 break;
987 case OP_SETCLIENTID:
988 op->status = nfsd4_setclientid(rqstp, &op->u.setclientid);
989 break;
990 case OP_SETCLIENTID_CONFIRM:
991 op->status = nfsd4_setclientid_confirm(rqstp, &op->u.setclientid_confirm);
992 break;
993 case OP_VERIFY:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800994 op->status = nfsd4_verify(rqstp, cstate,
995 &op->u.verify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 break;
997 case OP_WRITE:
J.Bruce Fieldsca364312006-12-13 00:35:27 -0800998 op->status = nfsd4_write(rqstp, cstate, &op->u.write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 break;
1000 case OP_RELEASE_LOCKOWNER:
1001 op->status = nfsd4_release_lockowner(rqstp, &op->u.release_lockowner);
1002 break;
1003 default:
1004 BUG_ON(op->status == nfs_ok);
1005 break;
1006 }
1007
1008encode_op:
Al Viroa90b0612006-10-19 23:29:03 -07001009 if (op->status == nfserr_replay_me) {
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001010 op->replay = &cstate->replay_owner->so_replay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 nfsd4_encode_replay(resp, op);
1012 status = op->status = op->replay->rp_status;
1013 } else {
1014 nfsd4_encode_operation(resp, op);
1015 status = op->status;
1016 }
J.Bruce Fieldsa4f1706a92006-12-13 00:35:28 -08001017 if (cstate->replay_owner) {
1018 nfs4_put_stateowner(cstate->replay_owner);
1019 cstate->replay_owner = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
NeilBrown7e06b7f2005-06-23 22:03:13 -07001021 /* XXX Ugh, we need to get rid of this kind of special case: */
1022 if (op->opnum == OP_READ && op->u.read.rd_filp)
1023 fput(op->u.read.rd_filp);
Shankar Anande2b20952006-07-10 04:45:44 -07001024
1025 nfsd4_increment_op_stats(op->opnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027
1028out:
1029 nfsd4_release_compoundargs(args);
J.Bruce Fieldsca364312006-12-13 00:35:27 -08001030 cstate_free(cstate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 return status;
1032}
1033
1034#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 */