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