blob: b5a52528f19ff6df5231294c28e4647f522bef2c [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
206 fh_copy(&resp->fh, &argp->fh);
207 resp->committed = argp->stable;
Chuck Leverdae9a6c2021-09-30 17:06:21 -0400208 nvecs = svc_fill_write_vector(rqstp, &argp->payload);
Chuck Lever6a2f7742021-12-21 11:52:06 -0500209
Chuck Lever14168d62020-10-01 18:59:54 -0400210 resp->status = nfsd_write(rqstp, &resp->fh, argp->offset,
211 rqstp->rq_vec, nvecs, &cnt,
212 resp->committed, resp->verf);
David Shaw31dec252009-03-05 20:16:14 -0500213 resp->count = cnt;
Chuck Levercc028a12020-10-02 15:52:44 -0400214 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217/*
218 * With NFSv3, CREATE processing is a lot easier than with NFSv2.
219 * At least in theory; we'll see how it fares in practice when the
220 * first reports about SunOS compatibility problems start to pour in...
221 */
Al Viro7111c662006-10-19 23:28:45 -0700222static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200223nfsd3_proc_create(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200225 struct nfsd3_createargs *argp = rqstp->rq_argp;
226 struct nfsd3_diropres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 svc_fh *dirfhp, *newfhp = NULL;
228 struct iattr *attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 dprintk("nfsd: CREATE(3) %s %.*s\n",
231 SVCFH_fmt(&argp->fh),
232 argp->len,
233 argp->name);
234
235 dirfhp = fh_copy(&resp->dirfh, &argp->fh);
236 newfhp = fh_init(&resp->fh, NFS3_FHSIZE);
237 attr = &argp->attrs;
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* Unfudge the mode bits */
240 attr->ia_mode &= ~S_IFMT;
241 if (!(attr->ia_valid & ATTR_MODE)) {
242 attr->ia_valid |= ATTR_MODE;
243 attr->ia_mode = S_IFREG;
244 } else {
245 attr->ia_mode = (attr->ia_mode & ~S_IFMT) | S_IFREG;
246 }
247
248 /* Now create the file and set attributes */
Chuck Lever14168d62020-10-01 18:59:54 -0400249 resp->status = do_nfsd_create(rqstp, dirfhp, argp->name, argp->len,
250 attr, newfhp, argp->createmode,
251 (u32 *)argp->verf, NULL, NULL);
Chuck Levercc028a12020-10-02 15:52:44 -0400252 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
255/*
256 * Make directory. This operation is not idempotent.
257 */
Al Viro7111c662006-10-19 23:28:45 -0700258static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200259nfsd3_proc_mkdir(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200261 struct nfsd3_createargs *argp = rqstp->rq_argp;
262 struct nfsd3_diropres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 dprintk("nfsd: MKDIR(3) %s %.*s\n",
265 SVCFH_fmt(&argp->fh),
266 argp->len,
267 argp->name);
268
269 argp->attrs.ia_valid &= ~ATTR_SIZE;
270 fh_copy(&resp->dirfh, &argp->fh);
271 fh_init(&resp->fh, NFS3_FHSIZE);
Chuck Lever14168d62020-10-01 18:59:54 -0400272 resp->status = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
273 &argp->attrs, S_IFDIR, 0, &resp->fh);
Chuck Lever43a9aa62010-07-06 16:53:34 -0400274 fh_unlock(&resp->dirfh);
Chuck Levercc028a12020-10-02 15:52:44 -0400275 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Al Viro7111c662006-10-19 23:28:45 -0700278static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200279nfsd3_proc_symlink(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200281 struct nfsd3_symlinkargs *argp = rqstp->rq_argp;
282 struct nfsd3_diropres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Chuck Lever14168d62020-10-01 18:59:54 -0400284 if (argp->tlen == 0) {
285 resp->status = nfserr_inval;
286 goto out;
287 }
288 if (argp->tlen > NFS3_MAXPATHLEN) {
289 resp->status = nfserr_nametoolong;
290 goto out;
291 }
Chuck Lever38a70312018-03-27 10:54:21 -0400292
293 argp->tname = svc_fill_symlink_pathname(rqstp, &argp->first,
Chuck Lever11b4d662018-07-27 11:19:10 -0400294 page_address(rqstp->rq_arg.pages[0]),
Chuck Lever38a70312018-03-27 10:54:21 -0400295 argp->tlen);
Chuck Lever14168d62020-10-01 18:59:54 -0400296 if (IS_ERR(argp->tname)) {
297 resp->status = nfserrno(PTR_ERR(argp->tname));
298 goto out;
299 }
Chuck Lever38a70312018-03-27 10:54:21 -0400300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 dprintk("nfsd: SYMLINK(3) %s %.*s -> %.*s\n",
302 SVCFH_fmt(&argp->ffh),
303 argp->flen, argp->fname,
304 argp->tlen, argp->tname);
305
306 fh_copy(&resp->dirfh, &argp->ffh);
307 fh_init(&resp->fh, NFS3_FHSIZE);
Chuck Lever14168d62020-10-01 18:59:54 -0400308 resp->status = nfsd_symlink(rqstp, &resp->dirfh, argp->fname,
309 argp->flen, argp->tname, &resp->fh);
Chuck Lever11b4d662018-07-27 11:19:10 -0400310 kfree(argp->tname);
Chuck Lever14168d62020-10-01 18:59:54 -0400311out:
Chuck Levercc028a12020-10-02 15:52:44 -0400312 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315/*
316 * Make socket/fifo/device.
317 */
Al Viro7111c662006-10-19 23:28:45 -0700318static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200319nfsd3_proc_mknod(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200321 struct nfsd3_mknodargs *argp = rqstp->rq_argp;
322 struct nfsd3_diropres *resp = rqstp->rq_resp;
Al Viroc4d987b2006-10-19 23:29:00 -0700323 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 dev_t rdev = 0;
325
326 dprintk("nfsd: MKNOD(3) %s %.*s\n",
327 SVCFH_fmt(&argp->fh),
328 argp->len,
329 argp->name);
330
331 fh_copy(&resp->dirfh, &argp->fh);
332 fh_init(&resp->fh, NFS3_FHSIZE);
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (argp->ftype == NF3CHR || argp->ftype == NF3BLK) {
335 rdev = MKDEV(argp->major, argp->minor);
336 if (MAJOR(rdev) != argp->major ||
Chuck Lever14168d62020-10-01 18:59:54 -0400337 MINOR(rdev) != argp->minor) {
338 resp->status = nfserr_inval;
339 goto out;
340 }
341 } else if (argp->ftype != NF3SOCK && argp->ftype != NF3FIFO) {
Chuck Lever66d60e32020-10-23 10:41:12 -0400342 resp->status = nfserr_badtype;
Chuck Lever14168d62020-10-01 18:59:54 -0400343 goto out;
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 type = nfs3_ftypes[argp->ftype];
Chuck Lever14168d62020-10-01 18:59:54 -0400347 resp->status = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
348 &argp->attrs, type, rdev, &resp->fh);
Chuck Lever43a9aa62010-07-06 16:53:34 -0400349 fh_unlock(&resp->dirfh);
Chuck Lever14168d62020-10-01 18:59:54 -0400350out:
Chuck Levercc028a12020-10-02 15:52:44 -0400351 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354/*
355 * Remove file/fifo/socket etc.
356 */
Al Viro7111c662006-10-19 23:28:45 -0700357static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200358nfsd3_proc_remove(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200360 struct nfsd3_diropargs *argp = rqstp->rq_argp;
361 struct nfsd3_attrstat *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 dprintk("nfsd: REMOVE(3) %s %.*s\n",
364 SVCFH_fmt(&argp->fh),
365 argp->len,
366 argp->name);
367
368 /* Unlink. -S_IFDIR means file must not be a directory */
369 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -0400370 resp->status = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR,
371 argp->name, argp->len);
Chuck Lever43a9aa62010-07-06 16:53:34 -0400372 fh_unlock(&resp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400373 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376/*
377 * Remove a directory
378 */
Al Viro7111c662006-10-19 23:28:45 -0700379static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200380nfsd3_proc_rmdir(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200382 struct nfsd3_diropargs *argp = rqstp->rq_argp;
383 struct nfsd3_attrstat *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 dprintk("nfsd: RMDIR(3) %s %.*s\n",
386 SVCFH_fmt(&argp->fh),
387 argp->len,
388 argp->name);
389
390 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -0400391 resp->status = nfsd_unlink(rqstp, &resp->fh, S_IFDIR,
392 argp->name, argp->len);
Chuck Lever43a9aa62010-07-06 16:53:34 -0400393 fh_unlock(&resp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400394 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
Al Viro7111c662006-10-19 23:28:45 -0700397static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200398nfsd3_proc_rename(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200400 struct nfsd3_renameargs *argp = rqstp->rq_argp;
401 struct nfsd3_renameres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 dprintk("nfsd: RENAME(3) %s %.*s ->\n",
404 SVCFH_fmt(&argp->ffh),
405 argp->flen,
406 argp->fname);
407 dprintk("nfsd: -> %s %.*s\n",
408 SVCFH_fmt(&argp->tfh),
409 argp->tlen,
410 argp->tname);
411
412 fh_copy(&resp->ffh, &argp->ffh);
413 fh_copy(&resp->tfh, &argp->tfh);
Chuck Lever14168d62020-10-01 18:59:54 -0400414 resp->status = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen,
415 &resp->tfh, argp->tname, argp->tlen);
Chuck Levercc028a12020-10-02 15:52:44 -0400416 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Al Viro7111c662006-10-19 23:28:45 -0700419static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200420nfsd3_proc_link(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200422 struct nfsd3_linkargs *argp = rqstp->rq_argp;
423 struct nfsd3_linkres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 dprintk("nfsd: LINK(3) %s ->\n",
426 SVCFH_fmt(&argp->ffh));
427 dprintk("nfsd: -> %s %.*s\n",
428 SVCFH_fmt(&argp->tfh),
429 argp->tlen,
430 argp->tname);
431
432 fh_copy(&resp->fh, &argp->ffh);
433 fh_copy(&resp->tfh, &argp->tfh);
Chuck Lever14168d62020-10-01 18:59:54 -0400434 resp->status = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen,
435 &resp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400436 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Chuck Lever40116eb2020-11-17 09:50:23 -0500439static void nfsd3_init_dirlist_pages(struct svc_rqst *rqstp,
440 struct nfsd3_readdirres *resp,
441 int count)
442{
Chuck Lever7f87fc22020-10-22 19:46:58 -0400443 struct xdr_buf *buf = &resp->dirlist;
444 struct xdr_stream *xdr = &resp->xdr;
445
Chuck Lever40116eb2020-11-17 09:50:23 -0500446 count = min_t(u32, count, svc_max_payload(rqstp));
447
Chuck Lever7f87fc22020-10-22 19:46:58 -0400448 memset(buf, 0, sizeof(*buf));
Chuck Lever40116eb2020-11-17 09:50:23 -0500449
Chuck Lever7f87fc22020-10-22 19:46:58 -0400450 /* Reserve room for the NULL ptr & eof flag (-2 words) */
451 buf->buflen = count - XDR_UNIT * 2;
452 buf->pages = rqstp->rq_next_page;
Chuck Lever40116eb2020-11-17 09:50:23 -0500453 while (count > 0) {
454 rqstp->rq_next_page++;
455 count -= PAGE_SIZE;
456 }
Chuck Lever7f87fc22020-10-22 19:46:58 -0400457
458 /* This is xdr_init_encode(), but it assumes that
459 * the head kvec has already been consumed. */
460 xdr_set_scratch_buffer(xdr, NULL, 0);
461 xdr->buf = buf;
462 xdr->page_ptr = buf->pages;
463 xdr->iov = NULL;
464 xdr->p = page_address(*buf->pages);
465 xdr->end = xdr->p + (PAGE_SIZE >> 2);
466 xdr->rqst = NULL;
Chuck Lever40116eb2020-11-17 09:50:23 -0500467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/*
470 * Read a portion of a directory.
471 */
Al Viro7111c662006-10-19 23:28:45 -0700472static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200473nfsd3_proc_readdir(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200475 struct nfsd3_readdirargs *argp = rqstp->rq_argp;
476 struct nfsd3_readdirres *resp = rqstp->rq_resp;
Chuck Lever0a8f37f2020-11-10 10:24:39 -0500477 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 dprintk("nfsd: READDIR(3) %s %d bytes at %d\n",
480 SVCFH_fmt(&argp->fh),
481 argp->count, (u32) argp->cookie);
482
Chuck Lever40116eb2020-11-17 09:50:23 -0500483 nfsd3_init_dirlist_pages(rqstp, resp, argp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 fh_copy(&resp->fh, &argp->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 resp->common.err = nfs_ok;
Chuck Lever7f87fc22020-10-22 19:46:58 -0400487 resp->cookie_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 resp->rqstp = rqstp;
Chuck Lever0a8f37f2020-11-10 10:24:39 -0500489 offset = argp->cookie;
Chuck Lever0a8f37f2020-11-10 10:24:39 -0500490 resp->status = nfsd_readdir(rqstp, &resp->fh, &offset,
Chuck Lever7f87fc22020-10-22 19:46:58 -0400491 &resp->common, nfs3svc_encode_entry3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 memcpy(resp->verf, argp->verf, 8);
Chuck Levera161e6c2020-11-10 09:57:14 -0500493 nfs3svc_encode_cookie3(resp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Chuck Lever76ed0dd2021-01-15 09:28:44 -0500495 /* Recycle only pages that were part of the reply */
496 rqstp->rq_next_page = resp->xdr.page_ptr + 1;
497
Chuck Levercc028a12020-10-02 15:52:44 -0400498 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
501/*
502 * Read a portion of a directory, including file handles and attrs.
503 * For now, we choose to ignore the dircount parameter.
504 */
Al Viro7111c662006-10-19 23:28:45 -0700505static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200506nfsd3_proc_readdirplus(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200508 struct nfsd3_readdirargs *argp = rqstp->rq_argp;
509 struct nfsd3_readdirres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 loff_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
513 SVCFH_fmt(&argp->fh),
514 argp->count, (u32) argp->cookie);
515
Chuck Lever40116eb2020-11-17 09:50:23 -0500516 nfsd3_init_dirlist_pages(rqstp, resp, argp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 fh_copy(&resp->fh, &argp->fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 resp->common.err = nfs_ok;
Chuck Lever7f87fc22020-10-22 19:46:58 -0400520 resp->cookie_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 resp->rqstp = rqstp;
522 offset = argp->cookie;
Rajesh Ghanekar18c01ab2014-08-01 22:17:30 -0400523
Chuck Lever14168d62020-10-01 18:59:54 -0400524 resp->status = fh_verify(rqstp, &resp->fh, S_IFDIR, NFSD_MAY_NOP);
525 if (resp->status != nfs_ok)
526 goto out;
Rajesh Ghanekar18c01ab2014-08-01 22:17:30 -0400527
Chuck Lever14168d62020-10-01 18:59:54 -0400528 if (resp->fh.fh_export->ex_flags & NFSEXP_NOREADDIRPLUS) {
529 resp->status = nfserr_notsupp;
530 goto out;
531 }
Rajesh Ghanekar18c01ab2014-08-01 22:17:30 -0400532
Chuck Lever14168d62020-10-01 18:59:54 -0400533 resp->status = nfsd_readdir(rqstp, &resp->fh, &offset,
Chuck Lever7f87fc22020-10-22 19:46:58 -0400534 &resp->common, nfs3svc_encode_entryplus3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 memcpy(resp->verf, argp->verf, 8);
Chuck Levera161e6c2020-11-10 09:57:14 -0500536 nfs3svc_encode_cookie3(resp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Chuck Lever76ed0dd2021-01-15 09:28:44 -0500538 /* Recycle only pages that were part of the reply */
539 rqstp->rq_next_page = resp->xdr.page_ptr + 1;
540
Chuck Lever14168d62020-10-01 18:59:54 -0400541out:
Chuck Levercc028a12020-10-02 15:52:44 -0400542 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545/*
546 * Get file system stats
547 */
Al Viro7111c662006-10-19 23:28:45 -0700548static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200549nfsd3_proc_fsstat(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200551 struct nfsd_fhandle *argp = rqstp->rq_argp;
552 struct nfsd3_fsstatres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 dprintk("nfsd: FSSTAT(3) %s\n",
555 SVCFH_fmt(&argp->fh));
556
Chuck Lever14168d62020-10-01 18:59:54 -0400557 resp->status = nfsd_statfs(rqstp, &argp->fh, &resp->stats, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 fh_put(&argp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400559 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562/*
563 * Get file system info
564 */
Al Viro7111c662006-10-19 23:28:45 -0700565static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200566nfsd3_proc_fsinfo(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200568 struct nfsd_fhandle *argp = rqstp->rq_argp;
569 struct nfsd3_fsinfores *resp = rqstp->rq_resp;
Greg Banks7adae482006-10-04 02:15:47 -0700570 u32 max_blocksize = svc_max_payload(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 dprintk("nfsd: FSINFO(3) %s\n",
573 SVCFH_fmt(&argp->fh));
574
Greg Banks7adae482006-10-04 02:15:47 -0700575 resp->f_rtmax = max_blocksize;
576 resp->f_rtpref = max_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 resp->f_rtmult = PAGE_SIZE;
Greg Banks7adae482006-10-04 02:15:47 -0700578 resp->f_wtmax = max_blocksize;
579 resp->f_wtpref = max_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 resp->f_wtmult = PAGE_SIZE;
NeilBrownf875a792019-03-07 09:49:46 +1100581 resp->f_dtpref = max_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 resp->f_maxfilesize = ~(u32) 0;
583 resp->f_properties = NFS3_FSF_DEFAULT;
584
Chuck Lever14168d62020-10-01 18:59:54 -0400585 resp->status = fh_verify(rqstp, &argp->fh, 0,
586 NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 /* Check special features of the file system. May request
589 * different read/write sizes for file systems known to have
590 * problems with large blocks */
Chuck Lever14168d62020-10-01 18:59:54 -0400591 if (resp->status == nfs_ok) {
Al Virofc640052016-04-10 01:33:30 -0400592 struct super_block *sb = argp->fh.fh_dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 /* Note that we don't care for remote fs's here */
Qinghuang Feng12214cb2009-01-12 03:13:53 +0800595 if (sb->s_magic == MSDOS_SUPER_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 resp->f_properties = NFS3_FSF_BILLYBOY;
597 }
598 resp->f_maxfilesize = sb->s_maxbytes;
599 }
600
601 fh_put(&argp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400602 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
605/*
606 * Get pathconf info for the specified file
607 */
Al Viro7111c662006-10-19 23:28:45 -0700608static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200609nfsd3_proc_pathconf(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200611 struct nfsd_fhandle *argp = rqstp->rq_argp;
612 struct nfsd3_pathconfres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 dprintk("nfsd: PATHCONF(3) %s\n",
615 SVCFH_fmt(&argp->fh));
616
617 /* Set default pathconf */
618 resp->p_link_max = 255; /* at least */
619 resp->p_name_max = 255; /* at least */
620 resp->p_no_trunc = 0;
621 resp->p_chown_restricted = 1;
622 resp->p_case_insensitive = 0;
623 resp->p_case_preserving = 1;
624
Chuck Lever14168d62020-10-01 18:59:54 -0400625 resp->status = fh_verify(rqstp, &argp->fh, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Chuck Lever14168d62020-10-01 18:59:54 -0400627 if (resp->status == nfs_ok) {
Al Virofc640052016-04-10 01:33:30 -0400628 struct super_block *sb = argp->fh.fh_dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 /* Note that we don't care for remote fs's here */
631 switch (sb->s_magic) {
632 case EXT2_SUPER_MAGIC:
633 resp->p_link_max = EXT2_LINK_MAX;
634 resp->p_name_max = EXT2_NAME_LEN;
635 break;
Qinghuang Feng12214cb2009-01-12 03:13:53 +0800636 case MSDOS_SUPER_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 resp->p_case_insensitive = 1;
638 resp->p_case_preserving = 0;
639 break;
640 }
641 }
642
643 fh_put(&argp->fh);
Chuck Levercc028a12020-10-02 15:52:44 -0400644 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647/*
648 * Commit a file (range) to stable storage.
649 */
Al Viro7111c662006-10-19 23:28:45 -0700650static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200651nfsd3_proc_commit(struct svc_rqst *rqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200653 struct nfsd3_commitargs *argp = rqstp->rq_argp;
654 struct nfsd3_commitres *resp = rqstp->rq_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 dprintk("nfsd: COMMIT(3) %s %u@%Lu\n",
657 SVCFH_fmt(&argp->fh),
658 argp->count,
659 (unsigned long long) argp->offset);
660
Chuck Lever14168d62020-10-01 18:59:54 -0400661 if (argp->offset > NFS_OFFSET_MAX) {
662 resp->status = nfserr_inval;
663 goto out;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 fh_copy(&resp->fh, &argp->fh);
Chuck Lever14168d62020-10-01 18:59:54 -0400667 resp->status = nfsd_commit(rqstp, &resp->fh, argp->offset,
668 argp->count, resp->verf);
669out:
Chuck Levercc028a12020-10-02 15:52:44 -0400670 return rpc_success;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
673
674/*
675 * NFSv3 Server procedures.
676 * Only the results of non-idempotent operations are cached.
677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678#define nfs3svc_encode_attrstatres nfs3svc_encode_attrstat
679#define nfs3svc_encode_wccstatres nfs3svc_encode_wccstat
680#define nfsd3_mkdirargs nfsd3_createargs
681#define nfsd3_readdirplusargs nfsd3_readdirargs
682#define nfsd3_fhandleargs nfsd_fhandle
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#define nfsd3_attrstatres nfsd3_attrstat
684#define nfsd3_wccstatres nfsd3_attrstat
685#define nfsd3_createres nfsd3_diropres
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687#define ST 1 /* status*/
688#define FH 17 /* filehandle with length */
689#define AT 21 /* attributes */
690#define pAT (1+AT) /* post attributes - conditional */
691#define WC (7+pAT) /* WCC attributes */
692
Christoph Hellwig860bda22017-05-12 16:11:49 +0200693static const struct svc_procedure nfsd_procedures3[22] = {
Yu Zhiguob9081d92009-06-09 17:33:34 +0800694 [NFS3PROC_NULL] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200695 .pc_func = nfsd3_proc_null,
Chuck Lever788f7182020-11-05 14:48:29 -0500696 .pc_decode = nfssvc_decode_voidarg,
697 .pc_encode = nfssvc_encode_voidres,
698 .pc_argsize = sizeof(struct nfsd_voidargs),
699 .pc_ressize = sizeof(struct nfsd_voidres),
Yu Zhiguob9081d92009-06-09 17:33:34 +0800700 .pc_cachetype = RC_NOCACHE,
701 .pc_xdrressize = ST,
Chuck Lever2289e872020-09-17 17:22:49 -0400702 .pc_name = "NULL",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800703 },
704 [NFS3PROC_GETATTR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200705 .pc_func = nfsd3_proc_getattr,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200706 .pc_decode = nfs3svc_decode_fhandleargs,
Chuck Lever2c42f802020-10-21 11:58:41 -0400707 .pc_encode = nfs3svc_encode_getattrres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200708 .pc_release = nfs3svc_release_fhandle,
Chuck Lever95753632020-10-20 14:30:02 -0400709 .pc_argsize = sizeof(struct nfsd_fhandle),
Yu Zhiguob9081d92009-06-09 17:33:34 +0800710 .pc_ressize = sizeof(struct nfsd3_attrstatres),
711 .pc_cachetype = RC_NOCACHE,
712 .pc_xdrressize = ST+AT,
Chuck Lever2289e872020-09-17 17:22:49 -0400713 .pc_name = "GETATTR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800714 },
715 [NFS3PROC_SETATTR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200716 .pc_func = nfsd3_proc_setattr,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200717 .pc_decode = nfs3svc_decode_sattrargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200718 .pc_encode = nfs3svc_encode_wccstatres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200719 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800720 .pc_argsize = sizeof(struct nfsd3_sattrargs),
721 .pc_ressize = sizeof(struct nfsd3_wccstatres),
722 .pc_cachetype = RC_REPLBUFF,
723 .pc_xdrressize = ST+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400724 .pc_name = "SETATTR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800725 },
726 [NFS3PROC_LOOKUP] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200727 .pc_func = nfsd3_proc_lookup,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200728 .pc_decode = nfs3svc_decode_diropargs,
Chuck Lever5cf35332020-10-22 14:46:58 -0400729 .pc_encode = nfs3svc_encode_lookupres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200730 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800731 .pc_argsize = sizeof(struct nfsd3_diropargs),
732 .pc_ressize = sizeof(struct nfsd3_diropres),
733 .pc_cachetype = RC_NOCACHE,
734 .pc_xdrressize = ST+FH+pAT+pAT,
Chuck Lever2289e872020-09-17 17:22:49 -0400735 .pc_name = "LOOKUP",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800736 },
737 [NFS3PROC_ACCESS] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200738 .pc_func = nfsd3_proc_access,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200739 .pc_decode = nfs3svc_decode_accessargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200740 .pc_encode = nfs3svc_encode_accessres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200741 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800742 .pc_argsize = sizeof(struct nfsd3_accessargs),
743 .pc_ressize = sizeof(struct nfsd3_accessres),
744 .pc_cachetype = RC_NOCACHE,
745 .pc_xdrressize = ST+pAT+1,
Chuck Lever2289e872020-09-17 17:22:49 -0400746 .pc_name = "ACCESS",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800747 },
748 [NFS3PROC_READLINK] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200749 .pc_func = nfsd3_proc_readlink,
Chuck Lever224c1c82020-10-24 12:51:18 -0400750 .pc_decode = nfs3svc_decode_fhandleargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200751 .pc_encode = nfs3svc_encode_readlinkres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200752 .pc_release = nfs3svc_release_fhandle,
Chuck Lever224c1c82020-10-24 12:51:18 -0400753 .pc_argsize = sizeof(struct nfsd_fhandle),
Yu Zhiguob9081d92009-06-09 17:33:34 +0800754 .pc_ressize = sizeof(struct nfsd3_readlinkres),
755 .pc_cachetype = RC_NOCACHE,
756 .pc_xdrressize = ST+pAT+1+NFS3_MAXPATHLEN/4,
Chuck Lever2289e872020-09-17 17:22:49 -0400757 .pc_name = "READLINK",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800758 },
759 [NFS3PROC_READ] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200760 .pc_func = nfsd3_proc_read,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200761 .pc_decode = nfs3svc_decode_readargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200762 .pc_encode = nfs3svc_encode_readres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200763 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800764 .pc_argsize = sizeof(struct nfsd3_readargs),
765 .pc_ressize = sizeof(struct nfsd3_readres),
766 .pc_cachetype = RC_NOCACHE,
767 .pc_xdrressize = ST+pAT+4+NFSSVC_MAXBLKSIZE/4,
Chuck Lever2289e872020-09-17 17:22:49 -0400768 .pc_name = "READ",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800769 },
770 [NFS3PROC_WRITE] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200771 .pc_func = nfsd3_proc_write,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200772 .pc_decode = nfs3svc_decode_writeargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200773 .pc_encode = nfs3svc_encode_writeres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200774 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800775 .pc_argsize = sizeof(struct nfsd3_writeargs),
776 .pc_ressize = sizeof(struct nfsd3_writeres),
777 .pc_cachetype = RC_REPLBUFF,
778 .pc_xdrressize = ST+WC+4,
Chuck Lever2289e872020-09-17 17:22:49 -0400779 .pc_name = "WRITE",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800780 },
781 [NFS3PROC_CREATE] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200782 .pc_func = nfsd3_proc_create,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200783 .pc_decode = nfs3svc_decode_createargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200784 .pc_encode = nfs3svc_encode_createres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200785 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800786 .pc_argsize = sizeof(struct nfsd3_createargs),
787 .pc_ressize = sizeof(struct nfsd3_createres),
788 .pc_cachetype = RC_REPLBUFF,
789 .pc_xdrressize = ST+(1+FH+pAT)+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400790 .pc_name = "CREATE",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800791 },
792 [NFS3PROC_MKDIR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200793 .pc_func = nfsd3_proc_mkdir,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200794 .pc_decode = nfs3svc_decode_mkdirargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200795 .pc_encode = nfs3svc_encode_createres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200796 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800797 .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,
Chuck Lever2289e872020-09-17 17:22:49 -0400801 .pc_name = "MKDIR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800802 },
803 [NFS3PROC_SYMLINK] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200804 .pc_func = nfsd3_proc_symlink,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200805 .pc_decode = nfs3svc_decode_symlinkargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200806 .pc_encode = nfs3svc_encode_createres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200807 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800808 .pc_argsize = sizeof(struct nfsd3_symlinkargs),
809 .pc_ressize = sizeof(struct nfsd3_createres),
810 .pc_cachetype = RC_REPLBUFF,
811 .pc_xdrressize = ST+(1+FH+pAT)+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400812 .pc_name = "SYMLINK",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800813 },
814 [NFS3PROC_MKNOD] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200815 .pc_func = nfsd3_proc_mknod,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200816 .pc_decode = nfs3svc_decode_mknodargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200817 .pc_encode = nfs3svc_encode_createres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200818 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800819 .pc_argsize = sizeof(struct nfsd3_mknodargs),
820 .pc_ressize = sizeof(struct nfsd3_createres),
821 .pc_cachetype = RC_REPLBUFF,
822 .pc_xdrressize = ST+(1+FH+pAT)+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400823 .pc_name = "MKNOD",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800824 },
825 [NFS3PROC_REMOVE] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200826 .pc_func = nfsd3_proc_remove,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200827 .pc_decode = nfs3svc_decode_diropargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200828 .pc_encode = nfs3svc_encode_wccstatres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200829 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800830 .pc_argsize = sizeof(struct nfsd3_diropargs),
831 .pc_ressize = sizeof(struct nfsd3_wccstatres),
832 .pc_cachetype = RC_REPLBUFF,
833 .pc_xdrressize = ST+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400834 .pc_name = "REMOVE",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800835 },
836 [NFS3PROC_RMDIR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200837 .pc_func = nfsd3_proc_rmdir,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200838 .pc_decode = nfs3svc_decode_diropargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200839 .pc_encode = nfs3svc_encode_wccstatres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200840 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800841 .pc_argsize = sizeof(struct nfsd3_diropargs),
842 .pc_ressize = sizeof(struct nfsd3_wccstatres),
843 .pc_cachetype = RC_REPLBUFF,
844 .pc_xdrressize = ST+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400845 .pc_name = "RMDIR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800846 },
847 [NFS3PROC_RENAME] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200848 .pc_func = nfsd3_proc_rename,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200849 .pc_decode = nfs3svc_decode_renameargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200850 .pc_encode = nfs3svc_encode_renameres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200851 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800852 .pc_argsize = sizeof(struct nfsd3_renameargs),
853 .pc_ressize = sizeof(struct nfsd3_renameres),
854 .pc_cachetype = RC_REPLBUFF,
855 .pc_xdrressize = ST+WC+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400856 .pc_name = "RENAME",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800857 },
858 [NFS3PROC_LINK] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200859 .pc_func = nfsd3_proc_link,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200860 .pc_decode = nfs3svc_decode_linkargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200861 .pc_encode = nfs3svc_encode_linkres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200862 .pc_release = nfs3svc_release_fhandle2,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800863 .pc_argsize = sizeof(struct nfsd3_linkargs),
864 .pc_ressize = sizeof(struct nfsd3_linkres),
865 .pc_cachetype = RC_REPLBUFF,
866 .pc_xdrressize = ST+pAT+WC,
Chuck Lever2289e872020-09-17 17:22:49 -0400867 .pc_name = "LINK",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800868 },
869 [NFS3PROC_READDIR] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200870 .pc_func = nfsd3_proc_readdir,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200871 .pc_decode = nfs3svc_decode_readdirargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200872 .pc_encode = nfs3svc_encode_readdirres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200873 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800874 .pc_argsize = sizeof(struct nfsd3_readdirargs),
875 .pc_ressize = sizeof(struct nfsd3_readdirres),
876 .pc_cachetype = RC_NOCACHE,
Chuck Lever2289e872020-09-17 17:22:49 -0400877 .pc_name = "READDIR",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800878 },
879 [NFS3PROC_READDIRPLUS] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200880 .pc_func = nfsd3_proc_readdirplus,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200881 .pc_decode = nfs3svc_decode_readdirplusargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200882 .pc_encode = nfs3svc_encode_readdirres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200883 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800884 .pc_argsize = sizeof(struct nfsd3_readdirplusargs),
885 .pc_ressize = sizeof(struct nfsd3_readdirres),
886 .pc_cachetype = RC_NOCACHE,
Chuck Lever2289e872020-09-17 17:22:49 -0400887 .pc_name = "READDIRPLUS",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800888 },
889 [NFS3PROC_FSSTAT] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200890 .pc_func = nfsd3_proc_fsstat,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200891 .pc_decode = nfs3svc_decode_fhandleargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200892 .pc_encode = nfs3svc_encode_fsstatres,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800893 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
894 .pc_ressize = sizeof(struct nfsd3_fsstatres),
895 .pc_cachetype = RC_NOCACHE,
896 .pc_xdrressize = ST+pAT+2*6+1,
Chuck Lever2289e872020-09-17 17:22:49 -0400897 .pc_name = "FSSTAT",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800898 },
899 [NFS3PROC_FSINFO] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200900 .pc_func = nfsd3_proc_fsinfo,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200901 .pc_decode = nfs3svc_decode_fhandleargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200902 .pc_encode = nfs3svc_encode_fsinfores,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800903 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
904 .pc_ressize = sizeof(struct nfsd3_fsinfores),
905 .pc_cachetype = RC_NOCACHE,
906 .pc_xdrressize = ST+pAT+12,
Chuck Lever2289e872020-09-17 17:22:49 -0400907 .pc_name = "FSINFO",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800908 },
909 [NFS3PROC_PATHCONF] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200910 .pc_func = nfsd3_proc_pathconf,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200911 .pc_decode = nfs3svc_decode_fhandleargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200912 .pc_encode = nfs3svc_encode_pathconfres,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800913 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
914 .pc_ressize = sizeof(struct nfsd3_pathconfres),
915 .pc_cachetype = RC_NOCACHE,
916 .pc_xdrressize = ST+pAT+6,
Chuck Lever2289e872020-09-17 17:22:49 -0400917 .pc_name = "PATHCONF",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800918 },
919 [NFS3PROC_COMMIT] = {
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200920 .pc_func = nfsd3_proc_commit,
Christoph Hellwig026fec72017-05-08 19:01:48 +0200921 .pc_decode = nfs3svc_decode_commitargs,
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200922 .pc_encode = nfs3svc_encode_commitres,
Christoph Hellwig85374882017-05-08 18:48:24 +0200923 .pc_release = nfs3svc_release_fhandle,
Yu Zhiguob9081d92009-06-09 17:33:34 +0800924 .pc_argsize = sizeof(struct nfsd3_commitargs),
925 .pc_ressize = sizeof(struct nfsd3_commitres),
926 .pc_cachetype = RC_NOCACHE,
927 .pc_xdrressize = ST+WC+2,
Chuck Lever2289e872020-09-17 17:22:49 -0400928 .pc_name = "COMMIT",
Yu Zhiguob9081d92009-06-09 17:33:34 +0800929 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930};
931
Christoph Hellwig7fd38af2017-05-08 23:40:27 +0200932static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures3)];
Christoph Hellwige9679182017-05-12 16:21:37 +0200933const struct svc_version nfsd_version3 = {
934 .vs_vers = 3,
935 .vs_nproc = 22,
936 .vs_proc = nfsd_procedures3,
937 .vs_dispatch = nfsd_dispatch,
938 .vs_count = nfsd_count3,
939 .vs_xdrsize = NFS3_SVC_XDRSIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940};