1 // SPDX-License-Identifier: GPL-2.0
3 * Process version 3 NFS requests.
9 #include <linux/ext2_fs.h>
10 #include <linux/magic.h>
16 #define NFSDDBG_FACILITY NFSDDBG_PROC
18 #define RETURN_STATUS(st) { resp->status = (st); return (st); }
20 static int nfs3_ftypes[] = {
27 S_IFSOCK, /* NF3SOCK */
28 S_IFIFO, /* NF3FIFO */
35 nfsd3_proc_null(struct svc_rqst *rqstp)
41 * Get a file's attributes
44 nfsd3_proc_getattr(struct svc_rqst *rqstp)
46 struct nfsd_fhandle *argp = rqstp->rq_argp;
47 struct nfsd3_attrstat *resp = rqstp->rq_resp;
50 dprintk("nfsd: GETATTR(3) %s\n",
51 SVCFH_fmt(&argp->fh));
53 fh_copy(&resp->fh, &argp->fh);
54 nfserr = fh_verify(rqstp, &resp->fh, 0,
55 NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
57 RETURN_STATUS(nfserr);
59 nfserr = fh_getattr(&resp->fh, &resp->stat);
61 RETURN_STATUS(nfserr);
65 * Set a file's attributes
68 nfsd3_proc_setattr(struct svc_rqst *rqstp)
70 struct nfsd3_sattrargs *argp = rqstp->rq_argp;
71 struct nfsd3_attrstat *resp = rqstp->rq_resp;
74 dprintk("nfsd: SETATTR(3) %s\n",
75 SVCFH_fmt(&argp->fh));
77 fh_copy(&resp->fh, &argp->fh);
78 nfserr = nfsd_setattr(rqstp, &resp->fh, &argp->attrs,
79 argp->check_guard, argp->guardtime);
80 RETURN_STATUS(nfserr);
84 * Look up a path name component
87 nfsd3_proc_lookup(struct svc_rqst *rqstp)
89 struct nfsd3_diropargs *argp = rqstp->rq_argp;
90 struct nfsd3_diropres *resp = rqstp->rq_resp;
93 dprintk("nfsd: LOOKUP(3) %s %.*s\n",
98 fh_copy(&resp->dirfh, &argp->fh);
99 fh_init(&resp->fh, NFS3_FHSIZE);
101 nfserr = nfsd_lookup(rqstp, &resp->dirfh,
105 RETURN_STATUS(nfserr);
112 nfsd3_proc_access(struct svc_rqst *rqstp)
114 struct nfsd3_accessargs *argp = rqstp->rq_argp;
115 struct nfsd3_accessres *resp = rqstp->rq_resp;
118 dprintk("nfsd: ACCESS(3) %s 0x%x\n",
119 SVCFH_fmt(&argp->fh),
122 fh_copy(&resp->fh, &argp->fh);
123 resp->access = argp->access;
124 nfserr = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
125 RETURN_STATUS(nfserr);
132 nfsd3_proc_readlink(struct svc_rqst *rqstp)
134 struct nfsd3_readlinkargs *argp = rqstp->rq_argp;
135 struct nfsd3_readlinkres *resp = rqstp->rq_resp;
138 dprintk("nfsd: READLINK(3) %s\n", SVCFH_fmt(&argp->fh));
140 /* Read the symlink. */
141 fh_copy(&resp->fh, &argp->fh);
142 resp->len = NFS3_MAXPATHLEN;
143 nfserr = nfsd_readlink(rqstp, &resp->fh, argp->buffer, &resp->len);
144 RETURN_STATUS(nfserr);
148 * Read a portion of a file.
151 nfsd3_proc_read(struct svc_rqst *rqstp)
153 struct nfsd3_readargs *argp = rqstp->rq_argp;
154 struct nfsd3_readres *resp = rqstp->rq_resp;
156 u32 max_blocksize = svc_max_payload(rqstp);
157 unsigned long cnt = min(argp->count, max_blocksize);
159 dprintk("nfsd: READ(3) %s %lu bytes at %Lu\n",
160 SVCFH_fmt(&argp->fh),
161 (unsigned long) argp->count,
162 (unsigned long long) argp->offset);
164 /* Obtain buffer pointer for payload.
165 * 1 (status) + 22 (post_op_attr) + 1 (count) + 1 (eof)
166 * + 1 (xdr opaque byte count) = 26
169 svc_reserve_auth(rqstp, ((1 + NFS3_POST_OP_ATTR_WORDS + 3)<<2) + resp->count +4);
171 fh_copy(&resp->fh, &argp->fh);
172 nfserr = nfsd_read(rqstp, &resp->fh,
174 rqstp->rq_vec, argp->vlen,
177 RETURN_STATUS(nfserr);
181 * Write data to a file
184 nfsd3_proc_write(struct svc_rqst *rqstp)
186 struct nfsd3_writeargs *argp = rqstp->rq_argp;
187 struct nfsd3_writeres *resp = rqstp->rq_resp;
189 unsigned long cnt = argp->len;
192 dprintk("nfsd: WRITE(3) %s %d bytes at %Lu%s\n",
193 SVCFH_fmt(&argp->fh),
195 (unsigned long long) argp->offset,
196 argp->stable? " stable" : "");
198 fh_copy(&resp->fh, &argp->fh);
199 resp->committed = argp->stable;
200 nvecs = svc_fill_write_vector(rqstp, rqstp->rq_arg.pages,
203 RETURN_STATUS(nfserr_io);
204 nfserr = nfsd_write(rqstp, &resp->fh, argp->offset,
205 rqstp->rq_vec, nvecs, &cnt,
206 resp->committed, resp->verf);
208 RETURN_STATUS(nfserr);
212 * With NFSv3, CREATE processing is a lot easier than with NFSv2.
213 * At least in theory; we'll see how it fares in practice when the
214 * first reports about SunOS compatibility problems start to pour in...
217 nfsd3_proc_create(struct svc_rqst *rqstp)
219 struct nfsd3_createargs *argp = rqstp->rq_argp;
220 struct nfsd3_diropres *resp = rqstp->rq_resp;
221 svc_fh *dirfhp, *newfhp = NULL;
225 dprintk("nfsd: CREATE(3) %s %.*s\n",
226 SVCFH_fmt(&argp->fh),
230 dirfhp = fh_copy(&resp->dirfh, &argp->fh);
231 newfhp = fh_init(&resp->fh, NFS3_FHSIZE);
234 /* Unfudge the mode bits */
235 attr->ia_mode &= ~S_IFMT;
236 if (!(attr->ia_valid & ATTR_MODE)) {
237 attr->ia_valid |= ATTR_MODE;
238 attr->ia_mode = S_IFREG;
240 attr->ia_mode = (attr->ia_mode & ~S_IFMT) | S_IFREG;
243 /* Now create the file and set attributes */
244 nfserr = do_nfsd_create(rqstp, dirfhp, argp->name, argp->len,
246 argp->createmode, (u32 *)argp->verf, NULL, NULL);
248 RETURN_STATUS(nfserr);
252 * Make directory. This operation is not idempotent.
255 nfsd3_proc_mkdir(struct svc_rqst *rqstp)
257 struct nfsd3_createargs *argp = rqstp->rq_argp;
258 struct nfsd3_diropres *resp = rqstp->rq_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)
278 struct nfsd3_symlinkargs *argp = rqstp->rq_argp;
279 struct nfsd3_diropres *resp = rqstp->rq_resp;
283 RETURN_STATUS(nfserr_inval);
284 if (argp->tlen > NFS3_MAXPATHLEN)
285 RETURN_STATUS(nfserr_nametoolong);
287 argp->tname = svc_fill_symlink_pathname(rqstp, &argp->first,
288 page_address(rqstp->rq_arg.pages[0]),
290 if (IS_ERR(argp->tname))
291 RETURN_STATUS(nfserrno(PTR_ERR(argp->tname)));
293 dprintk("nfsd: SYMLINK(3) %s %.*s -> %.*s\n",
294 SVCFH_fmt(&argp->ffh),
295 argp->flen, argp->fname,
296 argp->tlen, argp->tname);
298 fh_copy(&resp->dirfh, &argp->ffh);
299 fh_init(&resp->fh, NFS3_FHSIZE);
300 nfserr = nfsd_symlink(rqstp, &resp->dirfh, argp->fname, argp->flen,
301 argp->tname, &resp->fh);
303 RETURN_STATUS(nfserr);
307 * Make socket/fifo/device.
310 nfsd3_proc_mknod(struct svc_rqst *rqstp)
312 struct nfsd3_mknodargs *argp = rqstp->rq_argp;
313 struct nfsd3_diropres *resp = rqstp->rq_resp;
318 dprintk("nfsd: MKNOD(3) %s %.*s\n",
319 SVCFH_fmt(&argp->fh),
323 fh_copy(&resp->dirfh, &argp->fh);
324 fh_init(&resp->fh, NFS3_FHSIZE);
326 if (argp->ftype == 0 || argp->ftype >= NF3BAD)
327 RETURN_STATUS(nfserr_inval);
328 if (argp->ftype == NF3CHR || argp->ftype == NF3BLK) {
329 rdev = MKDEV(argp->major, argp->minor);
330 if (MAJOR(rdev) != argp->major ||
331 MINOR(rdev) != argp->minor)
332 RETURN_STATUS(nfserr_inval);
334 if (argp->ftype != NF3SOCK && argp->ftype != NF3FIFO)
335 RETURN_STATUS(nfserr_inval);
337 type = nfs3_ftypes[argp->ftype];
338 nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
339 &argp->attrs, type, rdev, &resp->fh);
340 fh_unlock(&resp->dirfh);
341 RETURN_STATUS(nfserr);
345 * Remove file/fifo/socket etc.
348 nfsd3_proc_remove(struct svc_rqst *rqstp)
350 struct nfsd3_diropargs *argp = rqstp->rq_argp;
351 struct nfsd3_attrstat *resp = rqstp->rq_resp;
354 dprintk("nfsd: REMOVE(3) %s %.*s\n",
355 SVCFH_fmt(&argp->fh),
359 /* Unlink. -S_IFDIR means file must not be a directory */
360 fh_copy(&resp->fh, &argp->fh);
361 nfserr = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR, argp->name, argp->len);
362 fh_unlock(&resp->fh);
363 RETURN_STATUS(nfserr);
370 nfsd3_proc_rmdir(struct svc_rqst *rqstp)
372 struct nfsd3_diropargs *argp = rqstp->rq_argp;
373 struct nfsd3_attrstat *resp = rqstp->rq_resp;
376 dprintk("nfsd: RMDIR(3) %s %.*s\n",
377 SVCFH_fmt(&argp->fh),
381 fh_copy(&resp->fh, &argp->fh);
382 nfserr = nfsd_unlink(rqstp, &resp->fh, S_IFDIR, argp->name, argp->len);
383 fh_unlock(&resp->fh);
384 RETURN_STATUS(nfserr);
388 nfsd3_proc_rename(struct svc_rqst *rqstp)
390 struct nfsd3_renameargs *argp = rqstp->rq_argp;
391 struct nfsd3_renameres *resp = rqstp->rq_resp;
394 dprintk("nfsd: RENAME(3) %s %.*s ->\n",
395 SVCFH_fmt(&argp->ffh),
398 dprintk("nfsd: -> %s %.*s\n",
399 SVCFH_fmt(&argp->tfh),
403 fh_copy(&resp->ffh, &argp->ffh);
404 fh_copy(&resp->tfh, &argp->tfh);
405 nfserr = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen,
406 &resp->tfh, argp->tname, argp->tlen);
407 RETURN_STATUS(nfserr);
411 nfsd3_proc_link(struct svc_rqst *rqstp)
413 struct nfsd3_linkargs *argp = rqstp->rq_argp;
414 struct nfsd3_linkres *resp = rqstp->rq_resp;
417 dprintk("nfsd: LINK(3) %s ->\n",
418 SVCFH_fmt(&argp->ffh));
419 dprintk("nfsd: -> %s %.*s\n",
420 SVCFH_fmt(&argp->tfh),
424 fh_copy(&resp->fh, &argp->ffh);
425 fh_copy(&resp->tfh, &argp->tfh);
426 nfserr = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen,
428 RETURN_STATUS(nfserr);
432 * Read a portion of a directory.
435 nfsd3_proc_readdir(struct svc_rqst *rqstp)
437 struct nfsd3_readdirargs *argp = rqstp->rq_argp;
438 struct nfsd3_readdirres *resp = rqstp->rq_resp;
442 caddr_t page_addr = NULL;
444 dprintk("nfsd: READDIR(3) %s %d bytes at %d\n",
445 SVCFH_fmt(&argp->fh),
446 argp->count, (u32) argp->cookie);
448 /* Make sure we've room for the NULL ptr & eof flag, and shrink to
449 * client read size */
450 count = (argp->count >> 2) - 2;
452 /* Read directory and encode entries on the fly */
453 fh_copy(&resp->fh, &argp->fh);
455 resp->buflen = count;
456 resp->common.err = nfs_ok;
457 resp->buffer = argp->buffer;
459 nfserr = nfsd_readdir(rqstp, &resp->fh, (loff_t*) &argp->cookie,
460 &resp->common, nfs3svc_encode_entry);
461 memcpy(resp->verf, argp->verf, 8);
463 for (p = rqstp->rq_respages + 1; p < rqstp->rq_next_page; p++) {
464 page_addr = page_address(*p);
466 if (((caddr_t)resp->buffer >= page_addr) &&
467 ((caddr_t)resp->buffer < page_addr + PAGE_SIZE)) {
468 count += (caddr_t)resp->buffer - page_addr;
473 resp->count = count >> 2;
475 loff_t offset = argp->cookie;
477 if (unlikely(resp->offset1)) {
478 /* we ended up with offset on a page boundary */
479 *resp->offset = htonl(offset >> 32);
480 *resp->offset1 = htonl(offset & 0xffffffff);
481 resp->offset1 = NULL;
483 xdr_encode_hyper(resp->offset, offset);
488 RETURN_STATUS(nfserr);
492 * Read a portion of a directory, including file handles and attrs.
493 * For now, we choose to ignore the dircount parameter.
496 nfsd3_proc_readdirplus(struct svc_rqst *rqstp)
498 struct nfsd3_readdirargs *argp = rqstp->rq_argp;
499 struct nfsd3_readdirres *resp = rqstp->rq_resp;
504 caddr_t page_addr = NULL;
506 dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
507 SVCFH_fmt(&argp->fh),
508 argp->count, (u32) argp->cookie);
510 /* Convert byte count to number of words (i.e. >> 2),
511 * and reserve room for the NULL ptr & eof flag (-2 words) */
512 resp->count = (argp->count >> 2) - 2;
514 /* Read directory and encode entries on the fly */
515 fh_copy(&resp->fh, &argp->fh);
517 resp->common.err = nfs_ok;
518 resp->buffer = argp->buffer;
519 resp->buflen = resp->count;
521 offset = argp->cookie;
523 nfserr = fh_verify(rqstp, &resp->fh, S_IFDIR, NFSD_MAY_NOP);
525 RETURN_STATUS(nfserr);
527 if (resp->fh.fh_export->ex_flags & NFSEXP_NOREADDIRPLUS)
528 RETURN_STATUS(nfserr_notsupp);
530 nfserr = nfsd_readdir(rqstp, &resp->fh,
533 nfs3svc_encode_entry_plus);
534 memcpy(resp->verf, argp->verf, 8);
535 for (p = rqstp->rq_respages + 1; p < rqstp->rq_next_page; p++) {
536 page_addr = page_address(*p);
538 if (((caddr_t)resp->buffer >= page_addr) &&
539 ((caddr_t)resp->buffer < page_addr + PAGE_SIZE)) {
540 count += (caddr_t)resp->buffer - page_addr;
545 resp->count = count >> 2;
547 if (unlikely(resp->offset1)) {
548 /* we ended up with offset on a page boundary */
549 *resp->offset = htonl(offset >> 32);
550 *resp->offset1 = htonl(offset & 0xffffffff);
551 resp->offset1 = NULL;
553 xdr_encode_hyper(resp->offset, offset);
558 RETURN_STATUS(nfserr);
562 * Get file system stats
565 nfsd3_proc_fsstat(struct svc_rqst *rqstp)
567 struct nfsd_fhandle *argp = rqstp->rq_argp;
568 struct nfsd3_fsstatres *resp = rqstp->rq_resp;
571 dprintk("nfsd: FSSTAT(3) %s\n",
572 SVCFH_fmt(&argp->fh));
574 nfserr = nfsd_statfs(rqstp, &argp->fh, &resp->stats, 0);
576 RETURN_STATUS(nfserr);
580 * Get file system info
583 nfsd3_proc_fsinfo(struct svc_rqst *rqstp)
585 struct nfsd_fhandle *argp = rqstp->rq_argp;
586 struct nfsd3_fsinfores *resp = rqstp->rq_resp;
588 u32 max_blocksize = svc_max_payload(rqstp);
590 dprintk("nfsd: FSINFO(3) %s\n",
591 SVCFH_fmt(&argp->fh));
593 resp->f_rtmax = max_blocksize;
594 resp->f_rtpref = max_blocksize;
595 resp->f_rtmult = PAGE_SIZE;
596 resp->f_wtmax = max_blocksize;
597 resp->f_wtpref = max_blocksize;
598 resp->f_wtmult = PAGE_SIZE;
599 resp->f_dtpref = max_blocksize;
600 resp->f_maxfilesize = ~(u32) 0;
601 resp->f_properties = NFS3_FSF_DEFAULT;
603 nfserr = fh_verify(rqstp, &argp->fh, 0,
604 NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
606 /* Check special features of the file system. May request
607 * different read/write sizes for file systems known to have
608 * problems with large blocks */
610 struct super_block *sb = argp->fh.fh_dentry->d_sb;
612 /* Note that we don't care for remote fs's here */
613 if (sb->s_magic == MSDOS_SUPER_MAGIC) {
614 resp->f_properties = NFS3_FSF_BILLYBOY;
616 resp->f_maxfilesize = sb->s_maxbytes;
620 RETURN_STATUS(nfserr);
624 * Get pathconf info for the specified file
627 nfsd3_proc_pathconf(struct svc_rqst *rqstp)
629 struct nfsd_fhandle *argp = rqstp->rq_argp;
630 struct nfsd3_pathconfres *resp = rqstp->rq_resp;
633 dprintk("nfsd: PATHCONF(3) %s\n",
634 SVCFH_fmt(&argp->fh));
636 /* Set default pathconf */
637 resp->p_link_max = 255; /* at least */
638 resp->p_name_max = 255; /* at least */
639 resp->p_no_trunc = 0;
640 resp->p_chown_restricted = 1;
641 resp->p_case_insensitive = 0;
642 resp->p_case_preserving = 1;
644 nfserr = fh_verify(rqstp, &argp->fh, 0, NFSD_MAY_NOP);
647 struct super_block *sb = argp->fh.fh_dentry->d_sb;
649 /* Note that we don't care for remote fs's here */
650 switch (sb->s_magic) {
651 case EXT2_SUPER_MAGIC:
652 resp->p_link_max = EXT2_LINK_MAX;
653 resp->p_name_max = EXT2_NAME_LEN;
655 case MSDOS_SUPER_MAGIC:
656 resp->p_case_insensitive = 1;
657 resp->p_case_preserving = 0;
663 RETURN_STATUS(nfserr);
668 * Commit a file (range) to stable storage.
671 nfsd3_proc_commit(struct svc_rqst *rqstp)
673 struct nfsd3_commitargs *argp = rqstp->rq_argp;
674 struct nfsd3_commitres *resp = rqstp->rq_resp;
677 dprintk("nfsd: COMMIT(3) %s %u@%Lu\n",
678 SVCFH_fmt(&argp->fh),
680 (unsigned long long) argp->offset);
682 if (argp->offset > NFS_OFFSET_MAX)
683 RETURN_STATUS(nfserr_inval);
685 fh_copy(&resp->fh, &argp->fh);
686 nfserr = nfsd_commit(rqstp, &resp->fh, argp->offset, argp->count,
689 RETURN_STATUS(nfserr);
694 * NFSv3 Server procedures.
695 * Only the results of non-idempotent operations are cached.
697 #define nfs3svc_decode_fhandleargs nfs3svc_decode_fhandle
698 #define nfs3svc_encode_attrstatres nfs3svc_encode_attrstat
699 #define nfs3svc_encode_wccstatres nfs3svc_encode_wccstat
700 #define nfsd3_mkdirargs nfsd3_createargs
701 #define nfsd3_readdirplusargs nfsd3_readdirargs
702 #define nfsd3_fhandleargs nfsd_fhandle
703 #define nfsd3_fhandleres nfsd3_attrstat
704 #define nfsd3_attrstatres nfsd3_attrstat
705 #define nfsd3_wccstatres nfsd3_attrstat
706 #define nfsd3_createres nfsd3_diropres
707 #define nfsd3_voidres nfsd3_voidargs
708 struct nfsd3_voidargs { int dummy; };
710 #define ST 1 /* status*/
711 #define FH 17 /* filehandle with length */
712 #define AT 21 /* attributes */
713 #define pAT (1+AT) /* post attributes - conditional */
714 #define WC (7+pAT) /* WCC attributes */
716 static const struct svc_procedure nfsd_procedures3[22] = {
718 .pc_func = nfsd3_proc_null,
719 .pc_encode = nfs3svc_encode_voidres,
720 .pc_argsize = sizeof(struct nfsd3_voidargs),
721 .pc_ressize = sizeof(struct nfsd3_voidres),
722 .pc_cachetype = RC_NOCACHE,
725 [NFS3PROC_GETATTR] = {
726 .pc_func = nfsd3_proc_getattr,
727 .pc_decode = nfs3svc_decode_fhandleargs,
728 .pc_encode = nfs3svc_encode_attrstatres,
729 .pc_release = nfs3svc_release_fhandle,
730 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
731 .pc_ressize = sizeof(struct nfsd3_attrstatres),
732 .pc_cachetype = RC_NOCACHE,
733 .pc_xdrressize = ST+AT,
735 [NFS3PROC_SETATTR] = {
736 .pc_func = nfsd3_proc_setattr,
737 .pc_decode = nfs3svc_decode_sattrargs,
738 .pc_encode = nfs3svc_encode_wccstatres,
739 .pc_release = nfs3svc_release_fhandle,
740 .pc_argsize = sizeof(struct nfsd3_sattrargs),
741 .pc_ressize = sizeof(struct nfsd3_wccstatres),
742 .pc_cachetype = RC_REPLBUFF,
743 .pc_xdrressize = ST+WC,
745 [NFS3PROC_LOOKUP] = {
746 .pc_func = nfsd3_proc_lookup,
747 .pc_decode = nfs3svc_decode_diropargs,
748 .pc_encode = nfs3svc_encode_diropres,
749 .pc_release = nfs3svc_release_fhandle2,
750 .pc_argsize = sizeof(struct nfsd3_diropargs),
751 .pc_ressize = sizeof(struct nfsd3_diropres),
752 .pc_cachetype = RC_NOCACHE,
753 .pc_xdrressize = ST+FH+pAT+pAT,
755 [NFS3PROC_ACCESS] = {
756 .pc_func = nfsd3_proc_access,
757 .pc_decode = nfs3svc_decode_accessargs,
758 .pc_encode = nfs3svc_encode_accessres,
759 .pc_release = nfs3svc_release_fhandle,
760 .pc_argsize = sizeof(struct nfsd3_accessargs),
761 .pc_ressize = sizeof(struct nfsd3_accessres),
762 .pc_cachetype = RC_NOCACHE,
763 .pc_xdrressize = ST+pAT+1,
765 [NFS3PROC_READLINK] = {
766 .pc_func = nfsd3_proc_readlink,
767 .pc_decode = nfs3svc_decode_readlinkargs,
768 .pc_encode = nfs3svc_encode_readlinkres,
769 .pc_release = nfs3svc_release_fhandle,
770 .pc_argsize = sizeof(struct nfsd3_readlinkargs),
771 .pc_ressize = sizeof(struct nfsd3_readlinkres),
772 .pc_cachetype = RC_NOCACHE,
773 .pc_xdrressize = ST+pAT+1+NFS3_MAXPATHLEN/4,
776 .pc_func = nfsd3_proc_read,
777 .pc_decode = nfs3svc_decode_readargs,
778 .pc_encode = nfs3svc_encode_readres,
779 .pc_release = nfs3svc_release_fhandle,
780 .pc_argsize = sizeof(struct nfsd3_readargs),
781 .pc_ressize = sizeof(struct nfsd3_readres),
782 .pc_cachetype = RC_NOCACHE,
783 .pc_xdrressize = ST+pAT+4+NFSSVC_MAXBLKSIZE/4,
786 .pc_func = nfsd3_proc_write,
787 .pc_decode = nfs3svc_decode_writeargs,
788 .pc_encode = nfs3svc_encode_writeres,
789 .pc_release = nfs3svc_release_fhandle,
790 .pc_argsize = sizeof(struct nfsd3_writeargs),
791 .pc_ressize = sizeof(struct nfsd3_writeres),
792 .pc_cachetype = RC_REPLBUFF,
793 .pc_xdrressize = ST+WC+4,
795 [NFS3PROC_CREATE] = {
796 .pc_func = nfsd3_proc_create,
797 .pc_decode = nfs3svc_decode_createargs,
798 .pc_encode = nfs3svc_encode_createres,
799 .pc_release = nfs3svc_release_fhandle2,
800 .pc_argsize = sizeof(struct nfsd3_createargs),
801 .pc_ressize = sizeof(struct nfsd3_createres),
802 .pc_cachetype = RC_REPLBUFF,
803 .pc_xdrressize = ST+(1+FH+pAT)+WC,
806 .pc_func = nfsd3_proc_mkdir,
807 .pc_decode = nfs3svc_decode_mkdirargs,
808 .pc_encode = nfs3svc_encode_createres,
809 .pc_release = nfs3svc_release_fhandle2,
810 .pc_argsize = sizeof(struct nfsd3_mkdirargs),
811 .pc_ressize = sizeof(struct nfsd3_createres),
812 .pc_cachetype = RC_REPLBUFF,
813 .pc_xdrressize = ST+(1+FH+pAT)+WC,
815 [NFS3PROC_SYMLINK] = {
816 .pc_func = nfsd3_proc_symlink,
817 .pc_decode = nfs3svc_decode_symlinkargs,
818 .pc_encode = nfs3svc_encode_createres,
819 .pc_release = nfs3svc_release_fhandle2,
820 .pc_argsize = sizeof(struct nfsd3_symlinkargs),
821 .pc_ressize = sizeof(struct nfsd3_createres),
822 .pc_cachetype = RC_REPLBUFF,
823 .pc_xdrressize = ST+(1+FH+pAT)+WC,
826 .pc_func = nfsd3_proc_mknod,
827 .pc_decode = nfs3svc_decode_mknodargs,
828 .pc_encode = nfs3svc_encode_createres,
829 .pc_release = nfs3svc_release_fhandle2,
830 .pc_argsize = sizeof(struct nfsd3_mknodargs),
831 .pc_ressize = sizeof(struct nfsd3_createres),
832 .pc_cachetype = RC_REPLBUFF,
833 .pc_xdrressize = ST+(1+FH+pAT)+WC,
835 [NFS3PROC_REMOVE] = {
836 .pc_func = nfsd3_proc_remove,
837 .pc_decode = nfs3svc_decode_diropargs,
838 .pc_encode = nfs3svc_encode_wccstatres,
839 .pc_release = nfs3svc_release_fhandle,
840 .pc_argsize = sizeof(struct nfsd3_diropargs),
841 .pc_ressize = sizeof(struct nfsd3_wccstatres),
842 .pc_cachetype = RC_REPLBUFF,
843 .pc_xdrressize = ST+WC,
846 .pc_func = nfsd3_proc_rmdir,
847 .pc_decode = nfs3svc_decode_diropargs,
848 .pc_encode = nfs3svc_encode_wccstatres,
849 .pc_release = nfs3svc_release_fhandle,
850 .pc_argsize = sizeof(struct nfsd3_diropargs),
851 .pc_ressize = sizeof(struct nfsd3_wccstatres),
852 .pc_cachetype = RC_REPLBUFF,
853 .pc_xdrressize = ST+WC,
855 [NFS3PROC_RENAME] = {
856 .pc_func = nfsd3_proc_rename,
857 .pc_decode = nfs3svc_decode_renameargs,
858 .pc_encode = nfs3svc_encode_renameres,
859 .pc_release = nfs3svc_release_fhandle2,
860 .pc_argsize = sizeof(struct nfsd3_renameargs),
861 .pc_ressize = sizeof(struct nfsd3_renameres),
862 .pc_cachetype = RC_REPLBUFF,
863 .pc_xdrressize = ST+WC+WC,
866 .pc_func = nfsd3_proc_link,
867 .pc_decode = nfs3svc_decode_linkargs,
868 .pc_encode = nfs3svc_encode_linkres,
869 .pc_release = nfs3svc_release_fhandle2,
870 .pc_argsize = sizeof(struct nfsd3_linkargs),
871 .pc_ressize = sizeof(struct nfsd3_linkres),
872 .pc_cachetype = RC_REPLBUFF,
873 .pc_xdrressize = ST+pAT+WC,
875 [NFS3PROC_READDIR] = {
876 .pc_func = nfsd3_proc_readdir,
877 .pc_decode = nfs3svc_decode_readdirargs,
878 .pc_encode = nfs3svc_encode_readdirres,
879 .pc_release = nfs3svc_release_fhandle,
880 .pc_argsize = sizeof(struct nfsd3_readdirargs),
881 .pc_ressize = sizeof(struct nfsd3_readdirres),
882 .pc_cachetype = RC_NOCACHE,
884 [NFS3PROC_READDIRPLUS] = {
885 .pc_func = nfsd3_proc_readdirplus,
886 .pc_decode = nfs3svc_decode_readdirplusargs,
887 .pc_encode = nfs3svc_encode_readdirres,
888 .pc_release = nfs3svc_release_fhandle,
889 .pc_argsize = sizeof(struct nfsd3_readdirplusargs),
890 .pc_ressize = sizeof(struct nfsd3_readdirres),
891 .pc_cachetype = RC_NOCACHE,
893 [NFS3PROC_FSSTAT] = {
894 .pc_func = nfsd3_proc_fsstat,
895 .pc_decode = nfs3svc_decode_fhandleargs,
896 .pc_encode = nfs3svc_encode_fsstatres,
897 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
898 .pc_ressize = sizeof(struct nfsd3_fsstatres),
899 .pc_cachetype = RC_NOCACHE,
900 .pc_xdrressize = ST+pAT+2*6+1,
902 [NFS3PROC_FSINFO] = {
903 .pc_func = nfsd3_proc_fsinfo,
904 .pc_decode = nfs3svc_decode_fhandleargs,
905 .pc_encode = nfs3svc_encode_fsinfores,
906 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
907 .pc_ressize = sizeof(struct nfsd3_fsinfores),
908 .pc_cachetype = RC_NOCACHE,
909 .pc_xdrressize = ST+pAT+12,
911 [NFS3PROC_PATHCONF] = {
912 .pc_func = nfsd3_proc_pathconf,
913 .pc_decode = nfs3svc_decode_fhandleargs,
914 .pc_encode = nfs3svc_encode_pathconfres,
915 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
916 .pc_ressize = sizeof(struct nfsd3_pathconfres),
917 .pc_cachetype = RC_NOCACHE,
918 .pc_xdrressize = ST+pAT+6,
920 [NFS3PROC_COMMIT] = {
921 .pc_func = nfsd3_proc_commit,
922 .pc_decode = nfs3svc_decode_commitargs,
923 .pc_encode = nfs3svc_encode_commitres,
924 .pc_release = nfs3svc_release_fhandle,
925 .pc_argsize = sizeof(struct nfsd3_commitargs),
926 .pc_ressize = sizeof(struct nfsd3_commitres),
927 .pc_cachetype = RC_NOCACHE,
928 .pc_xdrressize = ST+WC+2,
932 static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures3)];
933 const struct svc_version nfsd_version3 = {
936 .vs_proc = nfsd_procedures3,
937 .vs_dispatch = nfsd_dispatch,
938 .vs_count = nfsd_count3,
939 .vs_xdrsize = NFS3_SVC_XDRSIZE,