blob: 1ba717bd20c4ce9db93b390057a522303f28a508 [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 };
NeilBrown684f39b2018-12-03 11:30:30 +1100503 struct auth_cred acred = {
504 .cred = cred,
505 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct rpc_message msg = {
507 .rpc_proc = &nfs_procedures[NFSPROC_READDIR],
508 .rpc_argp = &arg,
NeilBrown684f39b2018-12-03 11:30:30 +1100509 .rpc_cred = rpc_lookup_generic_cred(&acred,
510 0, GFP_NOFS),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 };
512 int status;
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 dprintk("NFS call readdir %d\n", (unsigned int)cookie);
NeilBrown684f39b2018-12-03 11:30:30 +1100515 if (!msg.rpc_cred)
516 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
518
Trond Myklebustc4812992007-09-28 17:11:45 -0400519 nfs_invalidate_atime(dir);
520
NeilBrown684f39b2018-12-03 11:30:30 +1100521 put_rpccred(msg.rpc_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 dprintk("NFS reply readdir: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return status;
524}
525
526static int
527nfs_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
528 struct nfs_fsstat *stat)
529{
530 struct nfs2_fsstat fsinfo;
Chuck Leverdead28d2006-03-20 13:44:23 -0500531 struct rpc_message msg = {
532 .rpc_proc = &nfs_procedures[NFSPROC_STATFS],
533 .rpc_argp = fhandle,
534 .rpc_resp = &fsinfo,
535 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int status;
537
538 dprintk("NFS call statfs\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400539 nfs_fattr_init(stat->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500540 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 dprintk("NFS reply statfs: %d\n", status);
542 if (status)
543 goto out;
544 stat->tbytes = (u64)fsinfo.blocks * fsinfo.bsize;
545 stat->fbytes = (u64)fsinfo.bfree * fsinfo.bsize;
546 stat->abytes = (u64)fsinfo.bavail * fsinfo.bsize;
547 stat->tfiles = 0;
548 stat->ffiles = 0;
549 stat->afiles = 0;
550out:
551 return status;
552}
553
554static int
555nfs_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
556 struct nfs_fsinfo *info)
557{
558 struct nfs2_fsstat fsinfo;
Chuck Leverdead28d2006-03-20 13:44:23 -0500559 struct rpc_message msg = {
560 .rpc_proc = &nfs_procedures[NFSPROC_STATFS],
561 .rpc_argp = fhandle,
562 .rpc_resp = &fsinfo,
563 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 int status;
565
566 dprintk("NFS call fsinfo\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400567 nfs_fattr_init(info->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500568 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 dprintk("NFS reply fsinfo: %d\n", status);
570 if (status)
571 goto out;
572 info->rtmax = NFS_MAXDATA;
573 info->rtpref = fsinfo.tsize;
574 info->rtmult = fsinfo.bsize;
575 info->wtmax = NFS_MAXDATA;
576 info->wtpref = fsinfo.tsize;
577 info->wtmult = fsinfo.bsize;
578 info->dtpref = fsinfo.tsize;
579 info->maxfilesize = 0x7FFFFFFF;
580 info->lease_time = 0;
581out:
582 return status;
583}
584
585static int
586nfs_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
587 struct nfs_pathconf *info)
588{
589 info->max_link = 0;
590 info->max_namelen = NFS2_MAXNAMLEN;
591 return 0;
592}
593
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400594static int nfs_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400596 struct inode *inode = hdr->inode;
Fred Isamancd841602012-04-20 14:47:44 -0400597
Fred Isamancd841602012-04-20 14:47:44 -0400598 nfs_invalidate_atime(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (task->tk_status >= 0) {
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400600 nfs_refresh_inode(inode, hdr->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 /* Emulate the eof flag, which isn't normally needed in NFSv2
602 * as it is guaranteed to always return the file attributes
603 */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400604 if (hdr->args.offset + hdr->res.count >= hdr->res.fattr->size)
605 hdr->res.eof = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Trond Myklebustec06c092006-03-20 13:44:27 -0500607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400610static void nfs_proc_read_setup(struct nfs_pgio_header *hdr,
611 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400613 msg->rpc_proc = &nfs_procedures[NFSPROC_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400616static int nfs_proc_pgio_rpc_prepare(struct rpc_task *task,
617 struct nfs_pgio_header *hdr)
Bryan Schumakerea7c3302012-03-19 14:54:40 -0400618{
619 rpc_call_start(task);
NeilBrownef1820f2013-09-04 17:04:49 +1000620 return 0;
Bryan Schumakerea7c3302012-03-19 14:54:40 -0400621}
622
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400623static int nfs_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (task->tk_status >= 0)
Trond Myklebusta08a8cd2015-02-26 17:36:09 -0500626 nfs_writeback_update_inode(hdr);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500627 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400630static void nfs_proc_write_setup(struct nfs_pgio_header *hdr,
Anna Schumakerfb91fb02018-05-04 16:22:48 -0400631 struct rpc_message *msg,
632 struct rpc_clnt **clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /* Note: NFSv2 ignores @stable and always uses NFS_FILE_SYNC */
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400635 hdr->args.stable = NFS_FILE_SYNC;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400636 msg->rpc_proc = &nfs_procedures[NFSPROC_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Fred Isaman0b7c0152012-04-20 14:47:39 -0400639static void nfs_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
640{
641 BUG();
642}
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644static void
Anna Schumakere9ae1ee2018-05-04 16:22:49 -0400645nfs_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg,
646 struct rpc_clnt **clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 BUG();
649}
650
651static int
652nfs_proc_lock(struct file *filp, int cmd, struct file_lock *fl)
653{
Al Viro496ad9a2013-01-23 17:07:38 -0500654 struct inode *inode = file_inode(filp);
Chuck Lever1093a602008-01-11 17:09:59 -0500655
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -0400656 return nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Trond Myklebust21162712008-05-20 19:34:39 -0400659/* Helper functions for NFS lock bounds checking */
660#define NFS_LOCK32_OFFSET_MAX ((__s32)0x7fffffffUL)
661static int nfs_lock_check_bounds(const struct file_lock *fl)
662{
663 __s32 start, end;
664
665 start = (__s32)fl->fl_start;
666 if ((loff_t)start != fl->fl_start)
667 goto out_einval;
668
669 if (fl->fl_end != OFFSET_MAX) {
670 end = (__s32)fl->fl_end;
671 if ((loff_t)end != fl->fl_end)
672 goto out_einval;
673 } else
674 end = NFS_LOCK32_OFFSET_MAX;
675
676 if (start < 0 || start > end)
677 goto out_einval;
678 return 0;
679out_einval:
680 return -EINVAL;
681}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Bryan Schumaker011e2a72012-06-20 15:53:43 -0400683static int nfs_have_delegation(struct inode *inode, fmode_t flags)
684{
685 return 0;
686}
687
Bryan Schumaker597d9282012-07-16 16:39:10 -0400688static const struct inode_operations nfs_dir_inode_operations = {
689 .create = nfs_create,
690 .lookup = nfs_lookup,
691 .link = nfs_link,
692 .unlink = nfs_unlink,
693 .symlink = nfs_symlink,
694 .mkdir = nfs_mkdir,
695 .rmdir = nfs_rmdir,
696 .mknod = nfs_mknod,
697 .rename = nfs_rename,
698 .permission = nfs_permission,
699 .getattr = nfs_getattr,
700 .setattr = nfs_setattr,
701};
702
703static const struct inode_operations nfs_file_inode_operations = {
704 .permission = nfs_permission,
705 .getattr = nfs_getattr,
706 .setattr = nfs_setattr,
707};
708
David Howells509de812006-08-22 20:06:11 -0400709const struct nfs_rpc_ops nfs_v2_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 .version = 2, /* protocol version */
711 .dentry_ops = &nfs_dentry_operations,
712 .dir_inode_ops = &nfs_dir_inode_operations,
J. Bruce Fields92cfc622005-06-22 17:16:22 +0000713 .file_inode_ops = &nfs_file_inode_operations,
Jeff Layton1788ea62011-11-04 13:31:21 -0400714 .file_ops = &nfs_file_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 .getroot = nfs_proc_get_root,
Bryan Schumaker281cad42012-04-27 13:27:45 -0400716 .submount = nfs_submount,
Bryan Schumakerff9099f22012-07-30 16:05:18 -0400717 .try_mount = nfs_try_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 .getattr = nfs_proc_getattr,
719 .setattr = nfs_proc_setattr,
720 .lookup = nfs_proc_lookup,
721 .access = NULL, /* access */
722 .readlink = nfs_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 .create = nfs_proc_create,
724 .remove = nfs_proc_remove,
725 .unlink_setup = nfs_proc_unlink_setup,
Bryan Schumaker34e137c2012-03-19 14:54:41 -0400726 .unlink_rpc_prepare = nfs_proc_unlink_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 .unlink_done = nfs_proc_unlink_done,
Jeff Laytond3d41522010-09-17 17:31:57 -0400728 .rename_setup = nfs_proc_rename_setup,
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -0400729 .rename_rpc_prepare = nfs_proc_rename_rpc_prepare,
Jeff Laytond3d41522010-09-17 17:31:57 -0400730 .rename_done = nfs_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 .link = nfs_proc_link,
732 .symlink = nfs_proc_symlink,
733 .mkdir = nfs_proc_mkdir,
734 .rmdir = nfs_proc_rmdir,
735 .readdir = nfs_proc_readdir,
736 .mknod = nfs_proc_mknod,
737 .statfs = nfs_proc_statfs,
738 .fsinfo = nfs_proc_fsinfo,
739 .pathconf = nfs_proc_pathconf,
Chuck Leverf796f8b2010-12-14 14:55:10 +0000740 .decode_dirent = nfs2_decode_dirent,
Anna Schumakera4cdda52014-05-06 09:12:31 -0400741 .pgio_rpc_prepare = nfs_proc_pgio_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 .read_setup = nfs_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -0500743 .read_done = nfs_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 .write_setup = nfs_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500745 .write_done = nfs_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 .commit_setup = nfs_proc_commit_setup,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400747 .commit_rpc_prepare = nfs_proc_commit_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 .lock = nfs_proc_lock,
Trond Myklebust21162712008-05-20 19:34:39 -0400749 .lock_check_bounds = nfs_lock_check_bounds,
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400750 .close_context = nfs_close_context,
Bryan Schumaker011e2a72012-06-20 15:53:43 -0400751 .have_delegation = nfs_have_delegation,
Bryan Schumaker6663ee72012-06-20 15:53:46 -0400752 .alloc_client = nfs_alloc_client,
Andy Adamson45a52a02011-03-01 01:34:08 +0000753 .init_client = nfs_init_client,
Bryan Schumakercdb7eced2012-06-20 15:53:45 -0400754 .free_client = nfs_free_client,
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400755 .create_server = nfs_create_server,
756 .clone_server = nfs_clone_server,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757};