2 * Process version 3 NFS requests.
4 * Copyright (C) 1996, 1997, 1998 Olaf Kirch <okir@monad.swb.de>
8 #include <linux/ext2_fs.h>
9 #include <linux/magic.h>
15 #define NFSDDBG_FACILITY NFSDDBG_PROC
17 #define RETURN_STATUS(st) { resp->status = (st); return (st); }
19 static int nfs3_ftypes
[] = {
26 S_IFSOCK
, /* NF3SOCK */
27 S_IFIFO
, /* NF3FIFO */
34 nfsd3_proc_null(struct svc_rqst
*rqstp
, void *argp
, void *resp
)
40 * Get a file's attributes
43 nfsd3_proc_getattr(struct svc_rqst
*rqstp
, struct nfsd_fhandle
*argp
,
44 struct nfsd3_attrstat
*resp
)
48 dprintk("nfsd: GETATTR(3) %s\n",
49 SVCFH_fmt(&argp
->fh
));
51 fh_copy(&resp
->fh
, &argp
->fh
);
52 nfserr
= fh_verify(rqstp
, &resp
->fh
, 0,
53 NFSD_MAY_NOP
| NFSD_MAY_BYPASS_GSS_ON_ROOT
);
55 RETURN_STATUS(nfserr
);
57 nfserr
= fh_getattr(&resp
->fh
, &resp
->stat
);
59 RETURN_STATUS(nfserr
);
63 * Set a file's attributes
66 nfsd3_proc_setattr(struct svc_rqst
*rqstp
, struct nfsd3_sattrargs
*argp
,
67 struct nfsd3_attrstat
*resp
)
71 dprintk("nfsd: SETATTR(3) %s\n",
72 SVCFH_fmt(&argp
->fh
));
74 fh_copy(&resp
->fh
, &argp
->fh
);
75 nfserr
= nfsd_setattr(rqstp
, &resp
->fh
, &argp
->attrs
,
76 argp
->check_guard
, argp
->guardtime
);
77 RETURN_STATUS(nfserr
);
81 * Look up a path name component
84 nfsd3_proc_lookup(struct svc_rqst
*rqstp
, struct nfsd3_diropargs
*argp
,
85 struct nfsd3_diropres
*resp
)
89 dprintk("nfsd: LOOKUP(3) %s %.*s\n",
94 fh_copy(&resp
->dirfh
, &argp
->fh
);
95 fh_init(&resp
->fh
, NFS3_FHSIZE
);
97 nfserr
= nfsd_lookup(rqstp
, &resp
->dirfh
,
101 RETURN_STATUS(nfserr
);
108 nfsd3_proc_access(struct svc_rqst
*rqstp
, struct nfsd3_accessargs
*argp
,
109 struct nfsd3_accessres
*resp
)
113 dprintk("nfsd: ACCESS(3) %s 0x%x\n",
114 SVCFH_fmt(&argp
->fh
),
117 fh_copy(&resp
->fh
, &argp
->fh
);
118 resp
->access
= argp
->access
;
119 nfserr
= nfsd_access(rqstp
, &resp
->fh
, &resp
->access
, NULL
);
120 RETURN_STATUS(nfserr
);
127 nfsd3_proc_readlink(struct svc_rqst
*rqstp
, struct nfsd3_readlinkargs
*argp
,
128 struct nfsd3_readlinkres
*resp
)
132 dprintk("nfsd: READLINK(3) %s\n", SVCFH_fmt(&argp
->fh
));
134 /* Read the symlink. */
135 fh_copy(&resp
->fh
, &argp
->fh
);
136 resp
->len
= NFS3_MAXPATHLEN
;
137 nfserr
= nfsd_readlink(rqstp
, &resp
->fh
, argp
->buffer
, &resp
->len
);
138 RETURN_STATUS(nfserr
);
142 * Read a portion of a file.
145 nfsd3_proc_read(struct svc_rqst
*rqstp
, struct nfsd3_readargs
*argp
,
146 struct nfsd3_readres
*resp
)
149 u32 max_blocksize
= svc_max_payload(rqstp
);
151 dprintk("nfsd: READ(3) %s %lu bytes at %Lu\n",
152 SVCFH_fmt(&argp
->fh
),
153 (unsigned long) argp
->count
,
154 (unsigned long long) argp
->offset
);
156 /* Obtain buffer pointer for payload.
157 * 1 (status) + 22 (post_op_attr) + 1 (count) + 1 (eof)
158 * + 1 (xdr opaque byte count) = 26
160 resp
->count
= min(argp
->count
, max_blocksize
);
161 svc_reserve_auth(rqstp
, ((1 + NFS3_POST_OP_ATTR_WORDS
+ 3)<<2) + resp
->count
+4);
163 fh_copy(&resp
->fh
, &argp
->fh
);
164 nfserr
= nfsd_read(rqstp
, &resp
->fh
,
166 rqstp
->rq_vec
, argp
->vlen
,
169 struct inode
*inode
= resp
->fh
.fh_dentry
->d_inode
;
171 resp
->eof
= (argp
->offset
+ resp
->count
) >= inode
->i_size
;
174 RETURN_STATUS(nfserr
);
178 * Write data to a file
181 nfsd3_proc_write(struct svc_rqst
*rqstp
, struct nfsd3_writeargs
*argp
,
182 struct nfsd3_writeres
*resp
)
185 unsigned long cnt
= argp
->len
;
187 dprintk("nfsd: WRITE(3) %s %d bytes at %Lu%s\n",
188 SVCFH_fmt(&argp
->fh
),
190 (unsigned long long) argp
->offset
,
191 argp
->stable
? " stable" : "");
193 fh_copy(&resp
->fh
, &argp
->fh
);
194 resp
->committed
= argp
->stable
;
195 nfserr
= nfsd_write(rqstp
, &resp
->fh
, NULL
,
197 rqstp
->rq_vec
, argp
->vlen
,
201 RETURN_STATUS(nfserr
);
205 * With NFSv3, CREATE processing is a lot easier than with NFSv2.
206 * At least in theory; we'll see how it fares in practice when the
207 * first reports about SunOS compatibility problems start to pour in...
210 nfsd3_proc_create(struct svc_rqst
*rqstp
, struct nfsd3_createargs
*argp
,
211 struct nfsd3_diropres
*resp
)
213 svc_fh
*dirfhp
, *newfhp
= NULL
;
217 dprintk("nfsd: CREATE(3) %s %.*s\n",
218 SVCFH_fmt(&argp
->fh
),
222 dirfhp
= fh_copy(&resp
->dirfh
, &argp
->fh
);
223 newfhp
= fh_init(&resp
->fh
, NFS3_FHSIZE
);
226 /* Unfudge the mode bits */
227 attr
->ia_mode
&= ~S_IFMT
;
228 if (!(attr
->ia_valid
& ATTR_MODE
)) {
229 attr
->ia_valid
|= ATTR_MODE
;
230 attr
->ia_mode
= S_IFREG
;
232 attr
->ia_mode
= (attr
->ia_mode
& ~S_IFMT
) | S_IFREG
;
235 /* Now create the file and set attributes */
236 nfserr
= do_nfsd_create(rqstp
, dirfhp
, argp
->name
, argp
->len
,
238 argp
->createmode
, (u32
*)argp
->verf
, NULL
, NULL
);
240 RETURN_STATUS(nfserr
);
244 * Make directory. This operation is not idempotent.
247 nfsd3_proc_mkdir(struct svc_rqst
*rqstp
, struct nfsd3_createargs
*argp
,
248 struct nfsd3_diropres
*resp
)
252 dprintk("nfsd: MKDIR(3) %s %.*s\n",
253 SVCFH_fmt(&argp
->fh
),
257 argp
->attrs
.ia_valid
&= ~ATTR_SIZE
;
258 fh_copy(&resp
->dirfh
, &argp
->fh
);
259 fh_init(&resp
->fh
, NFS3_FHSIZE
);
260 nfserr
= nfsd_create(rqstp
, &resp
->dirfh
, argp
->name
, argp
->len
,
261 &argp
->attrs
, S_IFDIR
, 0, &resp
->fh
);
262 fh_unlock(&resp
->dirfh
);
263 RETURN_STATUS(nfserr
);
267 nfsd3_proc_symlink(struct svc_rqst
*rqstp
, struct nfsd3_symlinkargs
*argp
,
268 struct nfsd3_diropres
*resp
)
272 dprintk("nfsd: SYMLINK(3) %s %.*s -> %.*s\n",
273 SVCFH_fmt(&argp
->ffh
),
274 argp
->flen
, argp
->fname
,
275 argp
->tlen
, argp
->tname
);
277 fh_copy(&resp
->dirfh
, &argp
->ffh
);
278 fh_init(&resp
->fh
, NFS3_FHSIZE
);
279 nfserr
= nfsd_symlink(rqstp
, &resp
->dirfh
, argp
->fname
, argp
->flen
,
280 argp
->tname
, &resp
->fh
);
281 RETURN_STATUS(nfserr
);
285 * Make socket/fifo/device.
288 nfsd3_proc_mknod(struct svc_rqst
*rqstp
, struct nfsd3_mknodargs
*argp
,
289 struct nfsd3_diropres
*resp
)
295 dprintk("nfsd: MKNOD(3) %s %.*s\n",
296 SVCFH_fmt(&argp
->fh
),
300 fh_copy(&resp
->dirfh
, &argp
->fh
);
301 fh_init(&resp
->fh
, NFS3_FHSIZE
);
303 if (argp
->ftype
== 0 || argp
->ftype
>= NF3BAD
)
304 RETURN_STATUS(nfserr_inval
);
305 if (argp
->ftype
== NF3CHR
|| argp
->ftype
== NF3BLK
) {
306 rdev
= MKDEV(argp
->major
, argp
->minor
);
307 if (MAJOR(rdev
) != argp
->major
||
308 MINOR(rdev
) != argp
->minor
)
309 RETURN_STATUS(nfserr_inval
);
311 if (argp
->ftype
!= NF3SOCK
&& argp
->ftype
!= NF3FIFO
)
312 RETURN_STATUS(nfserr_inval
);
314 type
= nfs3_ftypes
[argp
->ftype
];
315 nfserr
= nfsd_create(rqstp
, &resp
->dirfh
, argp
->name
, argp
->len
,
316 &argp
->attrs
, type
, rdev
, &resp
->fh
);
317 fh_unlock(&resp
->dirfh
);
318 RETURN_STATUS(nfserr
);
322 * Remove file/fifo/socket etc.
325 nfsd3_proc_remove(struct svc_rqst
*rqstp
, struct nfsd3_diropargs
*argp
,
326 struct nfsd3_attrstat
*resp
)
330 dprintk("nfsd: REMOVE(3) %s %.*s\n",
331 SVCFH_fmt(&argp
->fh
),
335 /* Unlink. -S_IFDIR means file must not be a directory */
336 fh_copy(&resp
->fh
, &argp
->fh
);
337 nfserr
= nfsd_unlink(rqstp
, &resp
->fh
, -S_IFDIR
, argp
->name
, argp
->len
);
338 fh_unlock(&resp
->fh
);
339 RETURN_STATUS(nfserr
);
346 nfsd3_proc_rmdir(struct svc_rqst
*rqstp
, struct nfsd3_diropargs
*argp
,
347 struct nfsd3_attrstat
*resp
)
351 dprintk("nfsd: RMDIR(3) %s %.*s\n",
352 SVCFH_fmt(&argp
->fh
),
356 fh_copy(&resp
->fh
, &argp
->fh
);
357 nfserr
= nfsd_unlink(rqstp
, &resp
->fh
, S_IFDIR
, argp
->name
, argp
->len
);
358 fh_unlock(&resp
->fh
);
359 RETURN_STATUS(nfserr
);
363 nfsd3_proc_rename(struct svc_rqst
*rqstp
, struct nfsd3_renameargs
*argp
,
364 struct nfsd3_renameres
*resp
)
368 dprintk("nfsd: RENAME(3) %s %.*s ->\n",
369 SVCFH_fmt(&argp
->ffh
),
372 dprintk("nfsd: -> %s %.*s\n",
373 SVCFH_fmt(&argp
->tfh
),
377 fh_copy(&resp
->ffh
, &argp
->ffh
);
378 fh_copy(&resp
->tfh
, &argp
->tfh
);
379 nfserr
= nfsd_rename(rqstp
, &resp
->ffh
, argp
->fname
, argp
->flen
,
380 &resp
->tfh
, argp
->tname
, argp
->tlen
);
381 RETURN_STATUS(nfserr
);
385 nfsd3_proc_link(struct svc_rqst
*rqstp
, struct nfsd3_linkargs
*argp
,
386 struct nfsd3_linkres
*resp
)
390 dprintk("nfsd: LINK(3) %s ->\n",
391 SVCFH_fmt(&argp
->ffh
));
392 dprintk("nfsd: -> %s %.*s\n",
393 SVCFH_fmt(&argp
->tfh
),
397 fh_copy(&resp
->fh
, &argp
->ffh
);
398 fh_copy(&resp
->tfh
, &argp
->tfh
);
399 nfserr
= nfsd_link(rqstp
, &resp
->tfh
, argp
->tname
, argp
->tlen
,
401 RETURN_STATUS(nfserr
);
405 * Read a portion of a directory.
408 nfsd3_proc_readdir(struct svc_rqst
*rqstp
, struct nfsd3_readdirargs
*argp
,
409 struct nfsd3_readdirres
*resp
)
414 dprintk("nfsd: READDIR(3) %s %d bytes at %d\n",
415 SVCFH_fmt(&argp
->fh
),
416 argp
->count
, (u32
) argp
->cookie
);
418 /* Make sure we've room for the NULL ptr & eof flag, and shrink to
419 * client read size */
420 count
= (argp
->count
>> 2) - 2;
422 /* Read directory and encode entries on the fly */
423 fh_copy(&resp
->fh
, &argp
->fh
);
425 resp
->buflen
= count
;
426 resp
->common
.err
= nfs_ok
;
427 resp
->buffer
= argp
->buffer
;
429 nfserr
= nfsd_readdir(rqstp
, &resp
->fh
, (loff_t
*) &argp
->cookie
,
430 &resp
->common
, nfs3svc_encode_entry
);
431 memcpy(resp
->verf
, argp
->verf
, 8);
432 resp
->count
= resp
->buffer
- argp
->buffer
;
434 xdr_encode_hyper(resp
->offset
, argp
->cookie
);
436 RETURN_STATUS(nfserr
);
440 * Read a portion of a directory, including file handles and attrs.
441 * For now, we choose to ignore the dircount parameter.
444 nfsd3_proc_readdirplus(struct svc_rqst
*rqstp
, struct nfsd3_readdirargs
*argp
,
445 struct nfsd3_readdirres
*resp
)
451 caddr_t page_addr
= NULL
;
453 dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
454 SVCFH_fmt(&argp
->fh
),
455 argp
->count
, (u32
) argp
->cookie
);
457 /* Convert byte count to number of words (i.e. >> 2),
458 * and reserve room for the NULL ptr & eof flag (-2 words) */
459 resp
->count
= (argp
->count
>> 2) - 2;
461 /* Read directory and encode entries on the fly */
462 fh_copy(&resp
->fh
, &argp
->fh
);
464 resp
->common
.err
= nfs_ok
;
465 resp
->buffer
= argp
->buffer
;
466 resp
->buflen
= resp
->count
;
468 offset
= argp
->cookie
;
470 nfserr
= fh_verify(rqstp
, &resp
->fh
, S_IFDIR
, NFSD_MAY_NOP
);
472 RETURN_STATUS(nfserr
);
474 if (resp
->fh
.fh_export
->ex_flags
& NFSEXP_NOREADDIRPLUS
)
475 RETURN_STATUS(nfserr_notsupp
);
477 nfserr
= nfsd_readdir(rqstp
, &resp
->fh
,
480 nfs3svc_encode_entry_plus
);
481 memcpy(resp
->verf
, argp
->verf
, 8);
482 for (p
= rqstp
->rq_respages
+ 1; p
< rqstp
->rq_next_page
; p
++) {
483 page_addr
= page_address(*p
);
485 if (((caddr_t
)resp
->buffer
>= page_addr
) &&
486 ((caddr_t
)resp
->buffer
< page_addr
+ PAGE_SIZE
)) {
487 count
+= (caddr_t
)resp
->buffer
- page_addr
;
492 resp
->count
= count
>> 2;
494 if (unlikely(resp
->offset1
)) {
495 /* we ended up with offset on a page boundary */
496 *resp
->offset
= htonl(offset
>> 32);
497 *resp
->offset1
= htonl(offset
& 0xffffffff);
498 resp
->offset1
= NULL
;
500 xdr_encode_hyper(resp
->offset
, offset
);
504 RETURN_STATUS(nfserr
);
508 * Get file system stats
511 nfsd3_proc_fsstat(struct svc_rqst
* rqstp
, struct nfsd_fhandle
*argp
,
512 struct nfsd3_fsstatres
*resp
)
516 dprintk("nfsd: FSSTAT(3) %s\n",
517 SVCFH_fmt(&argp
->fh
));
519 nfserr
= nfsd_statfs(rqstp
, &argp
->fh
, &resp
->stats
, 0);
521 RETURN_STATUS(nfserr
);
525 * Get file system info
528 nfsd3_proc_fsinfo(struct svc_rqst
* rqstp
, struct nfsd_fhandle
*argp
,
529 struct nfsd3_fsinfores
*resp
)
532 u32 max_blocksize
= svc_max_payload(rqstp
);
534 dprintk("nfsd: FSINFO(3) %s\n",
535 SVCFH_fmt(&argp
->fh
));
537 resp
->f_rtmax
= max_blocksize
;
538 resp
->f_rtpref
= max_blocksize
;
539 resp
->f_rtmult
= PAGE_SIZE
;
540 resp
->f_wtmax
= max_blocksize
;
541 resp
->f_wtpref
= max_blocksize
;
542 resp
->f_wtmult
= PAGE_SIZE
;
543 resp
->f_dtpref
= PAGE_SIZE
;
544 resp
->f_maxfilesize
= ~(u32
) 0;
545 resp
->f_properties
= NFS3_FSF_DEFAULT
;
547 nfserr
= fh_verify(rqstp
, &argp
->fh
, 0,
548 NFSD_MAY_NOP
| NFSD_MAY_BYPASS_GSS_ON_ROOT
);
550 /* Check special features of the file system. May request
551 * different read/write sizes for file systems known to have
552 * problems with large blocks */
554 struct super_block
*sb
= argp
->fh
.fh_dentry
->d_inode
->i_sb
;
556 /* Note that we don't care for remote fs's here */
557 if (sb
->s_magic
== MSDOS_SUPER_MAGIC
) {
558 resp
->f_properties
= NFS3_FSF_BILLYBOY
;
560 resp
->f_maxfilesize
= sb
->s_maxbytes
;
564 RETURN_STATUS(nfserr
);
568 * Get pathconf info for the specified file
571 nfsd3_proc_pathconf(struct svc_rqst
* rqstp
, struct nfsd_fhandle
*argp
,
572 struct nfsd3_pathconfres
*resp
)
576 dprintk("nfsd: PATHCONF(3) %s\n",
577 SVCFH_fmt(&argp
->fh
));
579 /* Set default pathconf */
580 resp
->p_link_max
= 255; /* at least */
581 resp
->p_name_max
= 255; /* at least */
582 resp
->p_no_trunc
= 0;
583 resp
->p_chown_restricted
= 1;
584 resp
->p_case_insensitive
= 0;
585 resp
->p_case_preserving
= 1;
587 nfserr
= fh_verify(rqstp
, &argp
->fh
, 0, NFSD_MAY_NOP
);
590 struct super_block
*sb
= argp
->fh
.fh_dentry
->d_inode
->i_sb
;
592 /* Note that we don't care for remote fs's here */
593 switch (sb
->s_magic
) {
594 case EXT2_SUPER_MAGIC
:
595 resp
->p_link_max
= EXT2_LINK_MAX
;
596 resp
->p_name_max
= EXT2_NAME_LEN
;
598 case MSDOS_SUPER_MAGIC
:
599 resp
->p_case_insensitive
= 1;
600 resp
->p_case_preserving
= 0;
606 RETURN_STATUS(nfserr
);
611 * Commit a file (range) to stable storage.
614 nfsd3_proc_commit(struct svc_rqst
* rqstp
, struct nfsd3_commitargs
*argp
,
615 struct nfsd3_commitres
*resp
)
619 dprintk("nfsd: COMMIT(3) %s %u@%Lu\n",
620 SVCFH_fmt(&argp
->fh
),
622 (unsigned long long) argp
->offset
);
624 if (argp
->offset
> NFS_OFFSET_MAX
)
625 RETURN_STATUS(nfserr_inval
);
627 fh_copy(&resp
->fh
, &argp
->fh
);
628 nfserr
= nfsd_commit(rqstp
, &resp
->fh
, argp
->offset
, argp
->count
);
630 RETURN_STATUS(nfserr
);
635 * NFSv3 Server procedures.
636 * Only the results of non-idempotent operations are cached.
638 #define nfs3svc_decode_fhandleargs nfs3svc_decode_fhandle
639 #define nfs3svc_encode_attrstatres nfs3svc_encode_attrstat
640 #define nfs3svc_encode_wccstatres nfs3svc_encode_wccstat
641 #define nfsd3_mkdirargs nfsd3_createargs
642 #define nfsd3_readdirplusargs nfsd3_readdirargs
643 #define nfsd3_fhandleargs nfsd_fhandle
644 #define nfsd3_fhandleres nfsd3_attrstat
645 #define nfsd3_attrstatres nfsd3_attrstat
646 #define nfsd3_wccstatres nfsd3_attrstat
647 #define nfsd3_createres nfsd3_diropres
648 #define nfsd3_voidres nfsd3_voidargs
649 struct nfsd3_voidargs
{ int dummy
; };
651 #define PROC(name, argt, rest, relt, cache, respsize) \
652 { (svc_procfunc) nfsd3_proc_##name, \
653 (kxdrproc_t) nfs3svc_decode_##argt##args, \
654 (kxdrproc_t) nfs3svc_encode_##rest##res, \
655 (kxdrproc_t) nfs3svc_release_##relt, \
656 sizeof(struct nfsd3_##argt##args), \
657 sizeof(struct nfsd3_##rest##res), \
663 #define ST 1 /* status*/
664 #define FH 17 /* filehandle with length */
665 #define AT 21 /* attributes */
666 #define pAT (1+AT) /* post attributes - conditional */
667 #define WC (7+pAT) /* WCC attributes */
669 static struct svc_procedure nfsd_procedures3
[22] = {
671 .pc_func
= (svc_procfunc
) nfsd3_proc_null
,
672 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_voidres
,
673 .pc_argsize
= sizeof(struct nfsd3_voidargs
),
674 .pc_ressize
= sizeof(struct nfsd3_voidres
),
675 .pc_cachetype
= RC_NOCACHE
,
678 [NFS3PROC_GETATTR
] = {
679 .pc_func
= (svc_procfunc
) nfsd3_proc_getattr
,
680 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_fhandleargs
,
681 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_attrstatres
,
682 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
683 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
684 .pc_ressize
= sizeof(struct nfsd3_attrstatres
),
685 .pc_cachetype
= RC_NOCACHE
,
686 .pc_xdrressize
= ST
+AT
,
688 [NFS3PROC_SETATTR
] = {
689 .pc_func
= (svc_procfunc
) nfsd3_proc_setattr
,
690 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_sattrargs
,
691 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_wccstatres
,
692 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
693 .pc_argsize
= sizeof(struct nfsd3_sattrargs
),
694 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
695 .pc_cachetype
= RC_REPLBUFF
,
696 .pc_xdrressize
= ST
+WC
,
698 [NFS3PROC_LOOKUP
] = {
699 .pc_func
= (svc_procfunc
) nfsd3_proc_lookup
,
700 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_diropargs
,
701 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_diropres
,
702 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
703 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
704 .pc_ressize
= sizeof(struct nfsd3_diropres
),
705 .pc_cachetype
= RC_NOCACHE
,
706 .pc_xdrressize
= ST
+FH
+pAT
+pAT
,
708 [NFS3PROC_ACCESS
] = {
709 .pc_func
= (svc_procfunc
) nfsd3_proc_access
,
710 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_accessargs
,
711 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_accessres
,
712 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
713 .pc_argsize
= sizeof(struct nfsd3_accessargs
),
714 .pc_ressize
= sizeof(struct nfsd3_accessres
),
715 .pc_cachetype
= RC_NOCACHE
,
716 .pc_xdrressize
= ST
+pAT
+1,
718 [NFS3PROC_READLINK
] = {
719 .pc_func
= (svc_procfunc
) nfsd3_proc_readlink
,
720 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_readlinkargs
,
721 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_readlinkres
,
722 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
723 .pc_argsize
= sizeof(struct nfsd3_readlinkargs
),
724 .pc_ressize
= sizeof(struct nfsd3_readlinkres
),
725 .pc_cachetype
= RC_NOCACHE
,
726 .pc_xdrressize
= ST
+pAT
+1+NFS3_MAXPATHLEN
/4,
729 .pc_func
= (svc_procfunc
) nfsd3_proc_read
,
730 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_readargs
,
731 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_readres
,
732 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
733 .pc_argsize
= sizeof(struct nfsd3_readargs
),
734 .pc_ressize
= sizeof(struct nfsd3_readres
),
735 .pc_cachetype
= RC_NOCACHE
,
736 .pc_xdrressize
= ST
+pAT
+4+NFSSVC_MAXBLKSIZE
/4,
739 .pc_func
= (svc_procfunc
) nfsd3_proc_write
,
740 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_writeargs
,
741 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_writeres
,
742 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
743 .pc_argsize
= sizeof(struct nfsd3_writeargs
),
744 .pc_ressize
= sizeof(struct nfsd3_writeres
),
745 .pc_cachetype
= RC_REPLBUFF
,
746 .pc_xdrressize
= ST
+WC
+4,
748 [NFS3PROC_CREATE
] = {
749 .pc_func
= (svc_procfunc
) nfsd3_proc_create
,
750 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_createargs
,
751 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_createres
,
752 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
753 .pc_argsize
= sizeof(struct nfsd3_createargs
),
754 .pc_ressize
= sizeof(struct nfsd3_createres
),
755 .pc_cachetype
= RC_REPLBUFF
,
756 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
759 .pc_func
= (svc_procfunc
) nfsd3_proc_mkdir
,
760 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_mkdirargs
,
761 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_createres
,
762 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
763 .pc_argsize
= sizeof(struct nfsd3_mkdirargs
),
764 .pc_ressize
= sizeof(struct nfsd3_createres
),
765 .pc_cachetype
= RC_REPLBUFF
,
766 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
768 [NFS3PROC_SYMLINK
] = {
769 .pc_func
= (svc_procfunc
) nfsd3_proc_symlink
,
770 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_symlinkargs
,
771 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_createres
,
772 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
773 .pc_argsize
= sizeof(struct nfsd3_symlinkargs
),
774 .pc_ressize
= sizeof(struct nfsd3_createres
),
775 .pc_cachetype
= RC_REPLBUFF
,
776 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
779 .pc_func
= (svc_procfunc
) nfsd3_proc_mknod
,
780 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_mknodargs
,
781 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_createres
,
782 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
783 .pc_argsize
= sizeof(struct nfsd3_mknodargs
),
784 .pc_ressize
= sizeof(struct nfsd3_createres
),
785 .pc_cachetype
= RC_REPLBUFF
,
786 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
788 [NFS3PROC_REMOVE
] = {
789 .pc_func
= (svc_procfunc
) nfsd3_proc_remove
,
790 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_diropargs
,
791 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_wccstatres
,
792 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
793 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
794 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
795 .pc_cachetype
= RC_REPLBUFF
,
796 .pc_xdrressize
= ST
+WC
,
799 .pc_func
= (svc_procfunc
) nfsd3_proc_rmdir
,
800 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_diropargs
,
801 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_wccstatres
,
802 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
803 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
804 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
805 .pc_cachetype
= RC_REPLBUFF
,
806 .pc_xdrressize
= ST
+WC
,
808 [NFS3PROC_RENAME
] = {
809 .pc_func
= (svc_procfunc
) nfsd3_proc_rename
,
810 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_renameargs
,
811 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_renameres
,
812 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
813 .pc_argsize
= sizeof(struct nfsd3_renameargs
),
814 .pc_ressize
= sizeof(struct nfsd3_renameres
),
815 .pc_cachetype
= RC_REPLBUFF
,
816 .pc_xdrressize
= ST
+WC
+WC
,
819 .pc_func
= (svc_procfunc
) nfsd3_proc_link
,
820 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_linkargs
,
821 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_linkres
,
822 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
823 .pc_argsize
= sizeof(struct nfsd3_linkargs
),
824 .pc_ressize
= sizeof(struct nfsd3_linkres
),
825 .pc_cachetype
= RC_REPLBUFF
,
826 .pc_xdrressize
= ST
+pAT
+WC
,
828 [NFS3PROC_READDIR
] = {
829 .pc_func
= (svc_procfunc
) nfsd3_proc_readdir
,
830 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_readdirargs
,
831 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_readdirres
,
832 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
833 .pc_argsize
= sizeof(struct nfsd3_readdirargs
),
834 .pc_ressize
= sizeof(struct nfsd3_readdirres
),
835 .pc_cachetype
= RC_NOCACHE
,
837 [NFS3PROC_READDIRPLUS
] = {
838 .pc_func
= (svc_procfunc
) nfsd3_proc_readdirplus
,
839 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_readdirplusargs
,
840 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_readdirres
,
841 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
842 .pc_argsize
= sizeof(struct nfsd3_readdirplusargs
),
843 .pc_ressize
= sizeof(struct nfsd3_readdirres
),
844 .pc_cachetype
= RC_NOCACHE
,
846 [NFS3PROC_FSSTAT
] = {
847 .pc_func
= (svc_procfunc
) nfsd3_proc_fsstat
,
848 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_fhandleargs
,
849 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_fsstatres
,
850 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
851 .pc_ressize
= sizeof(struct nfsd3_fsstatres
),
852 .pc_cachetype
= RC_NOCACHE
,
853 .pc_xdrressize
= ST
+pAT
+2*6+1,
855 [NFS3PROC_FSINFO
] = {
856 .pc_func
= (svc_procfunc
) nfsd3_proc_fsinfo
,
857 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_fhandleargs
,
858 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_fsinfores
,
859 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
860 .pc_ressize
= sizeof(struct nfsd3_fsinfores
),
861 .pc_cachetype
= RC_NOCACHE
,
862 .pc_xdrressize
= ST
+pAT
+12,
864 [NFS3PROC_PATHCONF
] = {
865 .pc_func
= (svc_procfunc
) nfsd3_proc_pathconf
,
866 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_fhandleargs
,
867 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_pathconfres
,
868 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
869 .pc_ressize
= sizeof(struct nfsd3_pathconfres
),
870 .pc_cachetype
= RC_NOCACHE
,
871 .pc_xdrressize
= ST
+pAT
+6,
873 [NFS3PROC_COMMIT
] = {
874 .pc_func
= (svc_procfunc
) nfsd3_proc_commit
,
875 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_commitargs
,
876 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_commitres
,
877 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
878 .pc_argsize
= sizeof(struct nfsd3_commitargs
),
879 .pc_ressize
= sizeof(struct nfsd3_commitres
),
880 .pc_cachetype
= RC_NOCACHE
,
881 .pc_xdrressize
= ST
+WC
+2,
885 struct svc_version nfsd_version3
= {
888 .vs_proc
= nfsd_procedures3
,
889 .vs_dispatch
= nfsd_dispatch
,
890 .vs_xdrsize
= NFS3_SVC_XDRSIZE
,