blob: 5552fa8b6e1289afe35a9b62595f1fe533cc1ecb [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/*
3 * linux/fs/nfs/proc.c
4 *
5 * Copyright (C) 1992, 1993, 1994 Rick Sladkey
6 *
7 * OS-independent nfs remote procedure call functions
8 *
9 * Tuned by Alan Cox <A.Cox@swansea.ac.uk> for >3K buffers
10 * so at last we can have decent(ish) throughput off a
11 * Sun server.
12 *
13 * Coding optimized and cleaned up by Florian La Roche.
14 * Note: Error returns are optimized for NFS_OK, which isn't translated via
15 * nfs_stat_to_errno(), but happens to be already the right return code.
16 *
17 * Also, the code currently doesn't check the size of the packet, when
18 * it decodes the packet.
19 *
20 * Feel free to fix it and mail me the diffs if it worries you.
21 *
22 * Completely rewritten to support the new RPC call interface;
23 * rewrote and moved the entire XDR stuff to xdr.c
24 * --Olaf Kirch June 1996
25 *
26 * The code below initializes all auto variables explicitly, otherwise
27 * it will fail to work as a module (gcc generates a memset call for an
28 * incomplete struct).
29 */
30
31#include <linux/types.h>
32#include <linux/param.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/time.h>
34#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/errno.h>
36#include <linux/string.h>
37#include <linux/in.h>
38#include <linux/pagemap.h>
39#include <linux/sunrpc/clnt.h>
40#include <linux/nfs.h>
41#include <linux/nfs2.h>
42#include <linux/nfs_fs.h>
43#include <linux/nfs_page.h>
44#include <linux/lockd/bind.h>
Jeff Laytond3103102011-12-01 22:44:39 +010045#include <linux/freezer.h>
David Howellsf7b422b2006-06-09 09:34:33 -040046#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define NFSDBG_FACILITY NFSDBG_PROC
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * Bare-bones access to getattr: this is for nfs_read_super.
52 */
53static int
54nfs_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
55 struct nfs_fsinfo *info)
56{
57 struct nfs_fattr *fattr = info->fattr;
58 struct nfs2_fsstat fsinfo;
Chuck Leverdead28d2006-03-20 13:44:23 -050059 struct rpc_message msg = {
60 .rpc_proc = &nfs_procedures[NFSPROC_GETATTR],
61 .rpc_argp = fhandle,
62 .rpc_resp = fattr,
63 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 int status;
65
Harvey Harrison3110ff82008-05-02 13:42:44 -070066 dprintk("%s: call getattr\n", __func__);
Trond Myklebust0e574af2005-10-27 22:12:38 -040067 nfs_fattr_init(fattr);
EG Keizer37ca8f52008-08-19 16:34:36 -040068 status = rpc_call_sync(server->client, &msg, 0);
69 /* Retry with default authentication if different */
70 if (status && server->nfs_client->cl_rpcclient != server->client)
71 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -070072 dprintk("%s: reply getattr: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (status)
74 return status;
Harvey Harrison3110ff82008-05-02 13:42:44 -070075 dprintk("%s: call statfs\n", __func__);
Chuck Leverdead28d2006-03-20 13:44:23 -050076 msg.rpc_proc = &nfs_procedures[NFSPROC_STATFS];
77 msg.rpc_resp = &fsinfo;
EG Keizer37ca8f52008-08-19 16:34:36 -040078 status = rpc_call_sync(server->client, &msg, 0);
79 /* Retry with default authentication if different */
80 if (status && server->nfs_client->cl_rpcclient != server->client)
81 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -070082 dprintk("%s: reply statfs: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 if (status)
84 return status;
85 info->rtmax = NFS_MAXDATA;
86 info->rtpref = fsinfo.tsize;
87 info->rtmult = fsinfo.bsize;
88 info->wtmax = NFS_MAXDATA;
89 info->wtpref = fsinfo.tsize;
90 info->wtmult = fsinfo.bsize;
91 info->dtpref = fsinfo.tsize;
92 info->maxfilesize = 0x7FFFFFFF;
93 info->lease_time = 0;
94 return 0;
95}
96
97/*
98 * One function for each procedure in the NFS protocol.
99 */
100static int
101nfs_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
Trond Myklebusta841b542018-04-07 13:50:59 -0400102 struct nfs_fattr *fattr, struct nfs4_label *label,
103 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
Chuck Leverdead28d2006-03-20 13:44:23 -0500105 struct rpc_message msg = {
106 .rpc_proc = &nfs_procedures[NFSPROC_GETATTR],
107 .rpc_argp = fhandle,
108 .rpc_resp = fattr,
109 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 int status;
111
112 dprintk("NFS call getattr\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400113 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500114 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 dprintk("NFS reply getattr: %d\n", status);
116 return status;
117}
118
119static int
120nfs_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
121 struct iattr *sattr)
122{
David Howells2b0143b2015-03-17 22:25:59 +0000123 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 struct nfs_sattrargs arg = {
125 .fh = NFS_FH(inode),
126 .sattr = sattr
127 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500128 struct rpc_message msg = {
129 .rpc_proc = &nfs_procedures[NFSPROC_SETATTR],
130 .rpc_argp = &arg,
131 .rpc_resp = fattr,
132 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int status;
134
Trond Myklebustcf3fff52006-01-03 09:55:53 +0100135 /* Mask out the non-modebit related stuff from attr->ia_mode */
136 sattr->ia_mode &= S_IALLUGO;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 dprintk("NFS call setattr\n");
Trond Myklebust659bfcd2008-06-10 19:39:41 -0400139 if (sattr->ia_valid & ATTR_FILE)
140 msg.rpc_cred = nfs_file_cred(sattr->ia_file);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400141 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500142 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebust65e43082005-08-16 11:49:44 -0400143 if (status == 0)
Trond Myklebustf0446362015-02-26 16:09:04 -0500144 nfs_setattr_update_inode(inode, sattr, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 dprintk("NFS reply setattr: %d\n", status);
146 return status;
147}
148
149static int
Al Virobeffb8f2016-07-20 16:34:42 -0400150nfs_proc_lookup(struct inode *dir, const struct qstr *name,
David Quigley1775fd32013-05-22 12:50:42 -0400151 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
152 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct nfs_diropargs arg = {
155 .fh = NFS_FH(dir),
156 .name = name->name,
157 .len = name->len
158 };
159 struct nfs_diropok res = {
160 .fh = fhandle,
161 .fattr = fattr
162 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500163 struct rpc_message msg = {
164 .rpc_proc = &nfs_procedures[NFSPROC_LOOKUP],
165 .rpc_argp = &arg,
166 .rpc_resp = &res,
167 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 int status;
169
170 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400171 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500172 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 dprintk("NFS reply lookup: %d\n", status);
174 return status;
175}
176
177static int nfs_proc_readlink(struct inode *inode, struct page *page,
178 unsigned int pgbase, unsigned int pglen)
179{
180 struct nfs_readlinkargs args = {
181 .fh = NFS_FH(inode),
182 .pgbase = pgbase,
183 .pglen = pglen,
184 .pages = &page
185 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500186 struct rpc_message msg = {
187 .rpc_proc = &nfs_procedures[NFSPROC_READLINK],
188 .rpc_argp = &args,
189 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int status;
191
192 dprintk("NFS call readlink\n");
Chuck Leverdead28d2006-03-20 13:44:23 -0500193 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 dprintk("NFS reply readlink: %d\n", status);
195 return status;
196}
197
Trond Myklebusteb872f02010-04-16 16:22:51 -0400198struct nfs_createdata {
199 struct nfs_createargs arg;
200 struct nfs_diropok res;
201 struct nfs_fh fhandle;
202 struct nfs_fattr fattr;
203};
204
205static struct nfs_createdata *nfs_alloc_createdata(struct inode *dir,
206 struct dentry *dentry, struct iattr *sattr)
207{
208 struct nfs_createdata *data;
209
210 data = kmalloc(sizeof(*data), GFP_KERNEL);
211
212 if (data != NULL) {
213 data->arg.fh = NFS_FH(dir);
214 data->arg.name = dentry->d_name.name;
215 data->arg.len = dentry->d_name.len;
216 data->arg.sattr = sattr;
217 nfs_fattr_init(&data->fattr);
218 data->fhandle.size = 0;
219 data->res.fh = &data->fhandle;
220 data->res.fattr = &data->fattr;
221 }
222 return data;
223};
224
225static void nfs_free_createdata(const struct nfs_createdata *data)
226{
227 kfree(data);
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230static int
231nfs_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Miklos Szeredi8867fe52012-06-05 15:10:19 +0200232 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Trond Myklebusteb872f02010-04-16 16:22:51 -0400234 struct nfs_createdata *data;
Chuck Leverdead28d2006-03-20 13:44:23 -0500235 struct rpc_message msg = {
236 .rpc_proc = &nfs_procedures[NFSPROC_CREATE],
Chuck Leverdead28d2006-03-20 13:44:23 -0500237 };
Trond Myklebusteb872f02010-04-16 16:22:51 -0400238 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Al Viro6de14722013-09-16 10:53:17 -0400240 dprintk("NFS call create %pd\n", dentry);
Trond Myklebusteb872f02010-04-16 16:22:51 -0400241 data = nfs_alloc_createdata(dir, dentry, sattr);
242 if (data == NULL)
243 goto out;
244 msg.rpc_argp = &data->arg;
245 msg.rpc_resp = &data->res;
Chuck Leverdead28d2006-03-20 13:44:23 -0500246 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustbad2a522007-10-20 13:07:21 -0400247 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (status == 0)
David Quigley1775fd32013-05-22 12:50:42 -0400249 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, NULL);
Trond Myklebusteb872f02010-04-16 16:22:51 -0400250 nfs_free_createdata(data);
251out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 dprintk("NFS reply create: %d\n", status);
253 return status;
254}
255
256/*
257 * In NFSv2, mknod is grafted onto the create call.
258 */
259static int
260nfs_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
261 dev_t rdev)
262{
Trond Myklebusteb872f02010-04-16 16:22:51 -0400263 struct nfs_createdata *data;
Chuck Leverdead28d2006-03-20 13:44:23 -0500264 struct rpc_message msg = {
265 .rpc_proc = &nfs_procedures[NFSPROC_CREATE],
Chuck Leverdead28d2006-03-20 13:44:23 -0500266 };
Trond Myklebusteb872f02010-04-16 16:22:51 -0400267 umode_t mode;
268 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Al Viro6de14722013-09-16 10:53:17 -0400270 dprintk("NFS call mknod %pd\n", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 mode = sattr->ia_mode;
273 if (S_ISFIFO(mode)) {
274 sattr->ia_mode = (mode & ~S_IFMT) | S_IFCHR;
275 sattr->ia_valid &= ~ATTR_SIZE;
276 } else if (S_ISCHR(mode) || S_ISBLK(mode)) {
277 sattr->ia_valid |= ATTR_SIZE;
278 sattr->ia_size = new_encode_dev(rdev);/* get out your barf bag */
279 }
280
Trond Myklebusteb872f02010-04-16 16:22:51 -0400281 data = nfs_alloc_createdata(dir, dentry, sattr);
282 if (data == NULL)
283 goto out;
284 msg.rpc_argp = &data->arg;
285 msg.rpc_resp = &data->res;
286
Chuck Leverdead28d2006-03-20 13:44:23 -0500287 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400288 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 if (status == -EINVAL && S_ISFIFO(mode)) {
291 sattr->ia_mode = mode;
Trond Myklebusteb872f02010-04-16 16:22:51 -0400292 nfs_fattr_init(data->res.fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500293 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 if (status == 0)
David Quigley1775fd32013-05-22 12:50:42 -0400296 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, NULL);
Trond Myklebusteb872f02010-04-16 16:22:51 -0400297 nfs_free_createdata(data);
298out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 dprintk("NFS reply mknod: %d\n", status);
300 return status;
301}
302
303static int
Trond Myklebust912678d2018-03-20 16:43:15 -0400304nfs_proc_remove(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400306 struct nfs_removeargs arg = {
307 .fh = NFS_FH(dir),
Trond Myklebust912678d2018-03-20 16:43:15 -0400308 .name = dentry->d_name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400310 struct rpc_message msg = {
311 .rpc_proc = &nfs_procedures[NFSPROC_REMOVE],
312 .rpc_argp = &arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 };
314 int status;
315
Trond Myklebust912678d2018-03-20 16:43:15 -0400316 dprintk("NFS call remove %pd2\n",dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400318 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 dprintk("NFS reply remove: %d\n", status);
321 return status;
322}
323
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400324static void
Trond Myklebusted7e9ad2018-05-30 16:11:52 -0400325nfs_proc_unlink_setup(struct rpc_message *msg,
326 struct dentry *dentry,
327 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 msg->rpc_proc = &nfs_procedures[NFSPROC_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
Bryan Schumaker34e137c2012-03-19 14:54:41 -0400332static void nfs_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
333{
334 rpc_call_start(task);
335}
336
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400337static int nfs_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400339 nfs_mark_for_revalidate(dir);
340 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Jeff Laytond3d41522010-09-17 17:31:57 -0400343static void
Trond Myklebustf2c2c552018-03-20 16:43:16 -0400344nfs_proc_rename_setup(struct rpc_message *msg,
345 struct dentry *old_dentry,
346 struct dentry *new_dentry)
Jeff Laytond3d41522010-09-17 17:31:57 -0400347{
348 msg->rpc_proc = &nfs_procedures[NFSPROC_RENAME];
349}
350
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -0400351static void nfs_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
352{
353 rpc_call_start(task);
354}
355
Jeff Laytond3d41522010-09-17 17:31:57 -0400356static int
357nfs_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
358 struct inode *new_dir)
359{
Jeff Laytond3d41522010-09-17 17:31:57 -0400360 nfs_mark_for_revalidate(old_dir);
361 nfs_mark_for_revalidate(new_dir);
362 return 1;
363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365static int
Al Virobeffb8f2016-07-20 16:34:42 -0400366nfs_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 struct nfs_linkargs arg = {
369 .fromfh = NFS_FH(inode),
370 .tofh = NFS_FH(dir),
371 .toname = name->name,
372 .tolen = name->len
373 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500374 struct rpc_message msg = {
375 .rpc_proc = &nfs_procedures[NFSPROC_LINK],
376 .rpc_argp = &arg,
377 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int status;
379
380 dprintk("NFS call link %s\n", name->name);
Chuck Leverdead28d2006-03-20 13:44:23 -0500381 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -0500382 nfs_mark_for_revalidate(inode);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400383 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 dprintk("NFS reply link: %d\n", status);
385 return status;
386}
387
388static int
Chuck Lever94a6d752006-08-22 20:06:23 -0400389nfs_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
390 unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Trond Myklebust23a30612010-04-16 16:22:51 -0400392 struct nfs_fh *fh;
393 struct nfs_fattr *fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 struct nfs_symlinkargs arg = {
395 .fromfh = NFS_FH(dir),
Chuck Lever4f390c12006-08-22 20:06:22 -0400396 .fromname = dentry->d_name.name,
397 .fromlen = dentry->d_name.len,
Chuck Lever94a6d752006-08-22 20:06:23 -0400398 .pages = &page,
399 .pathlen = len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 .sattr = sattr
401 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500402 struct rpc_message msg = {
403 .rpc_proc = &nfs_procedures[NFSPROC_SYMLINK],
404 .rpc_argp = &arg,
405 };
Trond Myklebust23a30612010-04-16 16:22:51 -0400406 int status = -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -0400407
Al Viro6de14722013-09-16 10:53:17 -0400408 dprintk("NFS call symlink %pd\n", dentry);
Chuck Lever94a6d752006-08-22 20:06:23 -0400409
Trond Myklebust23a30612010-04-16 16:22:51 -0400410 if (len > NFS2_MAXPATHLEN)
411 goto out;
412
413 fh = nfs_alloc_fhandle();
414 fattr = nfs_alloc_fattr();
415 status = -ENOMEM;
416 if (fh == NULL || fattr == NULL)
Jesper Juhl878215f2010-12-24 22:22:37 +0000417 goto out_free;
Trond Myklebust23a30612010-04-16 16:22:51 -0400418
Chuck Leverdead28d2006-03-20 13:44:23 -0500419 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400420 nfs_mark_for_revalidate(dir);
Chuck Lever4f390c12006-08-22 20:06:22 -0400421
422 /*
423 * V2 SYMLINK requests don't return any attributes. Setting the
424 * filehandle size to zero indicates to nfs_instantiate that it
425 * should fill in the data with a LOOKUP call on the wire.
426 */
Trond Myklebust23a30612010-04-16 16:22:51 -0400427 if (status == 0)
David Quigley1775fd32013-05-22 12:50:42 -0400428 status = nfs_instantiate(dentry, fh, fattr, NULL);
Chuck Lever4f390c12006-08-22 20:06:22 -0400429
Jesper Juhl878215f2010-12-24 22:22:37 +0000430out_free:
Trond Myklebust23a30612010-04-16 16:22:51 -0400431 nfs_free_fattr(fattr);
432 nfs_free_fhandle(fh);
433out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 dprintk("NFS reply symlink: %d\n", status);
435 return status;
436}
437
438static int
439nfs_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
440{
Trond Myklebusteb872f02010-04-16 16:22:51 -0400441 struct nfs_createdata *data;
Chuck Leverdead28d2006-03-20 13:44:23 -0500442 struct rpc_message msg = {
443 .rpc_proc = &nfs_procedures[NFSPROC_MKDIR],
Chuck Leverdead28d2006-03-20 13:44:23 -0500444 };
Trond Myklebusteb872f02010-04-16 16:22:51 -0400445 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Al Viro6de14722013-09-16 10:53:17 -0400447 dprintk("NFS call mkdir %pd\n", dentry);
Trond Myklebusteb872f02010-04-16 16:22:51 -0400448 data = nfs_alloc_createdata(dir, dentry, sattr);
449 if (data == NULL)
450 goto out;
451 msg.rpc_argp = &data->arg;
452 msg.rpc_resp = &data->res;
453
Chuck Leverdead28d2006-03-20 13:44:23 -0500454 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400455 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (status == 0)
David Quigley1775fd32013-05-22 12:50:42 -0400457 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, NULL);
Trond Myklebusteb872f02010-04-16 16:22:51 -0400458 nfs_free_createdata(data);
459out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 dprintk("NFS reply mkdir: %d\n", status);
461 return status;
462}
463
464static int
Al Virobeffb8f2016-07-20 16:34:42 -0400465nfs_proc_rmdir(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct nfs_diropargs arg = {
468 .fh = NFS_FH(dir),
469 .name = name->name,
470 .len = name->len
471 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500472 struct rpc_message msg = {
473 .rpc_proc = &nfs_procedures[NFSPROC_RMDIR],
474 .rpc_argp = &arg,
475 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 int status;
477
478 dprintk("NFS call rmdir %s\n", name->name);
Chuck Leverdead28d2006-03-20 13:44:23 -0500479 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400480 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 dprintk("NFS reply rmdir: %d\n", status);
482 return status;
483}
484
485/*
486 * The READDIR implementation is somewhat hackish - we pass a temporary
487 * buffer to the encode function, which installs it in the receive
488 * the receive iovec. The decode function just parses the reply to make
489 * sure it is syntactically correct; the entries itself are decoded
490 * from nfs_readdir by calling the decode_entry function directly.
491 */
492static int
NeilBrown684f39b2018-12-03 11:30:30 +1100493nfs_proc_readdir(struct dentry *dentry, const struct cred *cred,
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400494 u64 cookie, struct page **pages, unsigned int count, bool plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
David Howells2b0143b2015-03-17 22:25:59 +0000496 struct inode *dir = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct nfs_readdirargs arg = {
498 .fh = NFS_FH(dir),
499 .cookie = cookie,
500 .count = count,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400501 .pages = pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 };
503 struct rpc_message msg = {
504 .rpc_proc = &nfs_procedures[NFSPROC_READDIR],
505 .rpc_argp = &arg,
NeilBrowna52458b2018-12-03 11:30:31 +1100506 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 };
508 int status;
509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 dprintk("NFS call readdir %d\n", (unsigned int)cookie);
511 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
512
Trond Myklebustc4812992007-09-28 17:11:45 -0400513 nfs_invalidate_atime(dir);
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 dprintk("NFS reply readdir: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return status;
517}
518
519static int
520nfs_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
521 struct nfs_fsstat *stat)
522{
523 struct nfs2_fsstat fsinfo;
Chuck Leverdead28d2006-03-20 13:44:23 -0500524 struct rpc_message msg = {
525 .rpc_proc = &nfs_procedures[NFSPROC_STATFS],
526 .rpc_argp = fhandle,
527 .rpc_resp = &fsinfo,
528 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 int status;
530
531 dprintk("NFS call statfs\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400532 nfs_fattr_init(stat->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500533 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 dprintk("NFS reply statfs: %d\n", status);
535 if (status)
536 goto out;
537 stat->tbytes = (u64)fsinfo.blocks * fsinfo.bsize;
538 stat->fbytes = (u64)fsinfo.bfree * fsinfo.bsize;
539 stat->abytes = (u64)fsinfo.bavail * fsinfo.bsize;
540 stat->tfiles = 0;
541 stat->ffiles = 0;
542 stat->afiles = 0;
543out:
544 return status;
545}
546
547static int
548nfs_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
549 struct nfs_fsinfo *info)
550{
551 struct nfs2_fsstat fsinfo;
Chuck Leverdead28d2006-03-20 13:44:23 -0500552 struct rpc_message msg = {
553 .rpc_proc = &nfs_procedures[NFSPROC_STATFS],
554 .rpc_argp = fhandle,
555 .rpc_resp = &fsinfo,
556 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 int status;
558
559 dprintk("NFS call fsinfo\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400560 nfs_fattr_init(info->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500561 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 dprintk("NFS reply fsinfo: %d\n", status);
563 if (status)
564 goto out;
565 info->rtmax = NFS_MAXDATA;
566 info->rtpref = fsinfo.tsize;
567 info->rtmult = fsinfo.bsize;
568 info->wtmax = NFS_MAXDATA;
569 info->wtpref = fsinfo.tsize;
570 info->wtmult = fsinfo.bsize;
571 info->dtpref = fsinfo.tsize;
572 info->maxfilesize = 0x7FFFFFFF;
573 info->lease_time = 0;
574out:
575 return status;
576}
577
578static int
579nfs_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
580 struct nfs_pathconf *info)
581{
582 info->max_link = 0;
583 info->max_namelen = NFS2_MAXNAMLEN;
584 return 0;
585}
586
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400587static int nfs_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400589 struct inode *inode = hdr->inode;
Fred Isamancd841602012-04-20 14:47:44 -0400590
Fred Isamancd841602012-04-20 14:47:44 -0400591 nfs_invalidate_atime(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (task->tk_status >= 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400593 nfs_refresh_inode(inode, hdr->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /* Emulate the eof flag, which isn't normally needed in NFSv2
595 * as it is guaranteed to always return the file attributes
596 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400597 if (hdr->args.offset + hdr->res.count >= hdr->res.fattr->size)
598 hdr->res.eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
Trond Myklebustec06c092006-03-20 13:44:27 -0500600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400603static void nfs_proc_read_setup(struct nfs_pgio_header *hdr,
604 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400606 msg->rpc_proc = &nfs_procedures[NFSPROC_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400609static int nfs_proc_pgio_rpc_prepare(struct rpc_task *task,
610 struct nfs_pgio_header *hdr)
Bryan Schumakerea7c3302012-03-19 14:54:40 -0400611{
612 rpc_call_start(task);
NeilBrownef1820f2013-09-04 17:04:49 +1000613 return 0;
Bryan Schumakerea7c3302012-03-19 14:54:40 -0400614}
615
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400616static int nfs_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (task->tk_status >= 0)
Trond Myklebusta08a8cd2015-02-26 17:36:09 -0500619 nfs_writeback_update_inode(hdr);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400623static void nfs_proc_write_setup(struct nfs_pgio_header *hdr,
Anna Schumakerfb91fb02018-05-04 16:22:48 -0400624 struct rpc_message *msg,
625 struct rpc_clnt **clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /* Note: NFSv2 ignores @stable and always uses NFS_FILE_SYNC */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400628 hdr->args.stable = NFS_FILE_SYNC;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400629 msg->rpc_proc = &nfs_procedures[NFSPROC_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Fred Isaman0b7c0152012-04-20 14:47:39 -0400632static void nfs_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
633{
634 BUG();
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637static void
Anna Schumakere9ae1ee2018-05-04 16:22:49 -0400638nfs_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg,
639 struct rpc_clnt **clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 BUG();
642}
643
644static int
645nfs_proc_lock(struct file *filp, int cmd, struct file_lock *fl)
646{
Al Viro496ad9a2013-01-23 17:07:38 -0500647 struct inode *inode = file_inode(filp);
Chuck Lever1093a602008-01-11 17:09:59 -0500648
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -0400649 return nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Trond Myklebust21162712008-05-20 19:34:39 -0400652/* Helper functions for NFS lock bounds checking */
653#define NFS_LOCK32_OFFSET_MAX ((__s32)0x7fffffffUL)
654static int nfs_lock_check_bounds(const struct file_lock *fl)
655{
656 __s32 start, end;
657
658 start = (__s32)fl->fl_start;
659 if ((loff_t)start != fl->fl_start)
660 goto out_einval;
661
662 if (fl->fl_end != OFFSET_MAX) {
663 end = (__s32)fl->fl_end;
664 if ((loff_t)end != fl->fl_end)
665 goto out_einval;
666 } else
667 end = NFS_LOCK32_OFFSET_MAX;
668
669 if (start < 0 || start > end)
670 goto out_einval;
671 return 0;
672out_einval:
673 return -EINVAL;
674}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Bryan Schumaker011e2a72012-06-20 15:53:43 -0400676static int nfs_have_delegation(struct inode *inode, fmode_t flags)
677{
678 return 0;
679}
680
Bryan Schumaker597d9282012-07-16 16:39:10 -0400681static const struct inode_operations nfs_dir_inode_operations = {
682 .create = nfs_create,
683 .lookup = nfs_lookup,
684 .link = nfs_link,
685 .unlink = nfs_unlink,
686 .symlink = nfs_symlink,
687 .mkdir = nfs_mkdir,
688 .rmdir = nfs_rmdir,
689 .mknod = nfs_mknod,
690 .rename = nfs_rename,
691 .permission = nfs_permission,
692 .getattr = nfs_getattr,
693 .setattr = nfs_setattr,
694};
695
696static const struct inode_operations nfs_file_inode_operations = {
697 .permission = nfs_permission,
698 .getattr = nfs_getattr,
699 .setattr = nfs_setattr,
700};
701
David Howells509de812006-08-22 20:06:11 -0400702const struct nfs_rpc_ops nfs_v2_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 .version = 2, /* protocol version */
704 .dentry_ops = &nfs_dentry_operations,
705 .dir_inode_ops = &nfs_dir_inode_operations,
J. Bruce Fields92cfc622005-06-22 17:16:22 +0000706 .file_inode_ops = &nfs_file_inode_operations,
Jeff Layton1788ea62011-11-04 13:31:21 -0400707 .file_ops = &nfs_file_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 .getroot = nfs_proc_get_root,
Bryan Schumaker281cad42012-04-27 13:27:45 -0400709 .submount = nfs_submount,
Bryan Schumakerff9099f22012-07-30 16:05:18 -0400710 .try_mount = nfs_try_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 .getattr = nfs_proc_getattr,
712 .setattr = nfs_proc_setattr,
713 .lookup = nfs_proc_lookup,
714 .access = NULL, /* access */
715 .readlink = nfs_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 .create = nfs_proc_create,
717 .remove = nfs_proc_remove,
718 .unlink_setup = nfs_proc_unlink_setup,
Bryan Schumaker34e137c2012-03-19 14:54:41 -0400719 .unlink_rpc_prepare = nfs_proc_unlink_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 .unlink_done = nfs_proc_unlink_done,
Jeff Laytond3d41522010-09-17 17:31:57 -0400721 .rename_setup = nfs_proc_rename_setup,
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -0400722 .rename_rpc_prepare = nfs_proc_rename_rpc_prepare,
Jeff Laytond3d41522010-09-17 17:31:57 -0400723 .rename_done = nfs_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 .link = nfs_proc_link,
725 .symlink = nfs_proc_symlink,
726 .mkdir = nfs_proc_mkdir,
727 .rmdir = nfs_proc_rmdir,
728 .readdir = nfs_proc_readdir,
729 .mknod = nfs_proc_mknod,
730 .statfs = nfs_proc_statfs,
731 .fsinfo = nfs_proc_fsinfo,
732 .pathconf = nfs_proc_pathconf,
Chuck Leverf796f8b2010-12-14 14:55:10 +0000733 .decode_dirent = nfs2_decode_dirent,
Anna Schumakera4cdda52014-05-06 09:12:31 -0400734 .pgio_rpc_prepare = nfs_proc_pgio_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 .read_setup = nfs_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -0500736 .read_done = nfs_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 .write_setup = nfs_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500738 .write_done = nfs_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 .commit_setup = nfs_proc_commit_setup,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400740 .commit_rpc_prepare = nfs_proc_commit_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 .lock = nfs_proc_lock,
Trond Myklebust21162712008-05-20 19:34:39 -0400742 .lock_check_bounds = nfs_lock_check_bounds,
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400743 .close_context = nfs_close_context,
Bryan Schumaker011e2a72012-06-20 15:53:43 -0400744 .have_delegation = nfs_have_delegation,
Bryan Schumaker6663ee72012-06-20 15:53:46 -0400745 .alloc_client = nfs_alloc_client,
Andy Adamson45a52a02011-03-01 01:34:08 +0000746 .init_client = nfs_init_client,
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400747 .free_client = nfs_free_client,
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400748 .create_server = nfs_create_server,
749 .clone_server = nfs_clone_server,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750};