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
161 resp
->count
= argp
->count
;
162 if (max_blocksize
< resp
->count
)
163 resp
->count
= max_blocksize
;
165 svc_reserve_auth(rqstp
, ((1 + NFS3_POST_OP_ATTR_WORDS
+ 3)<<2) + resp
->count
+4);
167 fh_copy(&resp
->fh
, &argp
->fh
);
168 nfserr
= nfsd_read(rqstp
, &resp
->fh
,
170 rqstp
->rq_vec
, argp
->vlen
,
173 struct inode
*inode
= resp
->fh
.fh_dentry
->d_inode
;
175 resp
->eof
= (argp
->offset
+ resp
->count
) >= inode
->i_size
;
178 RETURN_STATUS(nfserr
);
182 * Write data to a file
185 nfsd3_proc_write(struct svc_rqst
*rqstp
, struct nfsd3_writeargs
*argp
,
186 struct nfsd3_writeres
*resp
)
189 unsigned long cnt
= argp
->len
;
191 dprintk("nfsd: WRITE(3) %s %d bytes at %Lu%s\n",
192 SVCFH_fmt(&argp
->fh
),
194 (unsigned long long) argp
->offset
,
195 argp
->stable
? " stable" : "");
197 fh_copy(&resp
->fh
, &argp
->fh
);
198 resp
->committed
= argp
->stable
;
199 nfserr
= nfsd_write(rqstp
, &resp
->fh
, NULL
,
201 rqstp
->rq_vec
, argp
->vlen
,
205 RETURN_STATUS(nfserr
);
209 * With NFSv3, CREATE processing is a lot easier than with NFSv2.
210 * At least in theory; we'll see how it fares in practice when the
211 * first reports about SunOS compatibility problems start to pour in...
214 nfsd3_proc_create(struct svc_rqst
*rqstp
, struct nfsd3_createargs
*argp
,
215 struct nfsd3_diropres
*resp
)
217 svc_fh
*dirfhp
, *newfhp
= NULL
;
221 dprintk("nfsd: CREATE(3) %s %.*s\n",
222 SVCFH_fmt(&argp
->fh
),
226 dirfhp
= fh_copy(&resp
->dirfh
, &argp
->fh
);
227 newfhp
= fh_init(&resp
->fh
, NFS3_FHSIZE
);
230 /* Get the directory inode */
231 nfserr
= fh_verify(rqstp
, dirfhp
, S_IFDIR
, NFSD_MAY_CREATE
);
233 RETURN_STATUS(nfserr
);
235 /* Unfudge the mode bits */
236 attr
->ia_mode
&= ~S_IFMT
;
237 if (!(attr
->ia_valid
& ATTR_MODE
)) {
238 attr
->ia_valid
|= ATTR_MODE
;
239 attr
->ia_mode
= S_IFREG
;
241 attr
->ia_mode
= (attr
->ia_mode
& ~S_IFMT
) | S_IFREG
;
244 /* Now create the file and set attributes */
245 nfserr
= do_nfsd_create(rqstp
, dirfhp
, argp
->name
, argp
->len
,
247 argp
->createmode
, (u32
*)argp
->verf
, NULL
, NULL
);
249 RETURN_STATUS(nfserr
);
253 * Make directory. This operation is not idempotent.
256 nfsd3_proc_mkdir(struct svc_rqst
*rqstp
, struct nfsd3_createargs
*argp
,
257 struct nfsd3_diropres
*resp
)
261 dprintk("nfsd: MKDIR(3) %s %.*s\n",
262 SVCFH_fmt(&argp
->fh
),
266 argp
->attrs
.ia_valid
&= ~ATTR_SIZE
;
267 fh_copy(&resp
->dirfh
, &argp
->fh
);
268 fh_init(&resp
->fh
, NFS3_FHSIZE
);
269 nfserr
= nfsd_create(rqstp
, &resp
->dirfh
, argp
->name
, argp
->len
,
270 &argp
->attrs
, S_IFDIR
, 0, &resp
->fh
);
271 fh_unlock(&resp
->dirfh
);
272 RETURN_STATUS(nfserr
);
276 nfsd3_proc_symlink(struct svc_rqst
*rqstp
, struct nfsd3_symlinkargs
*argp
,
277 struct nfsd3_diropres
*resp
)
281 dprintk("nfsd: SYMLINK(3) %s %.*s -> %.*s\n",
282 SVCFH_fmt(&argp
->ffh
),
283 argp
->flen
, argp
->fname
,
284 argp
->tlen
, argp
->tname
);
286 fh_copy(&resp
->dirfh
, &argp
->ffh
);
287 fh_init(&resp
->fh
, NFS3_FHSIZE
);
288 nfserr
= nfsd_symlink(rqstp
, &resp
->dirfh
, argp
->fname
, argp
->flen
,
289 argp
->tname
, argp
->tlen
,
290 &resp
->fh
, &argp
->attrs
);
291 RETURN_STATUS(nfserr
);
295 * Make socket/fifo/device.
298 nfsd3_proc_mknod(struct svc_rqst
*rqstp
, struct nfsd3_mknodargs
*argp
,
299 struct nfsd3_diropres
*resp
)
305 dprintk("nfsd: MKNOD(3) %s %.*s\n",
306 SVCFH_fmt(&argp
->fh
),
310 fh_copy(&resp
->dirfh
, &argp
->fh
);
311 fh_init(&resp
->fh
, NFS3_FHSIZE
);
313 if (argp
->ftype
== 0 || argp
->ftype
>= NF3BAD
)
314 RETURN_STATUS(nfserr_inval
);
315 if (argp
->ftype
== NF3CHR
|| argp
->ftype
== NF3BLK
) {
316 rdev
= MKDEV(argp
->major
, argp
->minor
);
317 if (MAJOR(rdev
) != argp
->major
||
318 MINOR(rdev
) != argp
->minor
)
319 RETURN_STATUS(nfserr_inval
);
321 if (argp
->ftype
!= NF3SOCK
&& argp
->ftype
!= NF3FIFO
)
322 RETURN_STATUS(nfserr_inval
);
324 type
= nfs3_ftypes
[argp
->ftype
];
325 nfserr
= nfsd_create(rqstp
, &resp
->dirfh
, argp
->name
, argp
->len
,
326 &argp
->attrs
, type
, rdev
, &resp
->fh
);
327 fh_unlock(&resp
->dirfh
);
328 RETURN_STATUS(nfserr
);
332 * Remove file/fifo/socket etc.
335 nfsd3_proc_remove(struct svc_rqst
*rqstp
, struct nfsd3_diropargs
*argp
,
336 struct nfsd3_attrstat
*resp
)
340 dprintk("nfsd: REMOVE(3) %s %.*s\n",
341 SVCFH_fmt(&argp
->fh
),
345 /* Unlink. -S_IFDIR means file must not be a directory */
346 fh_copy(&resp
->fh
, &argp
->fh
);
347 nfserr
= nfsd_unlink(rqstp
, &resp
->fh
, -S_IFDIR
, argp
->name
, argp
->len
);
348 fh_unlock(&resp
->fh
);
349 RETURN_STATUS(nfserr
);
356 nfsd3_proc_rmdir(struct svc_rqst
*rqstp
, struct nfsd3_diropargs
*argp
,
357 struct nfsd3_attrstat
*resp
)
361 dprintk("nfsd: RMDIR(3) %s %.*s\n",
362 SVCFH_fmt(&argp
->fh
),
366 fh_copy(&resp
->fh
, &argp
->fh
);
367 nfserr
= nfsd_unlink(rqstp
, &resp
->fh
, S_IFDIR
, argp
->name
, argp
->len
);
368 fh_unlock(&resp
->fh
);
369 RETURN_STATUS(nfserr
);
373 nfsd3_proc_rename(struct svc_rqst
*rqstp
, struct nfsd3_renameargs
*argp
,
374 struct nfsd3_renameres
*resp
)
378 dprintk("nfsd: RENAME(3) %s %.*s ->\n",
379 SVCFH_fmt(&argp
->ffh
),
382 dprintk("nfsd: -> %s %.*s\n",
383 SVCFH_fmt(&argp
->tfh
),
387 fh_copy(&resp
->ffh
, &argp
->ffh
);
388 fh_copy(&resp
->tfh
, &argp
->tfh
);
389 nfserr
= nfsd_rename(rqstp
, &resp
->ffh
, argp
->fname
, argp
->flen
,
390 &resp
->tfh
, argp
->tname
, argp
->tlen
);
391 RETURN_STATUS(nfserr
);
395 nfsd3_proc_link(struct svc_rqst
*rqstp
, struct nfsd3_linkargs
*argp
,
396 struct nfsd3_linkres
*resp
)
400 dprintk("nfsd: LINK(3) %s ->\n",
401 SVCFH_fmt(&argp
->ffh
));
402 dprintk("nfsd: -> %s %.*s\n",
403 SVCFH_fmt(&argp
->tfh
),
407 fh_copy(&resp
->fh
, &argp
->ffh
);
408 fh_copy(&resp
->tfh
, &argp
->tfh
);
409 nfserr
= nfsd_link(rqstp
, &resp
->tfh
, argp
->tname
, argp
->tlen
,
411 RETURN_STATUS(nfserr
);
415 * Read a portion of a directory.
418 nfsd3_proc_readdir(struct svc_rqst
*rqstp
, struct nfsd3_readdirargs
*argp
,
419 struct nfsd3_readdirres
*resp
)
424 dprintk("nfsd: READDIR(3) %s %d bytes at %d\n",
425 SVCFH_fmt(&argp
->fh
),
426 argp
->count
, (u32
) argp
->cookie
);
428 /* Make sure we've room for the NULL ptr & eof flag, and shrink to
429 * client read size */
430 count
= (argp
->count
>> 2) - 2;
432 /* Read directory and encode entries on the fly */
433 fh_copy(&resp
->fh
, &argp
->fh
);
435 resp
->buflen
= count
;
436 resp
->common
.err
= nfs_ok
;
437 resp
->buffer
= argp
->buffer
;
439 nfserr
= nfsd_readdir(rqstp
, &resp
->fh
, (loff_t
*) &argp
->cookie
,
440 &resp
->common
, nfs3svc_encode_entry
);
441 memcpy(resp
->verf
, argp
->verf
, 8);
442 resp
->count
= resp
->buffer
- argp
->buffer
;
444 xdr_encode_hyper(resp
->offset
, argp
->cookie
);
446 RETURN_STATUS(nfserr
);
450 * Read a portion of a directory, including file handles and attrs.
451 * For now, we choose to ignore the dircount parameter.
454 nfsd3_proc_readdirplus(struct svc_rqst
*rqstp
, struct nfsd3_readdirargs
*argp
,
455 struct nfsd3_readdirres
*resp
)
461 caddr_t page_addr
= NULL
;
463 dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
464 SVCFH_fmt(&argp
->fh
),
465 argp
->count
, (u32
) argp
->cookie
);
467 /* Convert byte count to number of words (i.e. >> 2),
468 * and reserve room for the NULL ptr & eof flag (-2 words) */
469 resp
->count
= (argp
->count
>> 2) - 2;
471 /* Read directory and encode entries on the fly */
472 fh_copy(&resp
->fh
, &argp
->fh
);
474 resp
->common
.err
= nfs_ok
;
475 resp
->buffer
= argp
->buffer
;
476 resp
->buflen
= resp
->count
;
478 offset
= argp
->cookie
;
479 nfserr
= nfsd_readdir(rqstp
, &resp
->fh
,
482 nfs3svc_encode_entry_plus
);
483 memcpy(resp
->verf
, argp
->verf
, 8);
484 for (p
= rqstp
->rq_respages
+ 1; p
< rqstp
->rq_next_page
; p
++) {
485 page_addr
= page_address(*p
);
487 if (((caddr_t
)resp
->buffer
>= page_addr
) &&
488 ((caddr_t
)resp
->buffer
< page_addr
+ PAGE_SIZE
)) {
489 count
+= (caddr_t
)resp
->buffer
- page_addr
;
494 resp
->count
= count
>> 2;
496 if (unlikely(resp
->offset1
)) {
497 /* we ended up with offset on a page boundary */
498 *resp
->offset
= htonl(offset
>> 32);
499 *resp
->offset1
= htonl(offset
& 0xffffffff);
500 resp
->offset1
= NULL
;
502 xdr_encode_hyper(resp
->offset
, offset
);
506 RETURN_STATUS(nfserr
);
510 * Get file system stats
513 nfsd3_proc_fsstat(struct svc_rqst
* rqstp
, struct nfsd_fhandle
*argp
,
514 struct nfsd3_fsstatres
*resp
)
518 dprintk("nfsd: FSSTAT(3) %s\n",
519 SVCFH_fmt(&argp
->fh
));
521 nfserr
= nfsd_statfs(rqstp
, &argp
->fh
, &resp
->stats
, 0);
523 RETURN_STATUS(nfserr
);
527 * Get file system info
530 nfsd3_proc_fsinfo(struct svc_rqst
* rqstp
, struct nfsd_fhandle
*argp
,
531 struct nfsd3_fsinfores
*resp
)
534 u32 max_blocksize
= svc_max_payload(rqstp
);
536 dprintk("nfsd: FSINFO(3) %s\n",
537 SVCFH_fmt(&argp
->fh
));
539 resp
->f_rtmax
= max_blocksize
;
540 resp
->f_rtpref
= max_blocksize
;
541 resp
->f_rtmult
= PAGE_SIZE
;
542 resp
->f_wtmax
= max_blocksize
;
543 resp
->f_wtpref
= max_blocksize
;
544 resp
->f_wtmult
= PAGE_SIZE
;
545 resp
->f_dtpref
= PAGE_SIZE
;
546 resp
->f_maxfilesize
= ~(u32
) 0;
547 resp
->f_properties
= NFS3_FSF_DEFAULT
;
549 nfserr
= fh_verify(rqstp
, &argp
->fh
, 0,
550 NFSD_MAY_NOP
| NFSD_MAY_BYPASS_GSS_ON_ROOT
);
552 /* Check special features of the file system. May request
553 * different read/write sizes for file systems known to have
554 * problems with large blocks */
556 struct super_block
*sb
= argp
->fh
.fh_dentry
->d_inode
->i_sb
;
558 /* Note that we don't care for remote fs's here */
559 if (sb
->s_magic
== MSDOS_SUPER_MAGIC
) {
560 resp
->f_properties
= NFS3_FSF_BILLYBOY
;
562 resp
->f_maxfilesize
= sb
->s_maxbytes
;
566 RETURN_STATUS(nfserr
);
570 * Get pathconf info for the specified file
573 nfsd3_proc_pathconf(struct svc_rqst
* rqstp
, struct nfsd_fhandle
*argp
,
574 struct nfsd3_pathconfres
*resp
)
578 dprintk("nfsd: PATHCONF(3) %s\n",
579 SVCFH_fmt(&argp
->fh
));
581 /* Set default pathconf */
582 resp
->p_link_max
= 255; /* at least */
583 resp
->p_name_max
= 255; /* at least */
584 resp
->p_no_trunc
= 0;
585 resp
->p_chown_restricted
= 1;
586 resp
->p_case_insensitive
= 0;
587 resp
->p_case_preserving
= 1;
589 nfserr
= fh_verify(rqstp
, &argp
->fh
, 0, NFSD_MAY_NOP
);
592 struct super_block
*sb
= argp
->fh
.fh_dentry
->d_inode
->i_sb
;
594 /* Note that we don't care for remote fs's here */
595 switch (sb
->s_magic
) {
596 case EXT2_SUPER_MAGIC
:
597 resp
->p_link_max
= EXT2_LINK_MAX
;
598 resp
->p_name_max
= EXT2_NAME_LEN
;
600 case MSDOS_SUPER_MAGIC
:
601 resp
->p_case_insensitive
= 1;
602 resp
->p_case_preserving
= 0;
608 RETURN_STATUS(nfserr
);
613 * Commit a file (range) to stable storage.
616 nfsd3_proc_commit(struct svc_rqst
* rqstp
, struct nfsd3_commitargs
*argp
,
617 struct nfsd3_commitres
*resp
)
621 dprintk("nfsd: COMMIT(3) %s %u@%Lu\n",
622 SVCFH_fmt(&argp
->fh
),
624 (unsigned long long) argp
->offset
);
626 if (argp
->offset
> NFS_OFFSET_MAX
)
627 RETURN_STATUS(nfserr_inval
);
629 fh_copy(&resp
->fh
, &argp
->fh
);
630 nfserr
= nfsd_commit(rqstp
, &resp
->fh
, argp
->offset
, argp
->count
);
632 RETURN_STATUS(nfserr
);
637 * NFSv3 Server procedures.
638 * Only the results of non-idempotent operations are cached.
640 #define nfs3svc_decode_fhandleargs nfs3svc_decode_fhandle
641 #define nfs3svc_encode_attrstatres nfs3svc_encode_attrstat
642 #define nfs3svc_encode_wccstatres nfs3svc_encode_wccstat
643 #define nfsd3_mkdirargs nfsd3_createargs
644 #define nfsd3_readdirplusargs nfsd3_readdirargs
645 #define nfsd3_fhandleargs nfsd_fhandle
646 #define nfsd3_fhandleres nfsd3_attrstat
647 #define nfsd3_attrstatres nfsd3_attrstat
648 #define nfsd3_wccstatres nfsd3_attrstat
649 #define nfsd3_createres nfsd3_diropres
650 #define nfsd3_voidres nfsd3_voidargs
651 struct nfsd3_voidargs
{ int dummy
; };
653 #define PROC(name, argt, rest, relt, cache, respsize) \
654 { (svc_procfunc) nfsd3_proc_##name, \
655 (kxdrproc_t) nfs3svc_decode_##argt##args, \
656 (kxdrproc_t) nfs3svc_encode_##rest##res, \
657 (kxdrproc_t) nfs3svc_release_##relt, \
658 sizeof(struct nfsd3_##argt##args), \
659 sizeof(struct nfsd3_##rest##res), \
665 #define ST 1 /* status*/
666 #define FH 17 /* filehandle with length */
667 #define AT 21 /* attributes */
668 #define pAT (1+AT) /* post attributes - conditional */
669 #define WC (7+pAT) /* WCC attributes */
671 static struct svc_procedure nfsd_procedures3
[22] = {
673 .pc_func
= (svc_procfunc
) nfsd3_proc_null
,
674 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_voidres
,
675 .pc_argsize
= sizeof(struct nfsd3_voidargs
),
676 .pc_ressize
= sizeof(struct nfsd3_voidres
),
677 .pc_cachetype
= RC_NOCACHE
,
680 [NFS3PROC_GETATTR
] = {
681 .pc_func
= (svc_procfunc
) nfsd3_proc_getattr
,
682 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_fhandleargs
,
683 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_attrstatres
,
684 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
685 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
686 .pc_ressize
= sizeof(struct nfsd3_attrstatres
),
687 .pc_cachetype
= RC_NOCACHE
,
688 .pc_xdrressize
= ST
+AT
,
690 [NFS3PROC_SETATTR
] = {
691 .pc_func
= (svc_procfunc
) nfsd3_proc_setattr
,
692 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_sattrargs
,
693 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_wccstatres
,
694 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
695 .pc_argsize
= sizeof(struct nfsd3_sattrargs
),
696 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
697 .pc_cachetype
= RC_REPLBUFF
,
698 .pc_xdrressize
= ST
+WC
,
700 [NFS3PROC_LOOKUP
] = {
701 .pc_func
= (svc_procfunc
) nfsd3_proc_lookup
,
702 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_diropargs
,
703 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_diropres
,
704 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
705 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
706 .pc_ressize
= sizeof(struct nfsd3_diropres
),
707 .pc_cachetype
= RC_NOCACHE
,
708 .pc_xdrressize
= ST
+FH
+pAT
+pAT
,
710 [NFS3PROC_ACCESS
] = {
711 .pc_func
= (svc_procfunc
) nfsd3_proc_access
,
712 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_accessargs
,
713 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_accessres
,
714 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
715 .pc_argsize
= sizeof(struct nfsd3_accessargs
),
716 .pc_ressize
= sizeof(struct nfsd3_accessres
),
717 .pc_cachetype
= RC_NOCACHE
,
718 .pc_xdrressize
= ST
+pAT
+1,
720 [NFS3PROC_READLINK
] = {
721 .pc_func
= (svc_procfunc
) nfsd3_proc_readlink
,
722 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_readlinkargs
,
723 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_readlinkres
,
724 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
725 .pc_argsize
= sizeof(struct nfsd3_readlinkargs
),
726 .pc_ressize
= sizeof(struct nfsd3_readlinkres
),
727 .pc_cachetype
= RC_NOCACHE
,
728 .pc_xdrressize
= ST
+pAT
+1+NFS3_MAXPATHLEN
/4,
731 .pc_func
= (svc_procfunc
) nfsd3_proc_read
,
732 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_readargs
,
733 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_readres
,
734 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
735 .pc_argsize
= sizeof(struct nfsd3_readargs
),
736 .pc_ressize
= sizeof(struct nfsd3_readres
),
737 .pc_cachetype
= RC_NOCACHE
,
738 .pc_xdrressize
= ST
+pAT
+4+NFSSVC_MAXBLKSIZE
/4,
741 .pc_func
= (svc_procfunc
) nfsd3_proc_write
,
742 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_writeargs
,
743 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_writeres
,
744 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
745 .pc_argsize
= sizeof(struct nfsd3_writeargs
),
746 .pc_ressize
= sizeof(struct nfsd3_writeres
),
747 .pc_cachetype
= RC_REPLBUFF
,
748 .pc_xdrressize
= ST
+WC
+4,
750 [NFS3PROC_CREATE
] = {
751 .pc_func
= (svc_procfunc
) nfsd3_proc_create
,
752 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_createargs
,
753 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_createres
,
754 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
755 .pc_argsize
= sizeof(struct nfsd3_createargs
),
756 .pc_ressize
= sizeof(struct nfsd3_createres
),
757 .pc_cachetype
= RC_REPLBUFF
,
758 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
761 .pc_func
= (svc_procfunc
) nfsd3_proc_mkdir
,
762 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_mkdirargs
,
763 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_createres
,
764 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
765 .pc_argsize
= sizeof(struct nfsd3_mkdirargs
),
766 .pc_ressize
= sizeof(struct nfsd3_createres
),
767 .pc_cachetype
= RC_REPLBUFF
,
768 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
770 [NFS3PROC_SYMLINK
] = {
771 .pc_func
= (svc_procfunc
) nfsd3_proc_symlink
,
772 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_symlinkargs
,
773 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_createres
,
774 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
775 .pc_argsize
= sizeof(struct nfsd3_symlinkargs
),
776 .pc_ressize
= sizeof(struct nfsd3_createres
),
777 .pc_cachetype
= RC_REPLBUFF
,
778 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
781 .pc_func
= (svc_procfunc
) nfsd3_proc_mknod
,
782 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_mknodargs
,
783 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_createres
,
784 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
785 .pc_argsize
= sizeof(struct nfsd3_mknodargs
),
786 .pc_ressize
= sizeof(struct nfsd3_createres
),
787 .pc_cachetype
= RC_REPLBUFF
,
788 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
790 [NFS3PROC_REMOVE
] = {
791 .pc_func
= (svc_procfunc
) nfsd3_proc_remove
,
792 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_diropargs
,
793 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_wccstatres
,
794 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
795 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
796 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
797 .pc_cachetype
= RC_REPLBUFF
,
798 .pc_xdrressize
= ST
+WC
,
801 .pc_func
= (svc_procfunc
) nfsd3_proc_rmdir
,
802 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_diropargs
,
803 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_wccstatres
,
804 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
805 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
806 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
807 .pc_cachetype
= RC_REPLBUFF
,
808 .pc_xdrressize
= ST
+WC
,
810 [NFS3PROC_RENAME
] = {
811 .pc_func
= (svc_procfunc
) nfsd3_proc_rename
,
812 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_renameargs
,
813 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_renameres
,
814 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
815 .pc_argsize
= sizeof(struct nfsd3_renameargs
),
816 .pc_ressize
= sizeof(struct nfsd3_renameres
),
817 .pc_cachetype
= RC_REPLBUFF
,
818 .pc_xdrressize
= ST
+WC
+WC
,
821 .pc_func
= (svc_procfunc
) nfsd3_proc_link
,
822 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_linkargs
,
823 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_linkres
,
824 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle2
,
825 .pc_argsize
= sizeof(struct nfsd3_linkargs
),
826 .pc_ressize
= sizeof(struct nfsd3_linkres
),
827 .pc_cachetype
= RC_REPLBUFF
,
828 .pc_xdrressize
= ST
+pAT
+WC
,
830 [NFS3PROC_READDIR
] = {
831 .pc_func
= (svc_procfunc
) nfsd3_proc_readdir
,
832 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_readdirargs
,
833 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_readdirres
,
834 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
835 .pc_argsize
= sizeof(struct nfsd3_readdirargs
),
836 .pc_ressize
= sizeof(struct nfsd3_readdirres
),
837 .pc_cachetype
= RC_NOCACHE
,
839 [NFS3PROC_READDIRPLUS
] = {
840 .pc_func
= (svc_procfunc
) nfsd3_proc_readdirplus
,
841 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_readdirplusargs
,
842 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_readdirres
,
843 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
844 .pc_argsize
= sizeof(struct nfsd3_readdirplusargs
),
845 .pc_ressize
= sizeof(struct nfsd3_readdirres
),
846 .pc_cachetype
= RC_NOCACHE
,
848 [NFS3PROC_FSSTAT
] = {
849 .pc_func
= (svc_procfunc
) nfsd3_proc_fsstat
,
850 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_fhandleargs
,
851 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_fsstatres
,
852 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
853 .pc_ressize
= sizeof(struct nfsd3_fsstatres
),
854 .pc_cachetype
= RC_NOCACHE
,
855 .pc_xdrressize
= ST
+pAT
+2*6+1,
857 [NFS3PROC_FSINFO
] = {
858 .pc_func
= (svc_procfunc
) nfsd3_proc_fsinfo
,
859 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_fhandleargs
,
860 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_fsinfores
,
861 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
862 .pc_ressize
= sizeof(struct nfsd3_fsinfores
),
863 .pc_cachetype
= RC_NOCACHE
,
864 .pc_xdrressize
= ST
+pAT
+12,
866 [NFS3PROC_PATHCONF
] = {
867 .pc_func
= (svc_procfunc
) nfsd3_proc_pathconf
,
868 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_fhandleargs
,
869 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_pathconfres
,
870 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
871 .pc_ressize
= sizeof(struct nfsd3_pathconfres
),
872 .pc_cachetype
= RC_NOCACHE
,
873 .pc_xdrressize
= ST
+pAT
+6,
875 [NFS3PROC_COMMIT
] = {
876 .pc_func
= (svc_procfunc
) nfsd3_proc_commit
,
877 .pc_decode
= (kxdrproc_t
) nfs3svc_decode_commitargs
,
878 .pc_encode
= (kxdrproc_t
) nfs3svc_encode_commitres
,
879 .pc_release
= (kxdrproc_t
) nfs3svc_release_fhandle
,
880 .pc_argsize
= sizeof(struct nfsd3_commitargs
),
881 .pc_ressize
= sizeof(struct nfsd3_commitres
),
882 .pc_cachetype
= RC_NOCACHE
,
883 .pc_xdrressize
= ST
+WC
+2,
887 struct svc_version nfsd_version3
= {
890 .vs_proc
= nfsd_procedures3
,
891 .vs_dispatch
= nfsd_dispatch
,
892 .vs_xdrsize
= NFS3_SVC_XDRSIZE
,