[PATCH] knfsd: nfsd4: simplify migration op check
[deliverable/linux.git] / fs / nfsd / nfs4proc.c
CommitLineData
1da177e4
LT
1/*
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.
1da177e4
LT
36 */
37
38#include <linux/param.h>
39#include <linux/major.h>
40#include <linux/slab.h>
7e06b7f9 41#include <linux/file.h>
1da177e4
LT
42
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
b37ad28b 63static __be32
dc730e17 64do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode)
1da177e4 65{
b37ad28b 66 __be32 status;
1da177e4
LT
67
68 if (open->op_truncate &&
69 !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE))
70 return nfserr_inval;
71
1da177e4 72 if (open->op_share_access & NFS4_SHARE_ACCESS_READ)
dc730e17 73 accmode |= MAY_READ;
9801d8a3 74 if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE)
1da177e4 75 accmode |= (MAY_WRITE | MAY_TRUNC);
9801d8a3
BF
76 if (open->op_share_deny & NFS4_SHARE_DENY_WRITE)
77 accmode |= MAY_WRITE;
1da177e4
LT
78
79 status = fh_verify(rqstp, current_fh, S_IFREG, accmode);
80
81 return status;
82}
83
b37ad28b 84static __be32
1da177e4
LT
85do_open_lookup(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
86{
87 struct svc_fh resfh;
b37ad28b 88 __be32 status;
81ac95c5 89 int created = 0;
1da177e4
LT
90
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,
81ac95c5 102 (u32 *)open->op_verf.data, &open->op_truncate, &created);
af85852d 103 } else {
1da177e4
LT
104 status = nfsd_lookup(rqstp, current_fh,
105 open->op_fname.data, open->op_fname.len, &resfh);
106 fh_unlock(current_fh);
107 }
af85852d
BF
108 if (status)
109 goto out;
1da177e4 110
af85852d 111 set_change_info(&open->op_cinfo, current_fh);
1da177e4 112
af85852d
BF
113 /* 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);
1da177e4 118
81ac95c5
BF
119 if (!created)
120 status = do_open_permission(rqstp, current_fh, open, MAY_NOP);
1da177e4 121
af85852d 122out:
1da177e4
LT
123 fh_put(&resfh);
124 return status;
125}
126
b37ad28b 127static __be32
1da177e4
LT
128do_open_fhandle(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open)
129{
b37ad28b 130 __be32 status;
1da177e4
LT
131
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
dc730e17 151 status = do_open_permission(rqstp, current_fh, open, MAY_OWNER_OVERRIDE);
1da177e4
LT
152
153 return status;
154}
155
156
7191155b 157static __be32
ca364317 158nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
a4f1706a 159 struct nfsd4_open *open)
1da177e4 160{
b37ad28b 161 __be32 status;
1da177e4
LT
162 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
1da177e4
LT
166 /* 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);
a90b061c 174 if (status == nfserr_replay_me) {
1da177e4 175 struct nfs4_replay *rp = &open->op_stateowner->so_replay;
ca364317
BF
176 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,
1da177e4 179 rp->rp_openfh_len);
ca364317 180 status = fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
1da177e4
LT
181 if (status)
182 dprintk("nfsd4_open: replay failed"
183 " restoring previous filehandle\n");
184 else
a90b061c 185 status = nfserr_replay_me;
1da177e4
LT
186 }
187 if (status)
188 goto out;
fb553c0f
BF
189
190 /* Openowner is now set, so sequence id will get bumped. Now we need
191 * these checks before we do any creates: */
cbd0d51a 192 status = nfserr_grace;
fb553c0f 193 if (nfs4_in_grace() && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS)
cbd0d51a
BF
194 goto out;
195 status = nfserr_no_grace;
fb553c0f 196 if (!nfs4_in_grace() && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS)
cbd0d51a 197 goto out;
fb553c0f 198
1da177e4 199 switch (open->op_claim_type) {
0dd3c192
N
200 case NFS4_OPEN_CLAIM_DELEGATE_CUR:
201 status = nfserr_inval;
202 if (open->op_create)
203 goto out;
204 /* fall through */
1da177e4
LT
205 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 */
ca364317
BF
212 status = do_open_lookup(rqstp, &cstate->current_fh,
213 open);
1da177e4
LT
214 if (status)
215 goto out;
216 break;
217 case NFS4_OPEN_CLAIM_PREVIOUS:
a525825d 218 open->op_stateowner->so_confirmed = 1;
1da177e4
LT
219 /*
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 */
ca364317
BF
225 status = do_open_fhandle(rqstp, &cstate->current_fh,
226 open);
1da177e4
LT
227 if (status)
228 goto out;
229 break;
1da177e4 230 case NFS4_OPEN_CLAIM_DELEGATE_PREV:
a525825d 231 open->op_stateowner->so_confirmed = 1;
1da177e4
LT
232 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 */
ca364317 247 status = nfsd4_process_open2(rqstp, &cstate->current_fh, open);
1da177e4 248out:
f2327d9a 249 if (open->op_stateowner) {
1da177e4 250 nfs4_get_stateowner(open->op_stateowner);
a4f1706a 251 cstate->replay_owner = open->op_stateowner;
f2327d9a 252 }
1da177e4
LT
253 nfs4_unlock_state();
254 return status;
255}
256
257/*
258 * filehandle-manipulating ops.
259 */
7191155b 260static __be32
b591480b
BF
261nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
262 struct svc_fh **getfh)
1da177e4 263{
ca364317 264 if (!cstate->current_fh.fh_dentry)
1da177e4
LT
265 return nfserr_nofilehandle;
266
ca364317 267 *getfh = &cstate->current_fh;
1da177e4
LT
268 return nfs_ok;
269}
270
7191155b 271static __be32
ca364317
BF
272nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
273 struct nfsd4_putfh *putfh)
1da177e4 274{
ca364317
BF
275 fh_put(&cstate->current_fh);
276 cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen;
277 memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval,
278 putfh->pf_fhlen);
279 return fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
1da177e4
LT
280}
281
7191155b 282static __be32
b591480b
BF
283nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
284 void *arg)
1da177e4 285{
b37ad28b 286 __be32 status;
1da177e4 287
ca364317
BF
288 fh_put(&cstate->current_fh);
289 status = exp_pseudoroot(rqstp->rq_client, &cstate->current_fh,
1da177e4 290 &rqstp->rq_chandle);
1da177e4
LT
291 return status;
292}
293
7191155b 294static __be32
b591480b
BF
295nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
296 void *arg)
1da177e4 297{
ca364317 298 if (!cstate->save_fh.fh_dentry)
1da177e4
LT
299 return nfserr_restorefh;
300
ca364317 301 fh_dup2(&cstate->current_fh, &cstate->save_fh);
1da177e4
LT
302 return nfs_ok;
303}
304
7191155b 305static __be32
b591480b
BF
306nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
307 void *arg)
1da177e4 308{
ca364317 309 if (!cstate->current_fh.fh_dentry)
1da177e4
LT
310 return nfserr_nofilehandle;
311
ca364317 312 fh_dup2(&cstate->save_fh, &cstate->current_fh);
1da177e4
LT
313 return nfs_ok;
314}
315
316/*
317 * misc nfsv4 ops
318 */
7191155b 319static __be32
ca364317
BF
320nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
321 struct nfsd4_access *access)
1da177e4
LT
322{
323 if (access->ac_req_access & ~NFS3_ACCESS_FULL)
324 return nfserr_inval;
325
326 access->ac_resp_access = access->ac_req_access;
ca364317
BF
327 return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access,
328 &access->ac_supported);
1da177e4
LT
329}
330
7191155b 331static __be32
ca364317
BF
332nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
333 struct nfsd4_commit *commit)
1da177e4 334{
b37ad28b 335 __be32 status;
1da177e4
LT
336
337 u32 *p = (u32 *)commit->co_verf.data;
338 *p++ = nfssvc_boot.tv_sec;
339 *p++ = nfssvc_boot.tv_usec;
340
ca364317
BF
341 status = nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset,
342 commit->co_count);
1da177e4
LT
343 if (status == nfserr_symlink)
344 status = nfserr_inval;
345 return status;
346}
347
b37ad28b 348static __be32
ca364317
BF
349nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
350 struct nfsd4_create *create)
1da177e4
LT
351{
352 struct svc_fh resfh;
b37ad28b 353 __be32 status;
1da177e4
LT
354 dev_t rdev;
355
356 fh_init(&resfh, NFS4_FHSIZE);
357
ca364317 358 status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, MAY_CREATE);
1da177e4
LT
359 if (status == nfserr_symlink)
360 status = nfserr_notdir;
361 if (status)
362 return status;
363
364 switch (create->cr_type) {
365 case NF4LNK:
366 /* ugh! we have to null-terminate the linktext, or
367 * vfs_symlink() will choke. it is always safe to
368 * null-terminate by brute force, since at worst we
369 * will overwrite the first byte of the create namelen
370 * in the XDR buffer, which has already been extracted
371 * during XDR decode.
372 */
373 create->cr_linkname[create->cr_linklen] = 0;
374
ca364317
BF
375 status = nfsd_symlink(rqstp, &cstate->current_fh,
376 create->cr_name, create->cr_namelen,
377 create->cr_linkname, create->cr_linklen,
378 &resfh, &create->cr_iattr);
1da177e4
LT
379 break;
380
381 case NF4BLK:
382 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
383 if (MAJOR(rdev) != create->cr_specdata1 ||
384 MINOR(rdev) != create->cr_specdata2)
385 return nfserr_inval;
ca364317
BF
386 status = nfsd_create(rqstp, &cstate->current_fh,
387 create->cr_name, create->cr_namelen,
388 &create->cr_iattr, S_IFBLK, rdev, &resfh);
1da177e4
LT
389 break;
390
391 case NF4CHR:
392 rdev = MKDEV(create->cr_specdata1, create->cr_specdata2);
393 if (MAJOR(rdev) != create->cr_specdata1 ||
394 MINOR(rdev) != create->cr_specdata2)
395 return nfserr_inval;
ca364317
BF
396 status = nfsd_create(rqstp, &cstate->current_fh,
397 create->cr_name, create->cr_namelen,
398 &create->cr_iattr,S_IFCHR, rdev, &resfh);
1da177e4
LT
399 break;
400
401 case NF4SOCK:
ca364317
BF
402 status = nfsd_create(rqstp, &cstate->current_fh,
403 create->cr_name, create->cr_namelen,
404 &create->cr_iattr, S_IFSOCK, 0, &resfh);
1da177e4
LT
405 break;
406
407 case NF4FIFO:
ca364317
BF
408 status = nfsd_create(rqstp, &cstate->current_fh,
409 create->cr_name, create->cr_namelen,
410 &create->cr_iattr, S_IFIFO, 0, &resfh);
1da177e4
LT
411 break;
412
413 case NF4DIR:
414 create->cr_iattr.ia_valid &= ~ATTR_SIZE;
ca364317
BF
415 status = nfsd_create(rqstp, &cstate->current_fh,
416 create->cr_name, create->cr_namelen,
417 &create->cr_iattr, S_IFDIR, 0, &resfh);
1da177e4
LT
418 break;
419
420 default:
421 status = nfserr_badtype;
422 }
423
424 if (!status) {
ca364317
BF
425 fh_unlock(&cstate->current_fh);
426 set_change_info(&create->cr_cinfo, &cstate->current_fh);
427 fh_dup2(&cstate->current_fh, &resfh);
1da177e4
LT
428 }
429
430 fh_put(&resfh);
431 return status;
432}
433
7191155b 434static __be32
ca364317
BF
435nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
436 struct nfsd4_getattr *getattr)
1da177e4 437{
b37ad28b 438 __be32 status;
1da177e4 439
ca364317 440 status = fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
1da177e4
LT
441 if (status)
442 return status;
443
444 if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
445 return nfserr_inval;
446
447 getattr->ga_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
448 getattr->ga_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
449
ca364317 450 getattr->ga_fhp = &cstate->current_fh;
1da177e4
LT
451 return nfs_ok;
452}
453
7191155b 454static __be32
ca364317
BF
455nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
456 struct nfsd4_link *link)
1da177e4 457{
b37ad28b 458 __be32 status = nfserr_nofilehandle;
1da177e4 459
ca364317 460 if (!cstate->save_fh.fh_dentry)
1da177e4 461 return status;
ca364317
BF
462 status = nfsd_link(rqstp, &cstate->current_fh,
463 link->li_name, link->li_namelen, &cstate->save_fh);
1da177e4 464 if (!status)
ca364317 465 set_change_info(&link->li_cinfo, &cstate->current_fh);
1da177e4
LT
466 return status;
467}
468
b37ad28b 469static __be32
b591480b
BF
470nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
471 void *arg)
1da177e4
LT
472{
473 struct svc_fh tmp_fh;
b37ad28b 474 __be32 ret;
1da177e4
LT
475
476 fh_init(&tmp_fh, NFS4_FHSIZE);
477 if((ret = exp_pseudoroot(rqstp->rq_client, &tmp_fh,
478 &rqstp->rq_chandle)) != 0)
479 return ret;
ca364317 480 if (tmp_fh.fh_dentry == cstate->current_fh.fh_dentry) {
1da177e4
LT
481 fh_put(&tmp_fh);
482 return nfserr_noent;
483 }
484 fh_put(&tmp_fh);
ca364317
BF
485 return nfsd_lookup(rqstp, &cstate->current_fh,
486 "..", 2, &cstate->current_fh);
1da177e4
LT
487}
488
7191155b 489static __be32
ca364317
BF
490nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
491 struct nfsd4_lookup *lookup)
1da177e4 492{
ca364317
BF
493 return nfsd_lookup(rqstp, &cstate->current_fh,
494 lookup->lo_name, lookup->lo_len,
495 &cstate->current_fh);
1da177e4
LT
496}
497
7191155b 498static __be32
ca364317
BF
499nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
500 struct nfsd4_read *read)
1da177e4 501{
b37ad28b 502 __be32 status;
1da177e4
LT
503
504 /* no need to check permission - this will be done in nfsd_read() */
505
7e06b7f9 506 read->rd_filp = NULL;
1da177e4
LT
507 if (read->rd_offset >= OFFSET_MAX)
508 return nfserr_inval;
509
510 nfs4_lock_state();
511 /* check stateid */
ca364317
BF
512 if ((status = nfs4_preprocess_stateid_op(&cstate->current_fh,
513 &read->rd_stateid,
7e06b7f9 514 CHECK_FH | RD_STATE, &read->rd_filp))) {
1da177e4
LT
515 dprintk("NFSD: nfsd4_read: couldn't process stateid!\n");
516 goto out;
517 }
7e06b7f9
N
518 if (read->rd_filp)
519 get_file(read->rd_filp);
1da177e4
LT
520 status = nfs_ok;
521out:
522 nfs4_unlock_state();
523 read->rd_rqstp = rqstp;
ca364317 524 read->rd_fhp = &cstate->current_fh;
1da177e4
LT
525 return status;
526}
527
7191155b 528static __be32
ca364317
BF
529nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
530 struct nfsd4_readdir *readdir)
1da177e4
LT
531{
532 u64 cookie = readdir->rd_cookie;
533 static const nfs4_verifier zeroverf;
534
535 /* no need to check permission - this will be done in nfsd_readdir() */
536
537 if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)
538 return nfserr_inval;
539
540 readdir->rd_bmval[0] &= NFSD_SUPPORTED_ATTRS_WORD0;
541 readdir->rd_bmval[1] &= NFSD_SUPPORTED_ATTRS_WORD1;
542
543 if ((cookie > ~(u32)0) || (cookie == 1) || (cookie == 2) ||
544 (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE)))
545 return nfserr_bad_cookie;
546
547 readdir->rd_rqstp = rqstp;
ca364317 548 readdir->rd_fhp = &cstate->current_fh;
1da177e4
LT
549 return nfs_ok;
550}
551
7191155b 552static __be32
ca364317
BF
553nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
554 struct nfsd4_readlink *readlink)
1da177e4
LT
555{
556 readlink->rl_rqstp = rqstp;
ca364317 557 readlink->rl_fhp = &cstate->current_fh;
1da177e4
LT
558 return nfs_ok;
559}
560
7191155b 561static __be32
ca364317
BF
562nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
563 struct nfsd4_remove *remove)
1da177e4 564{
b37ad28b 565 __be32 status;
1da177e4 566
c815afc7
N
567 if (nfs4_in_grace())
568 return nfserr_grace;
ca364317
BF
569 status = nfsd_unlink(rqstp, &cstate->current_fh, 0,
570 remove->rm_name, remove->rm_namelen);
1da177e4
LT
571 if (status == nfserr_symlink)
572 return nfserr_notdir;
573 if (!status) {
ca364317
BF
574 fh_unlock(&cstate->current_fh);
575 set_change_info(&remove->rm_cinfo, &cstate->current_fh);
1da177e4
LT
576 }
577 return status;
578}
579
7191155b 580static __be32
ca364317
BF
581nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
582 struct nfsd4_rename *rename)
1da177e4 583{
b37ad28b 584 __be32 status = nfserr_nofilehandle;
1da177e4 585
ca364317 586 if (!cstate->save_fh.fh_dentry)
1da177e4 587 return status;
ca364317 588 if (nfs4_in_grace() && !(cstate->save_fh.fh_export->ex_flags
c815afc7
N
589 & NFSEXP_NOSUBTREECHECK))
590 return nfserr_grace;
ca364317
BF
591 status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname,
592 rename->rn_snamelen, &cstate->current_fh,
1da177e4
LT
593 rename->rn_tname, rename->rn_tnamelen);
594
595 /* the underlying filesystem returns different error's than required
596 * by NFSv4. both save_fh and current_fh have been verified.. */
597 if (status == nfserr_isdir)
598 status = nfserr_exist;
599 else if ((status == nfserr_notdir) &&
ca364317
BF
600 (S_ISDIR(cstate->save_fh.fh_dentry->d_inode->i_mode) &&
601 S_ISDIR(cstate->current_fh.fh_dentry->d_inode->i_mode)))
1da177e4
LT
602 status = nfserr_exist;
603 else if (status == nfserr_symlink)
604 status = nfserr_notdir;
605
606 if (!status) {
ca364317
BF
607 set_change_info(&rename->rn_sinfo, &cstate->current_fh);
608 set_change_info(&rename->rn_tinfo, &cstate->save_fh);
1da177e4
LT
609 }
610 return status;
611}
612
7191155b 613static __be32
ca364317
BF
614nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
615 struct nfsd4_setattr *setattr)
1da177e4 616{
b37ad28b 617 __be32 status = nfs_ok;
1da177e4 618
1da177e4
LT
619 if (setattr->sa_iattr.ia_valid & ATTR_SIZE) {
620 nfs4_lock_state();
ca364317 621 status = nfs4_preprocess_stateid_op(&cstate->current_fh,
375c5547 622 &setattr->sa_stateid, CHECK_FH | WR_STATE, NULL);
1da177e4 623 nfs4_unlock_state();
375c5547 624 if (status) {
3e3b4800 625 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
375c5547
BF
626 return status;
627 }
1da177e4
LT
628 }
629 status = nfs_ok;
630 if (setattr->sa_acl != NULL)
ca364317
BF
631 status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh,
632 setattr->sa_acl);
1da177e4 633 if (status)
375c5547 634 return status;
ca364317 635 status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr,
1da177e4 636 0, (time_t)0);
1da177e4
LT
637 return status;
638}
639
7191155b 640static __be32
ca364317
BF
641nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
642 struct nfsd4_write *write)
1da177e4
LT
643{
644 stateid_t *stateid = &write->wr_stateid;
645 struct file *filp = NULL;
646 u32 *p;
b37ad28b 647 __be32 status = nfs_ok;
1da177e4
LT
648
649 /* no need to check permission - this will be done in nfsd_write() */
650
651 if (write->wr_offset >= OFFSET_MAX)
652 return nfserr_inval;
653
654 nfs4_lock_state();
ca364317 655 status = nfs4_preprocess_stateid_op(&cstate->current_fh, stateid,
375c5547 656 CHECK_FH | WR_STATE, &filp);
7e06b7f9
N
657 if (filp)
658 get_file(filp);
1da177e4
LT
659 nfs4_unlock_state();
660
375c5547
BF
661 if (status) {
662 dprintk("NFSD: nfsd4_write: couldn't process stateid!\n");
663 return status;
664 }
665
1da177e4
LT
666 write->wr_bytes_written = write->wr_buflen;
667 write->wr_how_written = write->wr_stable_how;
668 p = (u32 *)write->wr_verifier.data;
669 *p++ = nfssvc_boot.tv_sec;
670 *p++ = nfssvc_boot.tv_usec;
671
ca364317
BF
672 status = nfsd_write(rqstp, &cstate->current_fh, filp,
673 write->wr_offset, rqstp->rq_vec, write->wr_vlen,
674 write->wr_buflen, &write->wr_how_written);
7e06b7f9
N
675 if (filp)
676 fput(filp);
1da177e4
LT
677
678 if (status == nfserr_symlink)
679 status = nfserr_inval;
680 return status;
1da177e4
LT
681}
682
683/* This routine never returns NFS_OK! If there are no other errors, it
684 * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the
685 * attributes matched. VERIFY is implemented by mapping NFSERR_SAME
686 * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK.
687 */
b37ad28b 688static __be32
c954e2a5 689_nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
ca364317 690 struct nfsd4_verify *verify)
1da177e4 691{
2ebbc012 692 __be32 *buf, *p;
1da177e4 693 int count;
b37ad28b 694 __be32 status;
1da177e4 695
ca364317 696 status = fh_verify(rqstp, &cstate->current_fh, 0, MAY_NOP);
1da177e4
LT
697 if (status)
698 return status;
699
700 if ((verify->ve_bmval[0] & ~NFSD_SUPPORTED_ATTRS_WORD0)
701 || (verify->ve_bmval[1] & ~NFSD_SUPPORTED_ATTRS_WORD1))
702 return nfserr_attrnotsupp;
703 if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR)
704 || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1))
705 return nfserr_inval;
706 if (verify->ve_attrlen & 3)
707 return nfserr_inval;
708
709 /* count in words:
710 * bitmap_len(1) + bitmap(2) + attr_len(1) = 4
711 */
712 count = 4 + (verify->ve_attrlen >> 2);
713 buf = kmalloc(count << 2, GFP_KERNEL);
714 if (!buf)
715 return nfserr_resource;
716
ca364317
BF
717 status = nfsd4_encode_fattr(&cstate->current_fh,
718 cstate->current_fh.fh_export,
719 cstate->current_fh.fh_dentry, buf,
1da177e4
LT
720 &count, verify->ve_bmval,
721 rqstp);
722
723 /* this means that nfsd4_encode_fattr() ran out of space */
724 if (status == nfserr_resource && count == 0)
725 status = nfserr_not_same;
726 if (status)
727 goto out_kfree;
728
729 p = buf + 3;
730 status = nfserr_not_same;
731 if (ntohl(*p++) != verify->ve_attrlen)
732 goto out_kfree;
733 if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen))
734 status = nfserr_same;
735
736out_kfree:
737 kfree(buf);
738 return status;
739}
740
c954e2a5
BF
741static __be32
742nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
743 struct nfsd4_verify *verify)
744{
745 __be32 status;
746
747 status = _nfsd4_verify(rqstp, cstate, verify);
748 return status == nfserr_not_same ? nfs_ok : status;
749}
750
751static __be32
752nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate,
753 struct nfsd4_verify *verify)
754{
755 __be32 status;
756
757 status = _nfsd4_verify(rqstp, cstate, verify);
758 return status == nfserr_same ? nfs_ok : status;
759}
760
1da177e4
LT
761/*
762 * NULL call.
763 */
7111c66e 764static __be32
1da177e4
LT
765nfsd4_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
766{
767 return nfs_ok;
768}
769
e2b20950
SA
770static inline void nfsd4_increment_op_stats(u32 opnum)
771{
772 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
773 nfsdstats.nfs4_opcount[opnum]++;
774}
775
ca364317
BF
776static void cstate_free(struct nfsd4_compound_state *cstate)
777{
778 if (cstate == NULL)
779 return;
780 fh_put(&cstate->current_fh);
781 fh_put(&cstate->save_fh);
a4f1706a 782 BUG_ON(cstate->replay_owner);
ca364317
BF
783 kfree(cstate);
784}
785
786static struct nfsd4_compound_state *cstate_alloc(void)
787{
788 struct nfsd4_compound_state *cstate;
789
790 cstate = kmalloc(sizeof(struct nfsd4_compound_state), GFP_KERNEL);
791 if (cstate == NULL)
792 return NULL;
793 fh_init(&cstate->current_fh, NFS4_FHSIZE);
794 fh_init(&cstate->save_fh, NFS4_FHSIZE);
a4f1706a 795 cstate->replay_owner = NULL;
ca364317
BF
796 return cstate;
797}
1da177e4 798
b591480b
BF
799typedef __be32(*nfsd4op_func)(struct svc_rqst *, struct nfsd4_compound_state *,
800 void *);
801
802struct nfsd4_operation {
803 nfsd4op_func op_func;
804 u32 op_flags;
eeac294e
BF
805/* GETATTR and ops not listed as returning NFS4ERR_MOVED: */
806#define ALLOWED_ON_ABSENT_FS 1
b591480b
BF
807};
808
809static struct nfsd4_operation nfsd4_ops[];
810
1da177e4
LT
811/*
812 * COMPOUND call.
813 */
7111c66e 814static __be32
1da177e4
LT
815nfsd4_proc_compound(struct svc_rqst *rqstp,
816 struct nfsd4_compoundargs *args,
817 struct nfsd4_compoundres *resp)
818{
819 struct nfsd4_op *op;
b591480b 820 struct nfsd4_operation *opdesc;
ca364317 821 struct nfsd4_compound_state *cstate = NULL;
e5710199 822 int slack_bytes;
b37ad28b 823 __be32 status;
1da177e4
LT
824
825 status = nfserr_resource;
ca364317
BF
826 cstate = cstate_alloc();
827 if (cstate == NULL)
1da177e4 828 goto out;
1da177e4
LT
829
830 resp->xbuf = &rqstp->rq_res;
831 resp->p = rqstp->rq_res.head[0].iov_base + rqstp->rq_res.head[0].iov_len;
832 resp->tagp = resp->p;
833 /* reserve space for: taglen, tag, and opcnt */
834 resp->p += 2 + XDR_QUADLEN(args->taglen);
835 resp->end = rqstp->rq_res.head[0].iov_base + PAGE_SIZE;
836 resp->taglen = args->taglen;
837 resp->tag = args->tag;
838 resp->opcnt = 0;
839 resp->rqstp = rqstp;
840
841 /*
842 * According to RFC3010, this takes precedence over all other errors.
843 */
844 status = nfserr_minor_vers_mismatch;
845 if (args->minorversion > NFSD_SUPPORTED_MINOR_VERSION)
846 goto out;
847
848 status = nfs_ok;
849 while (!status && resp->opcnt < args->opcnt) {
850 op = &args->ops[resp->opcnt++];
851
fd445277
BF
852 dprintk("nfsv4 compound op #%d: %d\n", resp->opcnt, op->opnum);
853
1da177e4
LT
854 /*
855 * The XDR decode routines may have pre-set op->status;
856 * for example, if there is a miscellaneous XDR error
857 * it will be set to nfserr_bad_xdr.
858 */
859 if (op->status)
860 goto encode_op;
861
862 /* We must be able to encode a successful response to
863 * this operation, with enough room left over to encode a
864 * failed response to the next operation. If we don't
865 * have enough room, fail with ERR_RESOURCE.
866 */
e5710199
BF
867 slack_bytes = (char *)resp->end - (char *)resp->p;
868 if (slack_bytes < COMPOUND_SLACK_SPACE
869 + COMPOUND_ERR_SLACK_SPACE) {
870 BUG_ON(slack_bytes < COMPOUND_ERR_SLACK_SPACE);
1da177e4
LT
871 op->status = nfserr_resource;
872 goto encode_op;
873 }
874
b591480b
BF
875 opdesc = &nfsd4_ops[op->opnum];
876
1da177e4
LT
877 /* All operations except RENEW, SETCLIENTID, RESTOREFH
878 * SETCLIENTID_CONFIRM, PUTFH and PUTROOTFH
879 * require a valid current filehandle
1da177e4 880 */
ca364317 881 if (!cstate->current_fh.fh_dentry) {
42ca0993
BF
882 if (!((op->opnum == OP_PUTFH) ||
883 (op->opnum == OP_PUTROOTFH) ||
884 (op->opnum == OP_SETCLIENTID) ||
885 (op->opnum == OP_SETCLIENTID_CONFIRM) ||
886 (op->opnum == OP_RENEW) ||
887 (op->opnum == OP_RESTOREFH) ||
888 (op->opnum == OP_RELEASE_LOCKOWNER))) {
889 op->status = nfserr_nofilehandle;
890 goto encode_op;
891 }
eeac294e
BF
892 } else if (cstate->current_fh.fh_export->ex_fslocs.migrated &&
893 !(opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) {
42ca0993 894 op->status = nfserr_moved;
1da177e4
LT
895 goto encode_op;
896 }
b591480b
BF
897
898 if (opdesc->op_func)
899 op->status = opdesc->op_func(rqstp, cstate, &op->u);
900 else
1da177e4 901 BUG_ON(op->status == nfs_ok);
1da177e4
LT
902
903encode_op:
a90b061c 904 if (op->status == nfserr_replay_me) {
a4f1706a 905 op->replay = &cstate->replay_owner->so_replay;
1da177e4
LT
906 nfsd4_encode_replay(resp, op);
907 status = op->status = op->replay->rp_status;
908 } else {
909 nfsd4_encode_operation(resp, op);
910 status = op->status;
911 }
a4f1706a
BF
912 if (cstate->replay_owner) {
913 nfs4_put_stateowner(cstate->replay_owner);
914 cstate->replay_owner = NULL;
1da177e4 915 }
7e06b7f9
N
916 /* XXX Ugh, we need to get rid of this kind of special case: */
917 if (op->opnum == OP_READ && op->u.read.rd_filp)
918 fput(op->u.read.rd_filp);
e2b20950
SA
919
920 nfsd4_increment_op_stats(op->opnum);
1da177e4
LT
921 }
922
923out:
924 nfsd4_release_compoundargs(args);
ca364317 925 cstate_free(cstate);
1da177e4
LT
926 return status;
927}
928
b591480b
BF
929static struct nfsd4_operation nfsd4_ops[OP_RELEASE_LOCKOWNER+1] = {
930 [OP_ACCESS] = {
931 .op_func = (nfsd4op_func)nfsd4_access,
932 },
933 [OP_CLOSE] = {
934 .op_func = (nfsd4op_func)nfsd4_close,
935 },
936 [OP_COMMIT] = {
937 .op_func = (nfsd4op_func)nfsd4_commit,
938 },
939 [OP_CREATE] = {
940 .op_func = (nfsd4op_func)nfsd4_create,
941 },
942 [OP_DELEGRETURN] = {
943 .op_func = (nfsd4op_func)nfsd4_delegreturn,
944 },
945 [OP_GETATTR] = {
946 .op_func = (nfsd4op_func)nfsd4_getattr,
eeac294e 947 .op_flags = ALLOWED_ON_ABSENT_FS,
b591480b
BF
948 },
949 [OP_GETFH] = {
950 .op_func = (nfsd4op_func)nfsd4_getfh,
951 },
952 [OP_LINK] = {
953 .op_func = (nfsd4op_func)nfsd4_link,
954 },
955 [OP_LOCK] = {
956 .op_func = (nfsd4op_func)nfsd4_lock,
957 },
958 [OP_LOCKT] = {
959 .op_func = (nfsd4op_func)nfsd4_lockt,
960 },
961 [OP_LOCKU] = {
962 .op_func = (nfsd4op_func)nfsd4_locku,
963 },
964 [OP_LOOKUP] = {
965 .op_func = (nfsd4op_func)nfsd4_lookup,
966 },
967 [OP_LOOKUPP] = {
968 .op_func = (nfsd4op_func)nfsd4_lookupp,
969 },
970 [OP_NVERIFY] = {
971 .op_func = (nfsd4op_func)nfsd4_nverify,
972 },
973 [OP_OPEN] = {
974 .op_func = (nfsd4op_func)nfsd4_open,
975 },
976 [OP_OPEN_CONFIRM] = {
977 .op_func = (nfsd4op_func)nfsd4_open_confirm,
978 },
979 [OP_OPEN_DOWNGRADE] = {
980 .op_func = (nfsd4op_func)nfsd4_open_downgrade,
981 },
982 [OP_PUTFH] = {
983 .op_func = (nfsd4op_func)nfsd4_putfh,
984 },
eeac294e
BF
985 [OP_PUTPUBFH] = {
986 /* unsupported; just for future reference: */
987 .op_flags = ALLOWED_ON_ABSENT_FS,
988 },
b591480b
BF
989 [OP_PUTROOTFH] = {
990 .op_func = (nfsd4op_func)nfsd4_putrootfh,
eeac294e 991 .op_flags = ALLOWED_ON_ABSENT_FS,
b591480b
BF
992 },
993 [OP_READ] = {
994 .op_func = (nfsd4op_func)nfsd4_read,
995 },
996 [OP_READDIR] = {
997 .op_func = (nfsd4op_func)nfsd4_readdir,
998 },
999 [OP_READLINK] = {
1000 .op_func = (nfsd4op_func)nfsd4_readlink,
1001 },
1002 [OP_REMOVE] = {
1003 .op_func = (nfsd4op_func)nfsd4_remove,
1004 },
1005 [OP_RENAME] = {
1006 .op_func = (nfsd4op_func)nfsd4_rename,
1007 },
1008 [OP_RENEW] = {
1009 .op_func = (nfsd4op_func)nfsd4_renew,
eeac294e 1010 .op_flags = ALLOWED_ON_ABSENT_FS,
b591480b
BF
1011 },
1012 [OP_RESTOREFH] = {
1013 .op_func = (nfsd4op_func)nfsd4_restorefh,
1014 },
1015 [OP_SAVEFH] = {
1016 .op_func = (nfsd4op_func)nfsd4_savefh,
1017 },
1018 [OP_SETATTR] = {
1019 .op_func = (nfsd4op_func)nfsd4_setattr,
1020 },
1021 [OP_SETCLIENTID] = {
1022 .op_func = (nfsd4op_func)nfsd4_setclientid,
eeac294e 1023 .op_flags = ALLOWED_ON_ABSENT_FS,
b591480b
BF
1024 },
1025 [OP_SETCLIENTID_CONFIRM] = {
1026 .op_func = (nfsd4op_func)nfsd4_setclientid_confirm,
1027 },
1028 [OP_VERIFY] = {
1029 .op_func = (nfsd4op_func)nfsd4_verify,
1030 },
1031 [OP_WRITE] = {
1032 .op_func = (nfsd4op_func)nfsd4_write,
1033 },
1034 [OP_RELEASE_LOCKOWNER] = {
1035 .op_func = (nfsd4op_func)nfsd4_release_lockowner,
eeac294e 1036 .op_flags = ALLOWED_ON_ABSENT_FS,
b591480b
BF
1037 },
1038};
1039
1da177e4
LT
1040#define nfs4svc_decode_voidargs NULL
1041#define nfs4svc_release_void NULL
1042#define nfsd4_voidres nfsd4_voidargs
1043#define nfs4svc_release_compound NULL
1044struct nfsd4_voidargs { int dummy; };
1045
1046#define PROC(name, argt, rest, relt, cache, respsize) \
1047 { (svc_procfunc) nfsd4_proc_##name, \
1048 (kxdrproc_t) nfs4svc_decode_##argt##args, \
1049 (kxdrproc_t) nfs4svc_encode_##rest##res, \
1050 (kxdrproc_t) nfs4svc_release_##relt, \
1051 sizeof(struct nfsd4_##argt##args), \
1052 sizeof(struct nfsd4_##rest##res), \
1053 0, \
1054 cache, \
1055 respsize, \
1056 }
1057
1058/*
1059 * TODO: At the present time, the NFSv4 server does not do XID caching
1060 * of requests. Implementing XID caching would not be a serious problem,
1061 * although it would require a mild change in interfaces since one
1062 * doesn't know whether an NFSv4 request is idempotent until after the
1063 * XDR decode. However, XID caching totally confuses pynfs (Peter
1064 * Astrand's regression testsuite for NFSv4 servers), which reuses
1065 * XID's liberally, so I've left it unimplemented until pynfs generates
1066 * better XID's.
1067 */
1068static struct svc_procedure nfsd_procedures4[2] = {
1069 PROC(null, void, void, void, RC_NOCACHE, 1),
7775f4c8 1070 PROC(compound, compound, compound, compound, RC_NOCACHE, NFSD_BUFSIZE/4)
1da177e4
LT
1071};
1072
1073struct svc_version nfsd_version4 = {
1074 .vs_vers = 4,
1075 .vs_nproc = 2,
1076 .vs_proc = nfsd_procedures4,
1077 .vs_dispatch = nfsd_dispatch,
1078 .vs_xdrsize = NFS4_SVC_XDRSIZE,
1079};
1080
1081/*
1082 * Local variables:
1083 * c-basic-offset: 8
1084 * End:
1085 */
This page took 0.324614 seconds and 5 git commands to generate.