blob: 936eebd4c56dca2e92e6172cf6d2781e49cb13c5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Process version 3 NFS requests.
4 *
5 * Copyright (C) 1996, 1997, 1998 Olaf Kirch <okir@monad.swb.de>
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/fs.h>
9#include <linux/ext2_fs.h>
Qinghuang Feng12214cb2009-01-12 03:13:53 +080010#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Boaz Harrosh9a74af22009-12-03 20:30:56 +020012#include "cache.h"
13#include "xdr3.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050014#include "vfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#define NFSDDBG_FACILITY NFSDDBG_PROC
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018static int nfs3_ftypes[] = {
19 0, /* NF3NON */
20 S_IFREG, /* NF3REG */
21 S_IFDIR, /* NF3DIR */
22 S_IFBLK, /* NF3BLK */
23 S_IFCHR, /* NF3CHR */
24 S_IFLNK, /* NF3LNK */
25 S_IFSOCK, /* NF3SOCK */
26 S_IFIFO, /* NF3FIFO */
27};
28
29/*
30 * NULL call.
31 */
Al Viro7111c662006-10-19 23:28:45 -070032static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +020033nfsd3_proc_null(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Chuck Levercc028a12020-10-02 15:52:44 -040035 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036}
37
38/*
39 * Get a file's attributes
40 */
Al Viro7111c662006-10-19 23:28:45 -070041static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +020042nfsd3_proc_getattr(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
Christoph Hellwiga6beb732017-05-08 17:35:49 +020044 struct nfsd_fhandle *argp = rqstp->rq_argp;
45 struct nfsd3_attrstat *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 dprintk("nfsd: GETATTR(3) %s\n",
David Shawa334de22006-01-06 00:19:58 -080048 SVCFH_fmt(&argp->fh));
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -040051 resp->status = fh_verify(rqstp, &resp->fh, 0,
52 NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
53 if (resp->status != nfs_ok)
54 goto out;
David Shawa334de22006-01-06 00:19:58 -080055
Chuck Lever14168d62020-10-01 18:59:54 -040056 resp->status = fh_getattr(&resp->fh, &resp->stat);
57out:
Chuck Levercc028a12020-10-02 15:52:44 -040058 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
61/*
62 * Set a file's attributes
63 */
Al Viro7111c662006-10-19 23:28:45 -070064static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +020065nfsd3_proc_setattr(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Christoph Hellwiga6beb732017-05-08 17:35:49 +020067 struct nfsd3_sattrargs *argp = rqstp->rq_argp;
68 struct nfsd3_attrstat *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 dprintk("nfsd: SETATTR(3) %s\n",
71 SVCFH_fmt(&argp->fh));
72
73 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -040074 resp->status = nfsd_setattr(rqstp, &resp->fh, &argp->attrs,
75 argp->check_guard, argp->guardtime);
Chuck Levercc028a12020-10-02 15:52:44 -040076 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*
80 * Look up a path name component
81 */
Al Viro7111c662006-10-19 23:28:45 -070082static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +020083nfsd3_proc_lookup(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Christoph Hellwiga6beb732017-05-08 17:35:49 +020085 struct nfsd3_diropargs *argp = rqstp->rq_argp;
86 struct nfsd3_diropres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 dprintk("nfsd: LOOKUP(3) %s %.*s\n",
89 SVCFH_fmt(&argp->fh),
90 argp->len,
91 argp->name);
92
93 fh_copy(&resp->dirfh, &argp->fh);
94 fh_init(&resp->fh, NFS3_FHSIZE);
95
Chuck Lever14168d62020-10-01 18:59:54 -040096 resp->status = nfsd_lookup(rqstp, &resp->dirfh,
97 argp->name, argp->len,
98 &resp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -040099 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102/*
103 * Check file access
104 */
Al Viro7111c662006-10-19 23:28:45 -0700105static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200106nfsd3_proc_access(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200108 struct nfsd3_accessargs *argp = rqstp->rq_argp;
109 struct nfsd3_accessres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 dprintk("nfsd: ACCESS(3) %s 0x%x\n",
112 SVCFH_fmt(&argp->fh),
113 argp->access);
114
115 fh_copy(&resp->fh, &argp->fh);
116 resp->access = argp->access;
Chuck Lever14168d62020-10-01 18:59:54 -0400117 resp->status = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
Chuck Levercc028a12020-10-02 15:52:44 -0400118 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121/*
122 * Read a symlink.
123 */
Al Viro7111c662006-10-19 23:28:45 -0700124static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200125nfsd3_proc_readlink(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Chuck Lever224c1c82020-10-24 12:51:18 -0400127 struct nfsd_fhandle *argp = rqstp->rq_argp;
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200128 struct nfsd3_readlinkres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 dprintk("nfsd: READLINK(3) %s\n", SVCFH_fmt(&argp->fh));
131
132 /* Read the symlink. */
133 fh_copy(&resp->fh, &argp->fh);
134 resp->len = NFS3_MAXPATHLEN;
Chuck Lever9a9c8922020-10-22 15:18:40 -0400135 resp->pages = rqstp->rq_next_page++;
136 resp->status = nfsd_readlink(rqstp, &resp->fh,
137 page_address(*resp->pages), &resp->len);
Chuck Levercc028a12020-10-02 15:52:44 -0400138 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141/*
142 * Read a portion of a file.
143 */
Al Viro7111c662006-10-19 23:28:45 -0700144static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200145nfsd3_proc_read(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200147 struct nfsd3_readargs *argp = rqstp->rq_argp;
148 struct nfsd3_readres *resp = rqstp->rq_resp;
Chuck Leverbe63bd22020-10-20 14:34:40 -0400149 u32 max_blocksize = svc_max_payload(rqstp);
150 unsigned int len;
151 int v;
152
J. Bruce Fields18b631f2010-11-29 15:28:10 -0500153 dprintk("nfsd: READ(3) %s %lu bytes at %Lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 SVCFH_fmt(&argp->fh),
155 (unsigned long) argp->count,
J. Bruce Fields18b631f2010-11-29 15:28:10 -0500156 (unsigned long long) argp->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Chuck Lever0cb4d232022-02-04 15:19:34 -0500158 argp->count = min_t(u32, argp->count, max_blocksize);
159 if (argp->offset > (u64)OFFSET_MAX)
160 argp->offset = (u64)OFFSET_MAX;
161 if (argp->offset + argp->count > (u64)OFFSET_MAX)
162 argp->count = (u64)OFFSET_MAX - argp->offset;
163
Chuck Leverbe63bd22020-10-20 14:34:40 -0400164 v = 0;
165 len = argp->count;
Chuck Levercc9bcda2020-10-22 15:23:50 -0400166 resp->pages = rqstp->rq_next_page;
Chuck Leverbe63bd22020-10-20 14:34:40 -0400167 while (len > 0) {
168 struct page *page = *(rqstp->rq_next_page++);
169
170 rqstp->rq_vec[v].iov_base = page_address(page);
171 rqstp->rq_vec[v].iov_len = min_t(unsigned int, len, PAGE_SIZE);
172 len -= rqstp->rq_vec[v].iov_len;
173 v++;
174 }
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /* Obtain buffer pointer for payload.
177 * 1 (status) + 22 (post_op_attr) + 1 (count) + 1 (eof)
178 * + 1 (xdr opaque byte count) = 26
179 */
Chuck Leverbe63bd22020-10-20 14:34:40 -0400180 resp->count = argp->count;
Jeff Laytoncd1230122007-05-09 02:34:50 -0700181 svc_reserve_auth(rqstp, ((1 + NFS3_POST_OP_ATTR_WORDS + 3)<<2) + resp->count +4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -0400184 resp->status = nfsd_read(rqstp, &resp->fh, argp->offset,
Chuck Leverbe63bd22020-10-20 14:34:40 -0400185 rqstp->rq_vec, v, &resp->count, &resp->eof);
Chuck Levercc028a12020-10-02 15:52:44 -0400186 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189/*
190 * Write data to a file
191 */
Al Viro7111c662006-10-19 23:28:45 -0700192static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200193nfsd3_proc_write(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200195 struct nfsd3_writeargs *argp = rqstp->rq_argp;
196 struct nfsd3_writeres *resp = rqstp->rq_resp;
David Shaw31dec252009-03-05 20:16:14 -0500197 unsigned long cnt = argp->len;
Chuck Lever8154ef22018-03-27 10:54:07 -0400198 unsigned int nvecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
J. Bruce Fields18b631f2010-11-29 15:28:10 -0500200 dprintk("nfsd: WRITE(3) %s %d bytes at %Lu%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 SVCFH_fmt(&argp->fh),
202 argp->len,
J. Bruce Fields18b631f2010-11-29 15:28:10 -0500203 (unsigned long long) argp->offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 argp->stable? " stable" : "");
205
Chuck Lever6260d9a2022-01-25 16:36:22 -0500206 resp->status = nfserr_fbig;
207 if (argp->offset > (u64)OFFSET_MAX ||
208 argp->offset + argp->len > (u64)OFFSET_MAX)
209 return rpc_success;
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 fh_copy(&resp->fh, &argp->fh);
212 resp->committed = argp->stable;
Chuck Leverdae9a6c2021-09-30 17:06:21 -0400213 nvecs = svc_fill_write_vector(rqstp, &argp->payload);
Chuck Lever6a2f7742021-12-21 11:52:06 -0500214
Chuck Lever14168d62020-10-01 18:59:54 -0400215 resp->status = nfsd_write(rqstp, &resp->fh, argp->offset,
216 rqstp->rq_vec, nvecs, &cnt,
217 resp->committed, resp->verf);
David Shaw31dec252009-03-05 20:16:14 -0500218 resp->count = cnt;
Chuck Levercc028a12020-10-02 15:52:44 -0400219 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
222/*
223 * With NFSv3, CREATE processing is a lot easier than with NFSv2.
224 * At least in theory; we'll see how it fares in practice when the
225 * first reports about SunOS compatibility problems start to pour in...
226 */
Al Viro7111c662006-10-19 23:28:45 -0700227static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200228nfsd3_proc_create(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200230 struct nfsd3_createargs *argp = rqstp->rq_argp;
231 struct nfsd3_diropres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 svc_fh *dirfhp, *newfhp = NULL;
233 struct iattr *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 dprintk("nfsd: CREATE(3) %s %.*s\n",
236 SVCFH_fmt(&argp->fh),
237 argp->len,
238 argp->name);
239
240 dirfhp = fh_copy(&resp->dirfh, &argp->fh);
241 newfhp = fh_init(&resp->fh, NFS3_FHSIZE);
242 attr = &argp->attrs;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* Unfudge the mode bits */
245 attr->ia_mode &= ~S_IFMT;
246 if (!(attr->ia_valid & ATTR_MODE)) {
247 attr->ia_valid |= ATTR_MODE;
248 attr->ia_mode = S_IFREG;
249 } else {
250 attr->ia_mode = (attr->ia_mode & ~S_IFMT) | S_IFREG;
251 }
252
253 /* Now create the file and set attributes */
Chuck Lever14168d62020-10-01 18:59:54 -0400254 resp->status = do_nfsd_create(rqstp, dirfhp, argp->name, argp->len,
255 attr, newfhp, argp->createmode,
256 (u32 *)argp->verf, NULL, NULL);
Chuck Levercc028a12020-10-02 15:52:44 -0400257 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260/*
261 * Make directory. This operation is not idempotent.
262 */
Al Viro7111c662006-10-19 23:28:45 -0700263static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200264nfsd3_proc_mkdir(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200266 struct nfsd3_createargs *argp = rqstp->rq_argp;
267 struct nfsd3_diropres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 dprintk("nfsd: MKDIR(3) %s %.*s\n",
270 SVCFH_fmt(&argp->fh),
271 argp->len,
272 argp->name);
273
274 argp->attrs.ia_valid &= ~ATTR_SIZE;
275 fh_copy(&resp->dirfh, &argp->fh);
276 fh_init(&resp->fh, NFS3_FHSIZE);
Chuck Lever14168d62020-10-01 18:59:54 -0400277 resp->status = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
278 &argp->attrs, S_IFDIR, 0, &resp->fh);
Chuck Lever43a9aa62010-07-06 16:53:34 -0400279 fh_unlock(&resp->dirfh);
Chuck Levercc028a12020-10-02 15:52:44 -0400280 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Al Viro7111c662006-10-19 23:28:45 -0700283static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200284nfsd3_proc_symlink(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200286 struct nfsd3_symlinkargs *argp = rqstp->rq_argp;
287 struct nfsd3_diropres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Chuck Lever14168d62020-10-01 18:59:54 -0400289 if (argp->tlen == 0) {
290 resp->status = nfserr_inval;
291 goto out;
292 }
293 if (argp->tlen > NFS3_MAXPATHLEN) {
294 resp->status = nfserr_nametoolong;
295 goto out;
296 }
Chuck Lever38a70312018-03-27 10:54:21 -0400297
298 argp->tname = svc_fill_symlink_pathname(rqstp, &argp->first,
Chuck Lever11b4d662018-07-27 11:19:10 -0400299 page_address(rqstp->rq_arg.pages[0]),
Chuck Lever38a70312018-03-27 10:54:21 -0400300 argp->tlen);
Chuck Lever14168d62020-10-01 18:59:54 -0400301 if (IS_ERR(argp->tname)) {
302 resp->status = nfserrno(PTR_ERR(argp->tname));
303 goto out;
304 }
Chuck Lever38a70312018-03-27 10:54:21 -0400305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 dprintk("nfsd: SYMLINK(3) %s %.*s -> %.*s\n",
307 SVCFH_fmt(&argp->ffh),
308 argp->flen, argp->fname,
309 argp->tlen, argp->tname);
310
311 fh_copy(&resp->dirfh, &argp->ffh);
312 fh_init(&resp->fh, NFS3_FHSIZE);
Chuck Lever14168d62020-10-01 18:59:54 -0400313 resp->status = nfsd_symlink(rqstp, &resp->dirfh, argp->fname,
314 argp->flen, argp->tname, &resp->fh);
Chuck Lever11b4d662018-07-27 11:19:10 -0400315 kfree(argp->tname);
Chuck Lever14168d62020-10-01 18:59:54 -0400316out:
Chuck Levercc028a12020-10-02 15:52:44 -0400317 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320/*
321 * Make socket/fifo/device.
322 */
Al Viro7111c662006-10-19 23:28:45 -0700323static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200324nfsd3_proc_mknod(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200326 struct nfsd3_mknodargs *argp = rqstp->rq_argp;
327 struct nfsd3_diropres *resp = rqstp->rq_resp;
Al Viroc4d987b2006-10-19 23:29:00 -0700328 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 dev_t rdev = 0;
330
331 dprintk("nfsd: MKNOD(3) %s %.*s\n",
332 SVCFH_fmt(&argp->fh),
333 argp->len,
334 argp->name);
335
336 fh_copy(&resp->dirfh, &argp->fh);
337 fh_init(&resp->fh, NFS3_FHSIZE);
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (argp->ftype == NF3CHR || argp->ftype == NF3BLK) {
340 rdev = MKDEV(argp->major, argp->minor);
341 if (MAJOR(rdev) != argp->major ||
Chuck Lever14168d62020-10-01 18:59:54 -0400342 MINOR(rdev) != argp->minor) {
343 resp->status = nfserr_inval;
344 goto out;
345 }
346 } else if (argp->ftype != NF3SOCK && argp->ftype != NF3FIFO) {
Chuck Lever66d60e32020-10-23 10:41:12 -0400347 resp->status = nfserr_badtype;
Chuck Lever14168d62020-10-01 18:59:54 -0400348 goto out;
349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 type = nfs3_ftypes[argp->ftype];
Chuck Lever14168d62020-10-01 18:59:54 -0400352 resp->status = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
353 &argp->attrs, type, rdev, &resp->fh);
Chuck Lever43a9aa62010-07-06 16:53:34 -0400354 fh_unlock(&resp->dirfh);
Chuck Lever14168d62020-10-01 18:59:54 -0400355out:
Chuck Levercc028a12020-10-02 15:52:44 -0400356 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359/*
360 * Remove file/fifo/socket etc.
361 */
Al Viro7111c662006-10-19 23:28:45 -0700362static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200363nfsd3_proc_remove(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200365 struct nfsd3_diropargs *argp = rqstp->rq_argp;
366 struct nfsd3_attrstat *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 dprintk("nfsd: REMOVE(3) %s %.*s\n",
369 SVCFH_fmt(&argp->fh),
370 argp->len,
371 argp->name);
372
373 /* Unlink. -S_IFDIR means file must not be a directory */
374 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -0400375 resp->status = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR,
376 argp->name, argp->len);
Chuck Lever43a9aa62010-07-06 16:53:34 -0400377 fh_unlock(&resp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400378 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
381/*
382 * Remove a directory
383 */
Al Viro7111c662006-10-19 23:28:45 -0700384static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200385nfsd3_proc_rmdir(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200387 struct nfsd3_diropargs *argp = rqstp->rq_argp;
388 struct nfsd3_attrstat *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 dprintk("nfsd: RMDIR(3) %s %.*s\n",
391 SVCFH_fmt(&argp->fh),
392 argp->len,
393 argp->name);
394
395 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -0400396 resp->status = nfsd_unlink(rqstp, &resp->fh, S_IFDIR,
397 argp->name, argp->len);
Chuck Lever43a9aa62010-07-06 16:53:34 -0400398 fh_unlock(&resp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400399 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Al Viro7111c662006-10-19 23:28:45 -0700402static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200403nfsd3_proc_rename(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200405 struct nfsd3_renameargs *argp = rqstp->rq_argp;
406 struct nfsd3_renameres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 dprintk("nfsd: RENAME(3) %s %.*s ->\n",
409 SVCFH_fmt(&argp->ffh),
410 argp->flen,
411 argp->fname);
412 dprintk("nfsd: -> %s %.*s\n",
413 SVCFH_fmt(&argp->tfh),
414 argp->tlen,
415 argp->tname);
416
417 fh_copy(&resp->ffh, &argp->ffh);
418 fh_copy(&resp->tfh, &argp->tfh);
Chuck Lever14168d62020-10-01 18:59:54 -0400419 resp->status = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen,
420 &resp->tfh, argp->tname, argp->tlen);
Chuck Levercc028a12020-10-02 15:52:44 -0400421 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
Al Viro7111c662006-10-19 23:28:45 -0700424static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200425nfsd3_proc_link(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200427 struct nfsd3_linkargs *argp = rqstp->rq_argp;
428 struct nfsd3_linkres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 dprintk("nfsd: LINK(3) %s ->\n",
431 SVCFH_fmt(&argp->ffh));
432 dprintk("nfsd: -> %s %.*s\n",
433 SVCFH_fmt(&argp->tfh),
434 argp->tlen,
435 argp->tname);
436
437 fh_copy(&resp->fh, &argp->ffh);
438 fh_copy(&resp->tfh, &argp->tfh);
Chuck Lever14168d62020-10-01 18:59:54 -0400439 resp->status = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen,
440 &resp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400441 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Chuck Lever40116eb2020-11-17 09:50:23 -0500444static void nfsd3_init_dirlist_pages(struct svc_rqst *rqstp,
445 struct nfsd3_readdirres *resp,
Chuck Lever53b11192021-12-16 11:12:11 -0500446 u32 count)
Chuck Lever40116eb2020-11-17 09:50:23 -0500447{
Chuck Lever7f87fc22020-10-22 19:46:58 -0400448 struct xdr_buf *buf = &resp->dirlist;
449 struct xdr_stream *xdr = &resp->xdr;
450
Chuck Lever53b11192021-12-16 11:12:11 -0500451 count = clamp(count, (u32)(XDR_UNIT * 2), svc_max_payload(rqstp));
Chuck Lever40116eb2020-11-17 09:50:23 -0500452
Chuck Lever7f87fc22020-10-22 19:46:58 -0400453 memset(buf, 0, sizeof(*buf));
Chuck Lever40116eb2020-11-17 09:50:23 -0500454
Chuck Lever7f87fc22020-10-22 19:46:58 -0400455 /* Reserve room for the NULL ptr & eof flag (-2 words) */
456 buf->buflen = count - XDR_UNIT * 2;
457 buf->pages = rqstp->rq_next_page;
Chuck Lever53b11192021-12-16 11:12:11 -0500458 rqstp->rq_next_page += (buf->buflen + PAGE_SIZE - 1) >> PAGE_SHIFT;
Chuck Lever7f87fc22020-10-22 19:46:58 -0400459
460 /* This is xdr_init_encode(), but it assumes that
461 * the head kvec has already been consumed. */
462 xdr_set_scratch_buffer(xdr, NULL, 0);
463 xdr->buf = buf;
464 xdr->page_ptr = buf->pages;
465 xdr->iov = NULL;
466 xdr->p = page_address(*buf->pages);
Chuck Lever53b11192021-12-16 11:12:11 -0500467 xdr->end = (void *)xdr->p + min_t(u32, buf->buflen, PAGE_SIZE);
Chuck Lever7f87fc22020-10-22 19:46:58 -0400468 xdr->rqst = NULL;
Chuck Lever40116eb2020-11-17 09:50:23 -0500469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/*
472 * Read a portion of a directory.
473 */
Al Viro7111c662006-10-19 23:28:45 -0700474static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200475nfsd3_proc_readdir(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200477 struct nfsd3_readdirargs *argp = rqstp->rq_argp;
478 struct nfsd3_readdirres *resp = rqstp->rq_resp;
Chuck Lever0a8f37f2020-11-10 10:24:39 -0500479 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 dprintk("nfsd: READDIR(3) %s %d bytes at %d\n",
482 SVCFH_fmt(&argp->fh),
483 argp->count, (u32) argp->cookie);
484
Chuck Lever40116eb2020-11-17 09:50:23 -0500485 nfsd3_init_dirlist_pages(rqstp, resp, argp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 fh_copy(&resp->fh, &argp->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 resp->common.err = nfs_ok;
Chuck Lever7f87fc22020-10-22 19:46:58 -0400489 resp->cookie_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 resp->rqstp = rqstp;
Chuck Lever0a8f37f2020-11-10 10:24:39 -0500491 offset = argp->cookie;
Chuck Lever0a8f37f2020-11-10 10:24:39 -0500492 resp->status = nfsd_readdir(rqstp, &resp->fh, &offset,
Chuck Lever7f87fc22020-10-22 19:46:58 -0400493 &resp->common, nfs3svc_encode_entry3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 memcpy(resp->verf, argp->verf, 8);
Chuck Levera161e6c2020-11-10 09:57:14 -0500495 nfs3svc_encode_cookie3(resp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Chuck Lever76ed0dd2021-01-15 09:28:44 -0500497 /* Recycle only pages that were part of the reply */
498 rqstp->rq_next_page = resp->xdr.page_ptr + 1;
499
Chuck Levercc028a12020-10-02 15:52:44 -0400500 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
503/*
504 * Read a portion of a directory, including file handles and attrs.
505 * For now, we choose to ignore the dircount parameter.
506 */
Al Viro7111c662006-10-19 23:28:45 -0700507static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200508nfsd3_proc_readdirplus(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200510 struct nfsd3_readdirargs *argp = rqstp->rq_argp;
511 struct nfsd3_readdirres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
515 SVCFH_fmt(&argp->fh),
516 argp->count, (u32) argp->cookie);
517
Chuck Lever40116eb2020-11-17 09:50:23 -0500518 nfsd3_init_dirlist_pages(rqstp, resp, argp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 fh_copy(&resp->fh, &argp->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 resp->common.err = nfs_ok;
Chuck Lever7f87fc22020-10-22 19:46:58 -0400522 resp->cookie_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 resp->rqstp = rqstp;
524 offset = argp->cookie;
Rajesh Ghanekar18c01ab2014-08-01 22:17:30 -0400525
Chuck Lever14168d62020-10-01 18:59:54 -0400526 resp->status = fh_verify(rqstp, &resp->fh, S_IFDIR, NFSD_MAY_NOP);
527 if (resp->status != nfs_ok)
528 goto out;
Rajesh Ghanekar18c01ab2014-08-01 22:17:30 -0400529
Chuck Lever14168d62020-10-01 18:59:54 -0400530 if (resp->fh.fh_export->ex_flags & NFSEXP_NOREADDIRPLUS) {
531 resp->status = nfserr_notsupp;
532 goto out;
533 }
Rajesh Ghanekar18c01ab2014-08-01 22:17:30 -0400534
Chuck Lever14168d62020-10-01 18:59:54 -0400535 resp->status = nfsd_readdir(rqstp, &resp->fh, &offset,
Chuck Lever7f87fc22020-10-22 19:46:58 -0400536 &resp->common, nfs3svc_encode_entryplus3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 memcpy(resp->verf, argp->verf, 8);
Chuck Levera161e6c2020-11-10 09:57:14 -0500538 nfs3svc_encode_cookie3(resp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Chuck Lever76ed0dd2021-01-15 09:28:44 -0500540 /* Recycle only pages that were part of the reply */
541 rqstp->rq_next_page = resp->xdr.page_ptr + 1;
542
Chuck Lever14168d62020-10-01 18:59:54 -0400543out:
Chuck Levercc028a12020-10-02 15:52:44 -0400544 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547/*
548 * Get file system stats
549 */
Al Viro7111c662006-10-19 23:28:45 -0700550static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200551nfsd3_proc_fsstat(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200553 struct nfsd_fhandle *argp = rqstp->rq_argp;
554 struct nfsd3_fsstatres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 dprintk("nfsd: FSSTAT(3) %s\n",
557 SVCFH_fmt(&argp->fh));
558
Chuck Lever14168d62020-10-01 18:59:54 -0400559 resp->status = nfsd_statfs(rqstp, &argp->fh, &resp->stats, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 fh_put(&argp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400561 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
564/*
565 * Get file system info
566 */
Al Viro7111c662006-10-19 23:28:45 -0700567static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200568nfsd3_proc_fsinfo(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200570 struct nfsd_fhandle *argp = rqstp->rq_argp;
571 struct nfsd3_fsinfores *resp = rqstp->rq_resp;
Greg Banks7adae482006-10-04 02:15:47 -0700572 u32 max_blocksize = svc_max_payload(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 dprintk("nfsd: FSINFO(3) %s\n",
575 SVCFH_fmt(&argp->fh));
576
Greg Banks7adae482006-10-04 02:15:47 -0700577 resp->f_rtmax = max_blocksize;
578 resp->f_rtpref = max_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 resp->f_rtmult = PAGE_SIZE;
Greg Banks7adae482006-10-04 02:15:47 -0700580 resp->f_wtmax = max_blocksize;
581 resp->f_wtpref = max_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 resp->f_wtmult = PAGE_SIZE;
NeilBrownf875a792019-03-07 09:49:46 +1100583 resp->f_dtpref = max_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 resp->f_maxfilesize = ~(u32) 0;
585 resp->f_properties = NFS3_FSF_DEFAULT;
586
Chuck Lever14168d62020-10-01 18:59:54 -0400587 resp->status = fh_verify(rqstp, &argp->fh, 0,
588 NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 /* Check special features of the file system. May request
591 * different read/write sizes for file systems known to have
592 * problems with large blocks */
Chuck Lever14168d62020-10-01 18:59:54 -0400593 if (resp->status == nfs_ok) {
Al Virofc640052016-04-10 01:33:30 -0400594 struct super_block *sb = argp->fh.fh_dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 /* Note that we don't care for remote fs's here */
Qinghuang Feng12214cb2009-01-12 03:13:53 +0800597 if (sb->s_magic == MSDOS_SUPER_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 resp->f_properties = NFS3_FSF_BILLYBOY;
599 }
600 resp->f_maxfilesize = sb->s_maxbytes;
601 }
602
603 fh_put(&argp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400604 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
607/*
608 * Get pathconf info for the specified file
609 */
Al Viro7111c662006-10-19 23:28:45 -0700610static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200611nfsd3_proc_pathconf(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200613 struct nfsd_fhandle *argp = rqstp->rq_argp;
614 struct nfsd3_pathconfres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 dprintk("nfsd: PATHCONF(3) %s\n",
617 SVCFH_fmt(&argp->fh));
618
619 /* Set default pathconf */
620 resp->p_link_max = 255; /* at least */
621 resp->p_name_max = 255; /* at least */
622 resp->p_no_trunc = 0;
623 resp->p_chown_restricted = 1;
624 resp->p_case_insensitive = 0;
625 resp->p_case_preserving = 1;
626
Chuck Lever14168d62020-10-01 18:59:54 -0400627 resp->status = fh_verify(rqstp, &argp->fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Chuck Lever14168d62020-10-01 18:59:54 -0400629 if (resp->status == nfs_ok) {
Al Virofc640052016-04-10 01:33:30 -0400630 struct super_block *sb = argp->fh.fh_dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 /* Note that we don't care for remote fs's here */
633 switch (sb->s_magic) {
634 case EXT2_SUPER_MAGIC:
635 resp->p_link_max = EXT2_LINK_MAX;
636 resp->p_name_max = EXT2_NAME_LEN;
637 break;
Qinghuang Feng12214cb2009-01-12 03:13:53 +0800638 case MSDOS_SUPER_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 resp->p_case_insensitive = 1;
640 resp->p_case_preserving = 0;
641 break;
642 }
643 }
644
645 fh_put(&argp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400646 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649/*
650 * Commit a file (range) to stable storage.
651 */
Al Viro7111c662006-10-19 23:28:45 -0700652static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200653nfsd3_proc_commit(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200655 struct nfsd3_commitargs *argp = rqstp->rq_argp;
656 struct nfsd3_commitres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 dprintk("nfsd: COMMIT(3) %s %u@%Lu\n",
659 SVCFH_fmt(&argp->fh),
660 argp->count,
661 (unsigned long long) argp->offset);
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -0400664 resp->status = nfsd_commit(rqstp, &resp->fh, argp->offset,
665 argp->count, resp->verf);
Chuck Levercc028a12020-10-02 15:52:44 -0400666 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669
670/*
671 * NFSv3 Server procedures.
672 * Only the results of non-idempotent operations are cached.
673 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674#define nfs3svc_encode_attrstatres nfs3svc_encode_attrstat
675#define nfs3svc_encode_wccstatres nfs3svc_encode_wccstat
676#define nfsd3_mkdirargs nfsd3_createargs
677#define nfsd3_readdirplusargs nfsd3_readdirargs
678#define nfsd3_fhandleargs nfsd_fhandle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679#define nfsd3_attrstatres nfsd3_attrstat
680#define nfsd3_wccstatres nfsd3_attrstat
681#define nfsd3_createres nfsd3_diropres
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#define ST 1 /* status*/
684#define FH 17 /* filehandle with length */
685#define AT 21 /* attributes */
686#define pAT (1+AT) /* post attributes - conditional */
687#define WC (7+pAT) /* WCC attributes */
688
Christoph Hellwig860bda22017-05-12 16:11:49 +0200689static const struct svc_procedure nfsd_procedures3[22] = {
Yu Zhiguob9081d92009-06-09 17:33:34 +0800690 [NFS3PROC_NULL] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200691 .pc_func = nfsd3_proc_null,
Chuck Lever788f7182020-11-05 14:48:29 -0500692 .pc_decode = nfssvc_decode_voidarg,
693 .pc_encode = nfssvc_encode_voidres,
694 .pc_argsize = sizeof(struct nfsd_voidargs),
695 .pc_ressize = sizeof(struct nfsd_voidres),
Yu Zhiguob9081d92009-06-09 17:33:34 +0800696 .pc_cachetype = RC_NOCACHE,
697 .pc_xdrressize = ST,
Chuck Lever2289e872020-09-17 17:22:49 -0400698 .pc_name = "NULL",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800699 },
700 [NFS3PROC_GETATTR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200701 .pc_func = nfsd3_proc_getattr,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200702 .pc_decode = nfs3svc_decode_fhandleargs,
Chuck Lever2c42f802020-10-21 11:58:41 -0400703 .pc_encode = nfs3svc_encode_getattrres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200704 .pc_release = nfs3svc_release_fhandle,
Chuck Lever95753632020-10-20 14:30:02 -0400705 .pc_argsize = sizeof(struct nfsd_fhandle),
Yu Zhiguob9081d92009-06-09 17:33:34 +0800706 .pc_ressize = sizeof(struct nfsd3_attrstatres),
707 .pc_cachetype = RC_NOCACHE,
708 .pc_xdrressize = ST+AT,
Chuck Lever2289e872020-09-17 17:22:49 -0400709 .pc_name = "GETATTR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800710 },
711 [NFS3PROC_SETATTR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200712 .pc_func = nfsd3_proc_setattr,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200713 .pc_decode = nfs3svc_decode_sattrargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200714 .pc_encode = nfs3svc_encode_wccstatres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200715 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800716 .pc_argsize = sizeof(struct nfsd3_sattrargs),
717 .pc_ressize = sizeof(struct nfsd3_wccstatres),
718 .pc_cachetype = RC_REPLBUFF,
719 .pc_xdrressize = ST+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400720 .pc_name = "SETATTR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800721 },
722 [NFS3PROC_LOOKUP] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200723 .pc_func = nfsd3_proc_lookup,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200724 .pc_decode = nfs3svc_decode_diropargs,
Chuck Lever5cf35332020-10-22 14:46:58 -0400725 .pc_encode = nfs3svc_encode_lookupres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200726 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800727 .pc_argsize = sizeof(struct nfsd3_diropargs),
728 .pc_ressize = sizeof(struct nfsd3_diropres),
729 .pc_cachetype = RC_NOCACHE,
730 .pc_xdrressize = ST+FH+pAT+pAT,
Chuck Lever2289e872020-09-17 17:22:49 -0400731 .pc_name = "LOOKUP",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800732 },
733 [NFS3PROC_ACCESS] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200734 .pc_func = nfsd3_proc_access,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200735 .pc_decode = nfs3svc_decode_accessargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200736 .pc_encode = nfs3svc_encode_accessres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200737 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800738 .pc_argsize = sizeof(struct nfsd3_accessargs),
739 .pc_ressize = sizeof(struct nfsd3_accessres),
740 .pc_cachetype = RC_NOCACHE,
741 .pc_xdrressize = ST+pAT+1,
Chuck Lever2289e872020-09-17 17:22:49 -0400742 .pc_name = "ACCESS",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800743 },
744 [NFS3PROC_READLINK] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200745 .pc_func = nfsd3_proc_readlink,
Chuck Lever224c1c82020-10-24 12:51:18 -0400746 .pc_decode = nfs3svc_decode_fhandleargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200747 .pc_encode = nfs3svc_encode_readlinkres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200748 .pc_release = nfs3svc_release_fhandle,
Chuck Lever224c1c82020-10-24 12:51:18 -0400749 .pc_argsize = sizeof(struct nfsd_fhandle),
Yu Zhiguob9081d92009-06-09 17:33:34 +0800750 .pc_ressize = sizeof(struct nfsd3_readlinkres),
751 .pc_cachetype = RC_NOCACHE,
752 .pc_xdrressize = ST+pAT+1+NFS3_MAXPATHLEN/4,
Chuck Lever2289e872020-09-17 17:22:49 -0400753 .pc_name = "READLINK",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800754 },
755 [NFS3PROC_READ] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200756 .pc_func = nfsd3_proc_read,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200757 .pc_decode = nfs3svc_decode_readargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200758 .pc_encode = nfs3svc_encode_readres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200759 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800760 .pc_argsize = sizeof(struct nfsd3_readargs),
761 .pc_ressize = sizeof(struct nfsd3_readres),
762 .pc_cachetype = RC_NOCACHE,
763 .pc_xdrressize = ST+pAT+4+NFSSVC_MAXBLKSIZE/4,
Chuck Lever2289e872020-09-17 17:22:49 -0400764 .pc_name = "READ",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800765 },
766 [NFS3PROC_WRITE] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200767 .pc_func = nfsd3_proc_write,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200768 .pc_decode = nfs3svc_decode_writeargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200769 .pc_encode = nfs3svc_encode_writeres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200770 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800771 .pc_argsize = sizeof(struct nfsd3_writeargs),
772 .pc_ressize = sizeof(struct nfsd3_writeres),
773 .pc_cachetype = RC_REPLBUFF,
774 .pc_xdrressize = ST+WC+4,
Chuck Lever2289e872020-09-17 17:22:49 -0400775 .pc_name = "WRITE",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800776 },
777 [NFS3PROC_CREATE] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200778 .pc_func = nfsd3_proc_create,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200779 .pc_decode = nfs3svc_decode_createargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200780 .pc_encode = nfs3svc_encode_createres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200781 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800782 .pc_argsize = sizeof(struct nfsd3_createargs),
783 .pc_ressize = sizeof(struct nfsd3_createres),
784 .pc_cachetype = RC_REPLBUFF,
785 .pc_xdrressize = ST+(1+FH+pAT)+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400786 .pc_name = "CREATE",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800787 },
788 [NFS3PROC_MKDIR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200789 .pc_func = nfsd3_proc_mkdir,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200790 .pc_decode = nfs3svc_decode_mkdirargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200791 .pc_encode = nfs3svc_encode_createres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200792 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800793 .pc_argsize = sizeof(struct nfsd3_mkdirargs),
794 .pc_ressize = sizeof(struct nfsd3_createres),
795 .pc_cachetype = RC_REPLBUFF,
796 .pc_xdrressize = ST+(1+FH+pAT)+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400797 .pc_name = "MKDIR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800798 },
799 [NFS3PROC_SYMLINK] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200800 .pc_func = nfsd3_proc_symlink,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200801 .pc_decode = nfs3svc_decode_symlinkargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200802 .pc_encode = nfs3svc_encode_createres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200803 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800804 .pc_argsize = sizeof(struct nfsd3_symlinkargs),
805 .pc_ressize = sizeof(struct nfsd3_createres),
806 .pc_cachetype = RC_REPLBUFF,
807 .pc_xdrressize = ST+(1+FH+pAT)+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400808 .pc_name = "SYMLINK",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800809 },
810 [NFS3PROC_MKNOD] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200811 .pc_func = nfsd3_proc_mknod,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200812 .pc_decode = nfs3svc_decode_mknodargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200813 .pc_encode = nfs3svc_encode_createres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200814 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800815 .pc_argsize = sizeof(struct nfsd3_mknodargs),
816 .pc_ressize = sizeof(struct nfsd3_createres),
817 .pc_cachetype = RC_REPLBUFF,
818 .pc_xdrressize = ST+(1+FH+pAT)+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400819 .pc_name = "MKNOD",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800820 },
821 [NFS3PROC_REMOVE] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200822 .pc_func = nfsd3_proc_remove,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200823 .pc_decode = nfs3svc_decode_diropargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200824 .pc_encode = nfs3svc_encode_wccstatres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200825 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800826 .pc_argsize = sizeof(struct nfsd3_diropargs),
827 .pc_ressize = sizeof(struct nfsd3_wccstatres),
828 .pc_cachetype = RC_REPLBUFF,
829 .pc_xdrressize = ST+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400830 .pc_name = "REMOVE",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800831 },
832 [NFS3PROC_RMDIR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200833 .pc_func = nfsd3_proc_rmdir,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200834 .pc_decode = nfs3svc_decode_diropargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200835 .pc_encode = nfs3svc_encode_wccstatres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200836 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800837 .pc_argsize = sizeof(struct nfsd3_diropargs),
838 .pc_ressize = sizeof(struct nfsd3_wccstatres),
839 .pc_cachetype = RC_REPLBUFF,
840 .pc_xdrressize = ST+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400841 .pc_name = "RMDIR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800842 },
843 [NFS3PROC_RENAME] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200844 .pc_func = nfsd3_proc_rename,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200845 .pc_decode = nfs3svc_decode_renameargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200846 .pc_encode = nfs3svc_encode_renameres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200847 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800848 .pc_argsize = sizeof(struct nfsd3_renameargs),
849 .pc_ressize = sizeof(struct nfsd3_renameres),
850 .pc_cachetype = RC_REPLBUFF,
851 .pc_xdrressize = ST+WC+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400852 .pc_name = "RENAME",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800853 },
854 [NFS3PROC_LINK] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200855 .pc_func = nfsd3_proc_link,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200856 .pc_decode = nfs3svc_decode_linkargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200857 .pc_encode = nfs3svc_encode_linkres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200858 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800859 .pc_argsize = sizeof(struct nfsd3_linkargs),
860 .pc_ressize = sizeof(struct nfsd3_linkres),
861 .pc_cachetype = RC_REPLBUFF,
862 .pc_xdrressize = ST+pAT+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400863 .pc_name = "LINK",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800864 },
865 [NFS3PROC_READDIR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200866 .pc_func = nfsd3_proc_readdir,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200867 .pc_decode = nfs3svc_decode_readdirargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200868 .pc_encode = nfs3svc_encode_readdirres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200869 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800870 .pc_argsize = sizeof(struct nfsd3_readdirargs),
871 .pc_ressize = sizeof(struct nfsd3_readdirres),
872 .pc_cachetype = RC_NOCACHE,
Chuck Lever2289e872020-09-17 17:22:49 -0400873 .pc_name = "READDIR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800874 },
875 [NFS3PROC_READDIRPLUS] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200876 .pc_func = nfsd3_proc_readdirplus,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200877 .pc_decode = nfs3svc_decode_readdirplusargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200878 .pc_encode = nfs3svc_encode_readdirres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200879 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800880 .pc_argsize = sizeof(struct nfsd3_readdirplusargs),
881 .pc_ressize = sizeof(struct nfsd3_readdirres),
882 .pc_cachetype = RC_NOCACHE,
Chuck Lever2289e872020-09-17 17:22:49 -0400883 .pc_name = "READDIRPLUS",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800884 },
885 [NFS3PROC_FSSTAT] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200886 .pc_func = nfsd3_proc_fsstat,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200887 .pc_decode = nfs3svc_decode_fhandleargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200888 .pc_encode = nfs3svc_encode_fsstatres,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800889 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
890 .pc_ressize = sizeof(struct nfsd3_fsstatres),
891 .pc_cachetype = RC_NOCACHE,
892 .pc_xdrressize = ST+pAT+2*6+1,
Chuck Lever2289e872020-09-17 17:22:49 -0400893 .pc_name = "FSSTAT",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800894 },
895 [NFS3PROC_FSINFO] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200896 .pc_func = nfsd3_proc_fsinfo,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200897 .pc_decode = nfs3svc_decode_fhandleargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200898 .pc_encode = nfs3svc_encode_fsinfores,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800899 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
900 .pc_ressize = sizeof(struct nfsd3_fsinfores),
901 .pc_cachetype = RC_NOCACHE,
902 .pc_xdrressize = ST+pAT+12,
Chuck Lever2289e872020-09-17 17:22:49 -0400903 .pc_name = "FSINFO",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800904 },
905 [NFS3PROC_PATHCONF] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200906 .pc_func = nfsd3_proc_pathconf,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200907 .pc_decode = nfs3svc_decode_fhandleargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200908 .pc_encode = nfs3svc_encode_pathconfres,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800909 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
910 .pc_ressize = sizeof(struct nfsd3_pathconfres),
911 .pc_cachetype = RC_NOCACHE,
912 .pc_xdrressize = ST+pAT+6,
Chuck Lever2289e872020-09-17 17:22:49 -0400913 .pc_name = "PATHCONF",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800914 },
915 [NFS3PROC_COMMIT] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200916 .pc_func = nfsd3_proc_commit,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200917 .pc_decode = nfs3svc_decode_commitargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200918 .pc_encode = nfs3svc_encode_commitres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200919 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800920 .pc_argsize = sizeof(struct nfsd3_commitargs),
921 .pc_ressize = sizeof(struct nfsd3_commitres),
922 .pc_cachetype = RC_NOCACHE,
923 .pc_xdrressize = ST+WC+2,
Chuck Lever2289e872020-09-17 17:22:49 -0400924 .pc_name = "COMMIT",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800925 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926};
927
Christoph Hellwig7fd38af2017-05-08 23:40:27 +0200928static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures3)];
Christoph Hellwige9679182017-05-12 16:21:37 +0200929const struct svc_version nfsd_version3 = {
930 .vs_vers = 3,
931 .vs_nproc = 22,
932 .vs_proc = nfsd_procedures3,
933 .vs_dispatch = nfsd_dispatch,
934 .vs_count = nfsd_count3,
935 .vs_xdrsize = NFS3_SVC_XDRSIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936};