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