1 // SPDX-License-Identifier: GPL-2.0
3 * Process version 3 NFS requests.
5 * Copyright (C) 1996, 1997, 1998 Olaf Kirch <okir@monad.swb.de>
9 #include <linux/ext2_fs.h>
10 #include <linux/magic.h>
16 #define NFSDDBG_FACILITY NFSDDBG_PROC
18 static int nfs3_ftypes
[] = {
25 S_IFSOCK
, /* NF3SOCK */
26 S_IFIFO
, /* NF3FIFO */
33 nfsd3_proc_null(struct svc_rqst
*rqstp
)
39 * Get a file's attributes
42 nfsd3_proc_getattr(struct svc_rqst
*rqstp
)
44 struct nfsd_fhandle
*argp
= rqstp
->rq_argp
;
45 struct nfsd3_attrstat
*resp
= rqstp
->rq_resp
;
47 dprintk("nfsd: GETATTR(3) %s\n",
48 SVCFH_fmt(&argp
->fh
));
50 fh_copy(&resp
->fh
, &argp
->fh
);
51 resp
->status
= fh_verify(rqstp
, &resp
->fh
, 0,
52 NFSD_MAY_NOP
| NFSD_MAY_BYPASS_GSS_ON_ROOT
);
53 if (resp
->status
!= nfs_ok
)
56 resp
->status
= fh_getattr(&resp
->fh
, &resp
->stat
);
62 * Set a file's attributes
65 nfsd3_proc_setattr(struct svc_rqst
*rqstp
)
67 struct nfsd3_sattrargs
*argp
= rqstp
->rq_argp
;
68 struct nfsd3_attrstat
*resp
= rqstp
->rq_resp
;
70 dprintk("nfsd: SETATTR(3) %s\n",
71 SVCFH_fmt(&argp
->fh
));
73 fh_copy(&resp
->fh
, &argp
->fh
);
74 resp
->status
= nfsd_setattr(rqstp
, &resp
->fh
, &argp
->attrs
,
75 argp
->check_guard
, argp
->guardtime
);
80 * Look up a path name component
83 nfsd3_proc_lookup(struct svc_rqst
*rqstp
)
85 struct nfsd3_diropargs
*argp
= rqstp
->rq_argp
;
86 struct nfsd3_diropres
*resp
= rqstp
->rq_resp
;
88 dprintk("nfsd: LOOKUP(3) %s %.*s\n",
93 fh_copy(&resp
->dirfh
, &argp
->fh
);
94 fh_init(&resp
->fh
, NFS3_FHSIZE
);
96 resp
->status
= nfsd_lookup(rqstp
, &resp
->dirfh
,
97 argp
->name
, argp
->len
,
106 nfsd3_proc_access(struct svc_rqst
*rqstp
)
108 struct nfsd3_accessargs
*argp
= rqstp
->rq_argp
;
109 struct nfsd3_accessres
*resp
= rqstp
->rq_resp
;
111 dprintk("nfsd: ACCESS(3) %s 0x%x\n",
112 SVCFH_fmt(&argp
->fh
),
115 fh_copy(&resp
->fh
, &argp
->fh
);
116 resp
->access
= argp
->access
;
117 resp
->status
= nfsd_access(rqstp
, &resp
->fh
, &resp
->access
, NULL
);
125 nfsd3_proc_readlink(struct svc_rqst
*rqstp
)
127 struct nfsd3_readlinkargs
*argp
= rqstp
->rq_argp
;
128 struct nfsd3_readlinkres
*resp
= rqstp
->rq_resp
;
130 dprintk("nfsd: READLINK(3) %s\n", SVCFH_fmt(&argp
->fh
));
132 /* Read the symlink. */
133 fh_copy(&resp
->fh
, &argp
->fh
);
134 resp
->len
= NFS3_MAXPATHLEN
;
135 resp
->status
= nfsd_readlink(rqstp
, &resp
->fh
, argp
->buffer
, &resp
->len
);
140 * Read a portion of a file.
143 nfsd3_proc_read(struct svc_rqst
*rqstp
)
145 struct nfsd3_readargs
*argp
= rqstp
->rq_argp
;
146 struct nfsd3_readres
*resp
= rqstp
->rq_resp
;
147 u32 max_blocksize
= svc_max_payload(rqstp
);
148 unsigned long cnt
= min(argp
->count
, max_blocksize
);
150 dprintk("nfsd: READ(3) %s %lu bytes at %Lu\n",
151 SVCFH_fmt(&argp
->fh
),
152 (unsigned long) argp
->count
,
153 (unsigned long long) argp
->offset
);
155 /* Obtain buffer pointer for payload.
156 * 1 (status) + 22 (post_op_attr) + 1 (count) + 1 (eof)
157 * + 1 (xdr opaque byte count) = 26
160 svc_reserve_auth(rqstp
, ((1 + NFS3_POST_OP_ATTR_WORDS
+ 3)<<2) + resp
->count
+4);
162 fh_copy(&resp
->fh
, &argp
->fh
);
163 resp
->status
= nfsd_read(rqstp
, &resp
->fh
, argp
->offset
,
164 rqstp
->rq_vec
, argp
->vlen
, &resp
->count
,
170 * Write data to a file
173 nfsd3_proc_write(struct svc_rqst
*rqstp
)
175 struct nfsd3_writeargs
*argp
= rqstp
->rq_argp
;
176 struct nfsd3_writeres
*resp
= rqstp
->rq_resp
;
177 unsigned long cnt
= argp
->len
;
180 dprintk("nfsd: WRITE(3) %s %d bytes at %Lu%s\n",
181 SVCFH_fmt(&argp
->fh
),
183 (unsigned long long) argp
->offset
,
184 argp
->stable
? " stable" : "");
186 fh_copy(&resp
->fh
, &argp
->fh
);
187 resp
->committed
= argp
->stable
;
188 nvecs
= svc_fill_write_vector(rqstp
, rqstp
->rq_arg
.pages
,
191 resp
->status
= nfserr_io
;
194 resp
->status
= nfsd_write(rqstp
, &resp
->fh
, argp
->offset
,
195 rqstp
->rq_vec
, nvecs
, &cnt
,
196 resp
->committed
, resp
->verf
);
203 * With NFSv3, CREATE processing is a lot easier than with NFSv2.
204 * At least in theory; we'll see how it fares in practice when the
205 * first reports about SunOS compatibility problems start to pour in...
208 nfsd3_proc_create(struct svc_rqst
*rqstp
)
210 struct nfsd3_createargs
*argp
= rqstp
->rq_argp
;
211 struct nfsd3_diropres
*resp
= rqstp
->rq_resp
;
212 svc_fh
*dirfhp
, *newfhp
= NULL
;
215 dprintk("nfsd: CREATE(3) %s %.*s\n",
216 SVCFH_fmt(&argp
->fh
),
220 dirfhp
= fh_copy(&resp
->dirfh
, &argp
->fh
);
221 newfhp
= fh_init(&resp
->fh
, NFS3_FHSIZE
);
224 /* Unfudge the mode bits */
225 attr
->ia_mode
&= ~S_IFMT
;
226 if (!(attr
->ia_valid
& ATTR_MODE
)) {
227 attr
->ia_valid
|= ATTR_MODE
;
228 attr
->ia_mode
= S_IFREG
;
230 attr
->ia_mode
= (attr
->ia_mode
& ~S_IFMT
) | S_IFREG
;
233 /* Now create the file and set attributes */
234 resp
->status
= do_nfsd_create(rqstp
, dirfhp
, argp
->name
, argp
->len
,
235 attr
, newfhp
, argp
->createmode
,
236 (u32
*)argp
->verf
, NULL
, NULL
);
241 * Make directory. This operation is not idempotent.
244 nfsd3_proc_mkdir(struct svc_rqst
*rqstp
)
246 struct nfsd3_createargs
*argp
= rqstp
->rq_argp
;
247 struct nfsd3_diropres
*resp
= rqstp
->rq_resp
;
249 dprintk("nfsd: MKDIR(3) %s %.*s\n",
250 SVCFH_fmt(&argp
->fh
),
254 argp
->attrs
.ia_valid
&= ~ATTR_SIZE
;
255 fh_copy(&resp
->dirfh
, &argp
->fh
);
256 fh_init(&resp
->fh
, NFS3_FHSIZE
);
257 resp
->status
= nfsd_create(rqstp
, &resp
->dirfh
, argp
->name
, argp
->len
,
258 &argp
->attrs
, S_IFDIR
, 0, &resp
->fh
);
259 fh_unlock(&resp
->dirfh
);
264 nfsd3_proc_symlink(struct svc_rqst
*rqstp
)
266 struct nfsd3_symlinkargs
*argp
= rqstp
->rq_argp
;
267 struct nfsd3_diropres
*resp
= rqstp
->rq_resp
;
269 if (argp
->tlen
== 0) {
270 resp
->status
= nfserr_inval
;
273 if (argp
->tlen
> NFS3_MAXPATHLEN
) {
274 resp
->status
= nfserr_nametoolong
;
278 argp
->tname
= svc_fill_symlink_pathname(rqstp
, &argp
->first
,
279 page_address(rqstp
->rq_arg
.pages
[0]),
281 if (IS_ERR(argp
->tname
)) {
282 resp
->status
= nfserrno(PTR_ERR(argp
->tname
));
286 dprintk("nfsd: SYMLINK(3) %s %.*s -> %.*s\n",
287 SVCFH_fmt(&argp
->ffh
),
288 argp
->flen
, argp
->fname
,
289 argp
->tlen
, argp
->tname
);
291 fh_copy(&resp
->dirfh
, &argp
->ffh
);
292 fh_init(&resp
->fh
, NFS3_FHSIZE
);
293 resp
->status
= nfsd_symlink(rqstp
, &resp
->dirfh
, argp
->fname
,
294 argp
->flen
, argp
->tname
, &resp
->fh
);
301 * Make socket/fifo/device.
304 nfsd3_proc_mknod(struct svc_rqst
*rqstp
)
306 struct nfsd3_mknodargs
*argp
= rqstp
->rq_argp
;
307 struct nfsd3_diropres
*resp
= rqstp
->rq_resp
;
311 dprintk("nfsd: MKNOD(3) %s %.*s\n",
312 SVCFH_fmt(&argp
->fh
),
316 fh_copy(&resp
->dirfh
, &argp
->fh
);
317 fh_init(&resp
->fh
, NFS3_FHSIZE
);
319 if (argp
->ftype
== NF3CHR
|| argp
->ftype
== NF3BLK
) {
320 rdev
= MKDEV(argp
->major
, argp
->minor
);
321 if (MAJOR(rdev
) != argp
->major
||
322 MINOR(rdev
) != argp
->minor
) {
323 resp
->status
= nfserr_inval
;
326 } else if (argp
->ftype
!= NF3SOCK
&& argp
->ftype
!= NF3FIFO
) {
327 resp
->status
= nfserr_badtype
;
331 type
= nfs3_ftypes
[argp
->ftype
];
332 resp
->status
= nfsd_create(rqstp
, &resp
->dirfh
, argp
->name
, argp
->len
,
333 &argp
->attrs
, type
, rdev
, &resp
->fh
);
334 fh_unlock(&resp
->dirfh
);
340 * Remove file/fifo/socket etc.
343 nfsd3_proc_remove(struct svc_rqst
*rqstp
)
345 struct nfsd3_diropargs
*argp
= rqstp
->rq_argp
;
346 struct nfsd3_attrstat
*resp
= rqstp
->rq_resp
;
348 dprintk("nfsd: REMOVE(3) %s %.*s\n",
349 SVCFH_fmt(&argp
->fh
),
353 /* Unlink. -S_IFDIR means file must not be a directory */
354 fh_copy(&resp
->fh
, &argp
->fh
);
355 resp
->status
= nfsd_unlink(rqstp
, &resp
->fh
, -S_IFDIR
,
356 argp
->name
, argp
->len
);
357 fh_unlock(&resp
->fh
);
365 nfsd3_proc_rmdir(struct svc_rqst
*rqstp
)
367 struct nfsd3_diropargs
*argp
= rqstp
->rq_argp
;
368 struct nfsd3_attrstat
*resp
= rqstp
->rq_resp
;
370 dprintk("nfsd: RMDIR(3) %s %.*s\n",
371 SVCFH_fmt(&argp
->fh
),
375 fh_copy(&resp
->fh
, &argp
->fh
);
376 resp
->status
= nfsd_unlink(rqstp
, &resp
->fh
, S_IFDIR
,
377 argp
->name
, argp
->len
);
378 fh_unlock(&resp
->fh
);
383 nfsd3_proc_rename(struct svc_rqst
*rqstp
)
385 struct nfsd3_renameargs
*argp
= rqstp
->rq_argp
;
386 struct nfsd3_renameres
*resp
= rqstp
->rq_resp
;
388 dprintk("nfsd: RENAME(3) %s %.*s ->\n",
389 SVCFH_fmt(&argp
->ffh
),
392 dprintk("nfsd: -> %s %.*s\n",
393 SVCFH_fmt(&argp
->tfh
),
397 fh_copy(&resp
->ffh
, &argp
->ffh
);
398 fh_copy(&resp
->tfh
, &argp
->tfh
);
399 resp
->status
= nfsd_rename(rqstp
, &resp
->ffh
, argp
->fname
, argp
->flen
,
400 &resp
->tfh
, argp
->tname
, argp
->tlen
);
405 nfsd3_proc_link(struct svc_rqst
*rqstp
)
407 struct nfsd3_linkargs
*argp
= rqstp
->rq_argp
;
408 struct nfsd3_linkres
*resp
= rqstp
->rq_resp
;
410 dprintk("nfsd: LINK(3) %s ->\n",
411 SVCFH_fmt(&argp
->ffh
));
412 dprintk("nfsd: -> %s %.*s\n",
413 SVCFH_fmt(&argp
->tfh
),
417 fh_copy(&resp
->fh
, &argp
->ffh
);
418 fh_copy(&resp
->tfh
, &argp
->tfh
);
419 resp
->status
= nfsd_link(rqstp
, &resp
->tfh
, argp
->tname
, argp
->tlen
,
425 * Read a portion of a directory.
428 nfsd3_proc_readdir(struct svc_rqst
*rqstp
)
430 struct nfsd3_readdirargs
*argp
= rqstp
->rq_argp
;
431 struct nfsd3_readdirres
*resp
= rqstp
->rq_resp
;
434 caddr_t page_addr
= NULL
;
436 dprintk("nfsd: READDIR(3) %s %d bytes at %d\n",
437 SVCFH_fmt(&argp
->fh
),
438 argp
->count
, (u32
) argp
->cookie
);
440 /* Make sure we've room for the NULL ptr & eof flag, and shrink to
441 * client read size */
442 count
= (argp
->count
>> 2) - 2;
444 /* Read directory and encode entries on the fly */
445 fh_copy(&resp
->fh
, &argp
->fh
);
447 resp
->buflen
= count
;
448 resp
->common
.err
= nfs_ok
;
449 resp
->buffer
= argp
->buffer
;
451 resp
->status
= nfsd_readdir(rqstp
, &resp
->fh
, (loff_t
*)&argp
->cookie
,
452 &resp
->common
, nfs3svc_encode_entry
);
453 memcpy(resp
->verf
, argp
->verf
, 8);
455 for (p
= rqstp
->rq_respages
+ 1; p
< rqstp
->rq_next_page
; p
++) {
456 page_addr
= page_address(*p
);
458 if (((caddr_t
)resp
->buffer
>= page_addr
) &&
459 ((caddr_t
)resp
->buffer
< page_addr
+ PAGE_SIZE
)) {
460 count
+= (caddr_t
)resp
->buffer
- page_addr
;
465 resp
->count
= count
>> 2;
467 loff_t offset
= argp
->cookie
;
469 if (unlikely(resp
->offset1
)) {
470 /* we ended up with offset on a page boundary */
471 *resp
->offset
= htonl(offset
>> 32);
472 *resp
->offset1
= htonl(offset
& 0xffffffff);
473 resp
->offset1
= NULL
;
475 xdr_encode_hyper(resp
->offset
, offset
);
484 * Read a portion of a directory, including file handles and attrs.
485 * For now, we choose to ignore the dircount parameter.
488 nfsd3_proc_readdirplus(struct svc_rqst
*rqstp
)
490 struct nfsd3_readdirargs
*argp
= rqstp
->rq_argp
;
491 struct nfsd3_readdirres
*resp
= rqstp
->rq_resp
;
495 caddr_t page_addr
= NULL
;
497 dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
498 SVCFH_fmt(&argp
->fh
),
499 argp
->count
, (u32
) argp
->cookie
);
501 /* Convert byte count to number of words (i.e. >> 2),
502 * and reserve room for the NULL ptr & eof flag (-2 words) */
503 resp
->count
= (argp
->count
>> 2) - 2;
505 /* Read directory and encode entries on the fly */
506 fh_copy(&resp
->fh
, &argp
->fh
);
508 resp
->common
.err
= nfs_ok
;
509 resp
->buffer
= argp
->buffer
;
510 resp
->buflen
= resp
->count
;
512 offset
= argp
->cookie
;
514 resp
->status
= fh_verify(rqstp
, &resp
->fh
, S_IFDIR
, NFSD_MAY_NOP
);
515 if (resp
->status
!= nfs_ok
)
518 if (resp
->fh
.fh_export
->ex_flags
& NFSEXP_NOREADDIRPLUS
) {
519 resp
->status
= nfserr_notsupp
;
523 resp
->status
= nfsd_readdir(rqstp
, &resp
->fh
, &offset
,
524 &resp
->common
, nfs3svc_encode_entry_plus
);
525 memcpy(resp
->verf
, argp
->verf
, 8);
526 for (p
= rqstp
->rq_respages
+ 1; p
< rqstp
->rq_next_page
; p
++) {
527 page_addr
= page_address(*p
);
529 if (((caddr_t
)resp
->buffer
>= page_addr
) &&
530 ((caddr_t
)resp
->buffer
< page_addr
+ PAGE_SIZE
)) {
531 count
+= (caddr_t
)resp
->buffer
- page_addr
;
536 resp
->count
= count
>> 2;
538 if (unlikely(resp
->offset1
)) {
539 /* we ended up with offset on a page boundary */
540 *resp
->offset
= htonl(offset
>> 32);
541 *resp
->offset1
= htonl(offset
& 0xffffffff);
542 resp
->offset1
= NULL
;
544 xdr_encode_hyper(resp
->offset
, offset
);
554 * Get file system stats
557 nfsd3_proc_fsstat(struct svc_rqst
*rqstp
)
559 struct nfsd_fhandle
*argp
= rqstp
->rq_argp
;
560 struct nfsd3_fsstatres
*resp
= rqstp
->rq_resp
;
562 dprintk("nfsd: FSSTAT(3) %s\n",
563 SVCFH_fmt(&argp
->fh
));
565 resp
->status
= nfsd_statfs(rqstp
, &argp
->fh
, &resp
->stats
, 0);
571 * Get file system info
574 nfsd3_proc_fsinfo(struct svc_rqst
*rqstp
)
576 struct nfsd_fhandle
*argp
= rqstp
->rq_argp
;
577 struct nfsd3_fsinfores
*resp
= rqstp
->rq_resp
;
578 u32 max_blocksize
= svc_max_payload(rqstp
);
580 dprintk("nfsd: FSINFO(3) %s\n",
581 SVCFH_fmt(&argp
->fh
));
583 resp
->f_rtmax
= max_blocksize
;
584 resp
->f_rtpref
= max_blocksize
;
585 resp
->f_rtmult
= PAGE_SIZE
;
586 resp
->f_wtmax
= max_blocksize
;
587 resp
->f_wtpref
= max_blocksize
;
588 resp
->f_wtmult
= PAGE_SIZE
;
589 resp
->f_dtpref
= max_blocksize
;
590 resp
->f_maxfilesize
= ~(u32
) 0;
591 resp
->f_properties
= NFS3_FSF_DEFAULT
;
593 resp
->status
= fh_verify(rqstp
, &argp
->fh
, 0,
594 NFSD_MAY_NOP
| NFSD_MAY_BYPASS_GSS_ON_ROOT
);
596 /* Check special features of the file system. May request
597 * different read/write sizes for file systems known to have
598 * problems with large blocks */
599 if (resp
->status
== nfs_ok
) {
600 struct super_block
*sb
= argp
->fh
.fh_dentry
->d_sb
;
602 /* Note that we don't care for remote fs's here */
603 if (sb
->s_magic
== MSDOS_SUPER_MAGIC
) {
604 resp
->f_properties
= NFS3_FSF_BILLYBOY
;
606 resp
->f_maxfilesize
= sb
->s_maxbytes
;
614 * Get pathconf info for the specified file
617 nfsd3_proc_pathconf(struct svc_rqst
*rqstp
)
619 struct nfsd_fhandle
*argp
= rqstp
->rq_argp
;
620 struct nfsd3_pathconfres
*resp
= rqstp
->rq_resp
;
622 dprintk("nfsd: PATHCONF(3) %s\n",
623 SVCFH_fmt(&argp
->fh
));
625 /* Set default pathconf */
626 resp
->p_link_max
= 255; /* at least */
627 resp
->p_name_max
= 255; /* at least */
628 resp
->p_no_trunc
= 0;
629 resp
->p_chown_restricted
= 1;
630 resp
->p_case_insensitive
= 0;
631 resp
->p_case_preserving
= 1;
633 resp
->status
= fh_verify(rqstp
, &argp
->fh
, 0, NFSD_MAY_NOP
);
635 if (resp
->status
== nfs_ok
) {
636 struct super_block
*sb
= argp
->fh
.fh_dentry
->d_sb
;
638 /* Note that we don't care for remote fs's here */
639 switch (sb
->s_magic
) {
640 case EXT2_SUPER_MAGIC
:
641 resp
->p_link_max
= EXT2_LINK_MAX
;
642 resp
->p_name_max
= EXT2_NAME_LEN
;
644 case MSDOS_SUPER_MAGIC
:
645 resp
->p_case_insensitive
= 1;
646 resp
->p_case_preserving
= 0;
656 * Commit a file (range) to stable storage.
659 nfsd3_proc_commit(struct svc_rqst
*rqstp
)
661 struct nfsd3_commitargs
*argp
= rqstp
->rq_argp
;
662 struct nfsd3_commitres
*resp
= rqstp
->rq_resp
;
664 dprintk("nfsd: COMMIT(3) %s %u@%Lu\n",
665 SVCFH_fmt(&argp
->fh
),
667 (unsigned long long) argp
->offset
);
669 if (argp
->offset
> NFS_OFFSET_MAX
) {
670 resp
->status
= nfserr_inval
;
674 fh_copy(&resp
->fh
, &argp
->fh
);
675 resp
->status
= nfsd_commit(rqstp
, &resp
->fh
, argp
->offset
,
676 argp
->count
, resp
->verf
);
683 * NFSv3 Server procedures.
684 * Only the results of non-idempotent operations are cached.
686 #define nfs3svc_decode_fhandleargs nfs3svc_decode_fhandle
687 #define nfs3svc_encode_attrstatres nfs3svc_encode_attrstat
688 #define nfs3svc_encode_wccstatres nfs3svc_encode_wccstat
689 #define nfsd3_mkdirargs nfsd3_createargs
690 #define nfsd3_readdirplusargs nfsd3_readdirargs
691 #define nfsd3_fhandleargs nfsd_fhandle
692 #define nfsd3_attrstatres nfsd3_attrstat
693 #define nfsd3_wccstatres nfsd3_attrstat
694 #define nfsd3_createres nfsd3_diropres
696 #define ST 1 /* status*/
697 #define FH 17 /* filehandle with length */
698 #define AT 21 /* attributes */
699 #define pAT (1+AT) /* post attributes - conditional */
700 #define WC (7+pAT) /* WCC attributes */
702 static const struct svc_procedure nfsd_procedures3
[22] = {
704 .pc_func
= nfsd3_proc_null
,
705 .pc_decode
= nfssvc_decode_voidarg
,
706 .pc_encode
= nfssvc_encode_voidres
,
707 .pc_argsize
= sizeof(struct nfsd_voidargs
),
708 .pc_ressize
= sizeof(struct nfsd_voidres
),
709 .pc_cachetype
= RC_NOCACHE
,
712 [NFS3PROC_GETATTR
] = {
713 .pc_func
= nfsd3_proc_getattr
,
714 .pc_decode
= nfs3svc_decode_fhandleargs
,
715 .pc_encode
= nfs3svc_encode_attrstatres
,
716 .pc_release
= nfs3svc_release_fhandle
,
717 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
718 .pc_ressize
= sizeof(struct nfsd3_attrstatres
),
719 .pc_cachetype
= RC_NOCACHE
,
720 .pc_xdrressize
= ST
+AT
,
722 [NFS3PROC_SETATTR
] = {
723 .pc_func
= nfsd3_proc_setattr
,
724 .pc_decode
= nfs3svc_decode_sattrargs
,
725 .pc_encode
= nfs3svc_encode_wccstatres
,
726 .pc_release
= nfs3svc_release_fhandle
,
727 .pc_argsize
= sizeof(struct nfsd3_sattrargs
),
728 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
729 .pc_cachetype
= RC_REPLBUFF
,
730 .pc_xdrressize
= ST
+WC
,
732 [NFS3PROC_LOOKUP
] = {
733 .pc_func
= nfsd3_proc_lookup
,
734 .pc_decode
= nfs3svc_decode_diropargs
,
735 .pc_encode
= nfs3svc_encode_diropres
,
736 .pc_release
= nfs3svc_release_fhandle2
,
737 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
738 .pc_ressize
= sizeof(struct nfsd3_diropres
),
739 .pc_cachetype
= RC_NOCACHE
,
740 .pc_xdrressize
= ST
+FH
+pAT
+pAT
,
742 [NFS3PROC_ACCESS
] = {
743 .pc_func
= nfsd3_proc_access
,
744 .pc_decode
= nfs3svc_decode_accessargs
,
745 .pc_encode
= nfs3svc_encode_accessres
,
746 .pc_release
= nfs3svc_release_fhandle
,
747 .pc_argsize
= sizeof(struct nfsd3_accessargs
),
748 .pc_ressize
= sizeof(struct nfsd3_accessres
),
749 .pc_cachetype
= RC_NOCACHE
,
750 .pc_xdrressize
= ST
+pAT
+1,
752 [NFS3PROC_READLINK
] = {
753 .pc_func
= nfsd3_proc_readlink
,
754 .pc_decode
= nfs3svc_decode_readlinkargs
,
755 .pc_encode
= nfs3svc_encode_readlinkres
,
756 .pc_release
= nfs3svc_release_fhandle
,
757 .pc_argsize
= sizeof(struct nfsd3_readlinkargs
),
758 .pc_ressize
= sizeof(struct nfsd3_readlinkres
),
759 .pc_cachetype
= RC_NOCACHE
,
760 .pc_xdrressize
= ST
+pAT
+1+NFS3_MAXPATHLEN
/4,
763 .pc_func
= nfsd3_proc_read
,
764 .pc_decode
= nfs3svc_decode_readargs
,
765 .pc_encode
= nfs3svc_encode_readres
,
766 .pc_release
= nfs3svc_release_fhandle
,
767 .pc_argsize
= sizeof(struct nfsd3_readargs
),
768 .pc_ressize
= sizeof(struct nfsd3_readres
),
769 .pc_cachetype
= RC_NOCACHE
,
770 .pc_xdrressize
= ST
+pAT
+4+NFSSVC_MAXBLKSIZE
/4,
773 .pc_func
= nfsd3_proc_write
,
774 .pc_decode
= nfs3svc_decode_writeargs
,
775 .pc_encode
= nfs3svc_encode_writeres
,
776 .pc_release
= nfs3svc_release_fhandle
,
777 .pc_argsize
= sizeof(struct nfsd3_writeargs
),
778 .pc_ressize
= sizeof(struct nfsd3_writeres
),
779 .pc_cachetype
= RC_REPLBUFF
,
780 .pc_xdrressize
= ST
+WC
+4,
782 [NFS3PROC_CREATE
] = {
783 .pc_func
= nfsd3_proc_create
,
784 .pc_decode
= nfs3svc_decode_createargs
,
785 .pc_encode
= nfs3svc_encode_createres
,
786 .pc_release
= nfs3svc_release_fhandle2
,
787 .pc_argsize
= sizeof(struct nfsd3_createargs
),
788 .pc_ressize
= sizeof(struct nfsd3_createres
),
789 .pc_cachetype
= RC_REPLBUFF
,
790 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
793 .pc_func
= nfsd3_proc_mkdir
,
794 .pc_decode
= nfs3svc_decode_mkdirargs
,
795 .pc_encode
= nfs3svc_encode_createres
,
796 .pc_release
= nfs3svc_release_fhandle2
,
797 .pc_argsize
= sizeof(struct nfsd3_mkdirargs
),
798 .pc_ressize
= sizeof(struct nfsd3_createres
),
799 .pc_cachetype
= RC_REPLBUFF
,
800 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
802 [NFS3PROC_SYMLINK
] = {
803 .pc_func
= nfsd3_proc_symlink
,
804 .pc_decode
= nfs3svc_decode_symlinkargs
,
805 .pc_encode
= nfs3svc_encode_createres
,
806 .pc_release
= nfs3svc_release_fhandle2
,
807 .pc_argsize
= sizeof(struct nfsd3_symlinkargs
),
808 .pc_ressize
= sizeof(struct nfsd3_createres
),
809 .pc_cachetype
= RC_REPLBUFF
,
810 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
813 .pc_func
= nfsd3_proc_mknod
,
814 .pc_decode
= nfs3svc_decode_mknodargs
,
815 .pc_encode
= nfs3svc_encode_createres
,
816 .pc_release
= nfs3svc_release_fhandle2
,
817 .pc_argsize
= sizeof(struct nfsd3_mknodargs
),
818 .pc_ressize
= sizeof(struct nfsd3_createres
),
819 .pc_cachetype
= RC_REPLBUFF
,
820 .pc_xdrressize
= ST
+(1+FH
+pAT
)+WC
,
822 [NFS3PROC_REMOVE
] = {
823 .pc_func
= nfsd3_proc_remove
,
824 .pc_decode
= nfs3svc_decode_diropargs
,
825 .pc_encode
= nfs3svc_encode_wccstatres
,
826 .pc_release
= nfs3svc_release_fhandle
,
827 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
828 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
829 .pc_cachetype
= RC_REPLBUFF
,
830 .pc_xdrressize
= ST
+WC
,
833 .pc_func
= nfsd3_proc_rmdir
,
834 .pc_decode
= nfs3svc_decode_diropargs
,
835 .pc_encode
= nfs3svc_encode_wccstatres
,
836 .pc_release
= nfs3svc_release_fhandle
,
837 .pc_argsize
= sizeof(struct nfsd3_diropargs
),
838 .pc_ressize
= sizeof(struct nfsd3_wccstatres
),
839 .pc_cachetype
= RC_REPLBUFF
,
840 .pc_xdrressize
= ST
+WC
,
842 [NFS3PROC_RENAME
] = {
843 .pc_func
= nfsd3_proc_rename
,
844 .pc_decode
= nfs3svc_decode_renameargs
,
845 .pc_encode
= nfs3svc_encode_renameres
,
846 .pc_release
= nfs3svc_release_fhandle2
,
847 .pc_argsize
= sizeof(struct nfsd3_renameargs
),
848 .pc_ressize
= sizeof(struct nfsd3_renameres
),
849 .pc_cachetype
= RC_REPLBUFF
,
850 .pc_xdrressize
= ST
+WC
+WC
,
853 .pc_func
= nfsd3_proc_link
,
854 .pc_decode
= nfs3svc_decode_linkargs
,
855 .pc_encode
= nfs3svc_encode_linkres
,
856 .pc_release
= nfs3svc_release_fhandle2
,
857 .pc_argsize
= sizeof(struct nfsd3_linkargs
),
858 .pc_ressize
= sizeof(struct nfsd3_linkres
),
859 .pc_cachetype
= RC_REPLBUFF
,
860 .pc_xdrressize
= ST
+pAT
+WC
,
862 [NFS3PROC_READDIR
] = {
863 .pc_func
= nfsd3_proc_readdir
,
864 .pc_decode
= nfs3svc_decode_readdirargs
,
865 .pc_encode
= nfs3svc_encode_readdirres
,
866 .pc_release
= nfs3svc_release_fhandle
,
867 .pc_argsize
= sizeof(struct nfsd3_readdirargs
),
868 .pc_ressize
= sizeof(struct nfsd3_readdirres
),
869 .pc_cachetype
= RC_NOCACHE
,
871 [NFS3PROC_READDIRPLUS
] = {
872 .pc_func
= nfsd3_proc_readdirplus
,
873 .pc_decode
= nfs3svc_decode_readdirplusargs
,
874 .pc_encode
= nfs3svc_encode_readdirres
,
875 .pc_release
= nfs3svc_release_fhandle
,
876 .pc_argsize
= sizeof(struct nfsd3_readdirplusargs
),
877 .pc_ressize
= sizeof(struct nfsd3_readdirres
),
878 .pc_cachetype
= RC_NOCACHE
,
880 [NFS3PROC_FSSTAT
] = {
881 .pc_func
= nfsd3_proc_fsstat
,
882 .pc_decode
= nfs3svc_decode_fhandleargs
,
883 .pc_encode
= nfs3svc_encode_fsstatres
,
884 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
885 .pc_ressize
= sizeof(struct nfsd3_fsstatres
),
886 .pc_cachetype
= RC_NOCACHE
,
887 .pc_xdrressize
= ST
+pAT
+2*6+1,
889 [NFS3PROC_FSINFO
] = {
890 .pc_func
= nfsd3_proc_fsinfo
,
891 .pc_decode
= nfs3svc_decode_fhandleargs
,
892 .pc_encode
= nfs3svc_encode_fsinfores
,
893 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
894 .pc_ressize
= sizeof(struct nfsd3_fsinfores
),
895 .pc_cachetype
= RC_NOCACHE
,
896 .pc_xdrressize
= ST
+pAT
+12,
898 [NFS3PROC_PATHCONF
] = {
899 .pc_func
= nfsd3_proc_pathconf
,
900 .pc_decode
= nfs3svc_decode_fhandleargs
,
901 .pc_encode
= nfs3svc_encode_pathconfres
,
902 .pc_argsize
= sizeof(struct nfsd3_fhandleargs
),
903 .pc_ressize
= sizeof(struct nfsd3_pathconfres
),
904 .pc_cachetype
= RC_NOCACHE
,
905 .pc_xdrressize
= ST
+pAT
+6,
907 [NFS3PROC_COMMIT
] = {
908 .pc_func
= nfsd3_proc_commit
,
909 .pc_decode
= nfs3svc_decode_commitargs
,
910 .pc_encode
= nfs3svc_encode_commitres
,
911 .pc_release
= nfs3svc_release_fhandle
,
912 .pc_argsize
= sizeof(struct nfsd3_commitargs
),
913 .pc_ressize
= sizeof(struct nfsd3_commitres
),
914 .pc_cachetype
= RC_NOCACHE
,
915 .pc_xdrressize
= ST
+WC
+2,
919 static unsigned int nfsd_count3
[ARRAY_SIZE(nfsd_procedures3
)];
920 const struct svc_version nfsd_version3
= {
923 .vs_proc
= nfsd_procedures3
,
924 .vs_dispatch
= nfsd_dispatch
,
925 .vs_count
= nfsd_count3
,
926 .vs_xdrsize
= NFS3_SVC_XDRSIZE
,