blob: 49f848fd1f04779108d86a5eee618e21d11304e6 [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/nfs3proc.c
4 *
5 * Client-side NFSv3 procedures stubs.
6 *
7 * Copyright (C) 1997, Olaf Kirch
8 */
9
10#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
12#include <linux/string.h>
13#include <linux/sunrpc/clnt.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/nfs.h>
16#include <linux/nfs3.h>
17#include <linux/nfs_fs.h>
18#include <linux/nfs_page.h>
19#include <linux/lockd/bind.h>
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000020#include <linux/nfs_mount.h>
Jeff Laytond3103102011-12-01 22:44:39 +010021#include <linux/freezer.h>
Tejun Heo0a6be652014-02-03 14:31:07 -050022#include <linux/xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Chuck Lever006ea732006-03-20 13:44:14 -050024#include "iostat.h"
David Howellsf7b422b2006-06-09 09:34:33 -040025#include "internal.h"
Anna Schumaker00a36a102014-09-03 12:19:08 -040026#include "nfs3_fs.h"
Chuck Lever006ea732006-03-20 13:44:14 -050027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#define NFSDBG_FACILITY NFSDBG_PROC
29
Andy Adamsoneb96d5c2012-11-27 10:34:19 -050030/* A wrapper to handle the EJUKEBOX error messages */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int
32nfs3_rpc_wrapper(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)
33{
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 do {
36 res = rpc_call_sync(clnt, msg, flags);
Andy Adamsoneb96d5c2012-11-27 10:34:19 -050037 if (res != -EJUKEBOX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 break;
Colin Cross416ad3c2013-05-06 23:50:06 +000039 freezable_schedule_timeout_killable_unsafe(NFS_JUKEBOX_RETRY_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 res = -ERESTARTSYS;
Matthew Wilcox150030b2007-12-06 16:24:39 -050041 } while (!fatal_signal_pending(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 return res;
43}
44
Chuck Leverdead28d2006-03-20 13:44:23 -050045#define rpc_call_sync(clnt, msg, flags) nfs3_rpc_wrapper(clnt, msg, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47static int
Chuck Lever006ea732006-03-20 13:44:14 -050048nfs3_async_handle_jukebox(struct rpc_task *task, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
Andy Adamsoneb96d5c2012-11-27 10:34:19 -050050 if (task->tk_status != -EJUKEBOX)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return 0;
Jeff Laytonb68d69b2010-01-07 09:42:04 -050052 if (task->tk_status == -EJUKEBOX)
53 nfs_inc_stats(inode, NFSIOS_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 task->tk_status = 0;
55 rpc_restart_call(task);
56 rpc_delay(task, NFS_JUKEBOX_RETRY_TIME);
57 return 1;
58}
59
J. Bruce Fields03c21732006-01-03 09:55:48 +010060static int
61do_proc_get_root(struct rpc_clnt *client, struct nfs_fh *fhandle,
62 struct nfs_fsinfo *info)
63{
Chuck Leverdead28d2006-03-20 13:44:23 -050064 struct rpc_message msg = {
65 .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO],
66 .rpc_argp = fhandle,
67 .rpc_resp = info,
68 };
J. Bruce Fields03c21732006-01-03 09:55:48 +010069 int status;
70
Harvey Harrison3110ff82008-05-02 13:42:44 -070071 dprintk("%s: call fsinfo\n", __func__);
J. Bruce Fields03c21732006-01-03 09:55:48 +010072 nfs_fattr_init(info->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -050073 status = rpc_call_sync(client, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -070074 dprintk("%s: reply fsinfo: %d\n", __func__, status);
Trond Myklebust08660042012-08-20 12:42:15 -040075 if (status == 0 && !(info->fattr->valid & NFS_ATTR_FATTR)) {
Chuck Leverdead28d2006-03-20 13:44:23 -050076 msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR];
77 msg.rpc_resp = info->fattr;
78 status = rpc_call_sync(client, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -070079 dprintk("%s: reply getattr: %d\n", __func__, status);
J. Bruce Fields03c21732006-01-03 09:55:48 +010080 }
81 return status;
82}
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
David Howells54ceac42006-08-22 20:06:13 -040085 * Bare-bones access to getattr: this is for nfs_get_root/nfs_get_sb
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 */
87static int
88nfs3_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
89 struct nfs_fsinfo *info)
90{
91 int status;
92
J. Bruce Fields03c21732006-01-03 09:55:48 +010093 status = do_proc_get_root(server->client, fhandle, info);
David Howells5006a762006-08-22 20:06:12 -040094 if (status && server->nfs_client->cl_rpcclient != server->client)
95 status = do_proc_get_root(server->nfs_client->cl_rpcclient, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return status;
97}
98
99/*
100 * One function for each procedure in the NFS protocol.
101 */
102static int
103nfs3_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
David Quigley1775fd32013-05-22 12:50:42 -0400104 struct nfs_fattr *fattr, struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Chuck Leverdead28d2006-03-20 13:44:23 -0500106 struct rpc_message msg = {
107 .rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR],
108 .rpc_argp = fhandle,
109 .rpc_resp = fattr,
110 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int status;
112
113 dprintk("NFS call getattr\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400114 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500115 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 dprintk("NFS reply getattr: %d\n", status);
117 return status;
118}
119
120static int
121nfs3_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
122 struct iattr *sattr)
123{
David Howells2b0143b2015-03-17 22:25:59 +0000124 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct nfs3_sattrargs arg = {
126 .fh = NFS_FH(inode),
127 .sattr = sattr,
128 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500129 struct rpc_message msg = {
130 .rpc_proc = &nfs3_procedures[NFS3PROC_SETATTR],
131 .rpc_argp = &arg,
132 .rpc_resp = fattr,
133 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 int status;
135
136 dprintk("NFS call setattr\n");
Trond Myklebust659bfcd2008-06-10 19:39:41 -0400137 if (sattr->ia_valid & ATTR_FILE)
138 msg.rpc_cred = nfs_file_cred(sattr->ia_file);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400139 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500140 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebust65e43082005-08-16 11:49:44 -0400141 if (status == 0)
Trond Myklebustf0446362015-02-26 16:09:04 -0500142 nfs_setattr_update_inode(inode, sattr, fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 dprintk("NFS reply setattr: %d\n", status);
144 return status;
145}
146
147static int
Al Virobeffb8f2016-07-20 16:34:42 -0400148nfs3_proc_lookup(struct inode *dir, const struct qstr *name,
David Quigley1775fd32013-05-22 12:50:42 -0400149 struct nfs_fh *fhandle, struct nfs_fattr *fattr,
150 struct nfs4_label *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 struct nfs3_diropargs arg = {
153 .fh = NFS_FH(dir),
154 .name = name->name,
155 .len = name->len
156 };
157 struct nfs3_diropres res = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .fh = fhandle,
159 .fattr = fattr
160 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500161 struct rpc_message msg = {
162 .rpc_proc = &nfs3_procedures[NFS3PROC_LOOKUP],
163 .rpc_argp = &arg,
164 .rpc_resp = &res,
165 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 int status;
167
168 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400169 res.dir_attr = nfs_alloc_fattr();
170 if (res.dir_attr == NULL)
171 return -ENOMEM;
172
Trond Myklebust0e574af2005-10-27 22:12:38 -0400173 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500174 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400175 nfs_refresh_inode(dir, res.dir_attr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500176 if (status >= 0 && !(fattr->valid & NFS_ATTR_FATTR)) {
177 msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR];
178 msg.rpc_argp = fhandle;
179 msg.rpc_resp = fattr;
180 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
181 }
Trond Myklebuste1fb4d02010-04-16 16:22:47 -0400182 nfs_free_fattr(res.dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 dprintk("NFS reply lookup: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return status;
185}
186
187static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry)
188{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 struct nfs3_accessargs arg = {
190 .fh = NFS_FH(inode),
Anna Schumaker1750d922017-07-26 12:00:21 -0400191 .access = entry->mask,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 };
Trond Myklebustc407d412010-04-16 16:22:48 -0400193 struct nfs3_accessres res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct rpc_message msg = {
195 .rpc_proc = &nfs3_procedures[NFS3PROC_ACCESS],
196 .rpc_argp = &arg,
197 .rpc_resp = &res,
Chuck Leverdead28d2006-03-20 13:44:23 -0500198 .rpc_cred = entry->cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 };
Trond Myklebustc407d412010-04-16 16:22:48 -0400200 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 dprintk("NFS call access\n");
Trond Myklebustc407d412010-04-16 16:22:48 -0400203 res.fattr = nfs_alloc_fattr();
204 if (res.fattr == NULL)
205 goto out;
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebustc407d412010-04-16 16:22:48 -0400208 nfs_refresh_inode(inode, res.fattr);
Trond Myklebusteda3e202017-07-11 17:54:33 -0400209 if (status == 0)
210 nfs_access_set_mask(entry, res.access);
Trond Myklebustc407d412010-04-16 16:22:48 -0400211 nfs_free_fattr(res.fattr);
212out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 dprintk("NFS reply access: %d\n", status);
214 return status;
215}
216
217static int nfs3_proc_readlink(struct inode *inode, struct page *page,
218 unsigned int pgbase, unsigned int pglen)
219{
Trond Myklebust3b14d652010-04-16 16:22:50 -0400220 struct nfs_fattr *fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 struct nfs3_readlinkargs args = {
222 .fh = NFS_FH(inode),
223 .pgbase = pgbase,
224 .pglen = pglen,
225 .pages = &page
226 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500227 struct rpc_message msg = {
228 .rpc_proc = &nfs3_procedures[NFS3PROC_READLINK],
229 .rpc_argp = &args,
Chuck Leverdead28d2006-03-20 13:44:23 -0500230 };
Trond Myklebust3b14d652010-04-16 16:22:50 -0400231 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 dprintk("NFS call readlink\n");
Trond Myklebust3b14d652010-04-16 16:22:50 -0400234 fattr = nfs_alloc_fattr();
235 if (fattr == NULL)
236 goto out;
237 msg.rpc_resp = fattr;
238
Chuck Leverdead28d2006-03-20 13:44:23 -0500239 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebust3b14d652010-04-16 16:22:50 -0400240 nfs_refresh_inode(inode, fattr);
241 nfs_free_fattr(fattr);
242out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 dprintk("NFS reply readlink: %d\n", status);
244 return status;
245}
246
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400247struct nfs3_createdata {
248 struct rpc_message msg;
249 union {
250 struct nfs3_createargs create;
251 struct nfs3_mkdirargs mkdir;
252 struct nfs3_symlinkargs symlink;
253 struct nfs3_mknodargs mknod;
254 } arg;
255 struct nfs3_diropres res;
256 struct nfs_fh fh;
257 struct nfs_fattr fattr;
258 struct nfs_fattr dir_attr;
259};
260
261static struct nfs3_createdata *nfs3_alloc_createdata(void)
262{
263 struct nfs3_createdata *data;
264
265 data = kzalloc(sizeof(*data), GFP_KERNEL);
266 if (data != NULL) {
267 data->msg.rpc_argp = &data->arg;
268 data->msg.rpc_resp = &data->res;
269 data->res.fh = &data->fh;
270 data->res.fattr = &data->fattr;
271 data->res.dir_attr = &data->dir_attr;
272 nfs_fattr_init(data->res.fattr);
273 nfs_fattr_init(data->res.dir_attr);
274 }
275 return data;
276}
277
278static int nfs3_do_create(struct inode *dir, struct dentry *dentry, struct nfs3_createdata *data)
279{
280 int status;
281
282 status = rpc_call_sync(NFS_CLIENT(dir), &data->msg, 0);
283 nfs_post_op_update_inode(dir, data->res.dir_attr);
284 if (status == 0)
David Quigley1775fd32013-05-22 12:50:42 -0400285 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, NULL);
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400286 return status;
287}
288
289static void nfs3_free_createdata(struct nfs3_createdata *data)
290{
291 kfree(data);
292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294/*
295 * Create a regular file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 */
297static int
298nfs3_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Miklos Szeredi8867fe52012-06-05 15:10:19 +0200299 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800301 struct posix_acl *default_acl, *acl;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400302 struct nfs3_createdata *data;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400303 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Al Viro6de14722013-09-16 10:53:17 -0400305 dprintk("NFS call create %pd\n", dentry);
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400306
307 data = nfs3_alloc_createdata();
308 if (data == NULL)
309 goto out;
310
311 data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_CREATE];
312 data->arg.create.fh = NFS_FH(dir);
313 data->arg.create.name = dentry->d_name.name;
314 data->arg.create.len = dentry->d_name.len;
315 data->arg.create.sattr = sattr;
316
317 data->arg.create.createmode = NFS3_CREATE_UNCHECKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (flags & O_EXCL) {
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400319 data->arg.create.createmode = NFS3_CREATE_EXCLUSIVE;
Trond Myklebusta9943d12013-08-20 21:04:11 -0400320 data->arg.create.verifier[0] = cpu_to_be32(jiffies);
321 data->arg.create.verifier[1] = cpu_to_be32(current->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800324 status = posix_acl_create(dir, &sattr->ia_mode, &default_acl, &acl);
325 if (status)
326 goto out;
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000327
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400328 for (;;) {
329 status = nfs3_do_create(dir, dentry, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400331 if (status != -ENOTSUPP)
332 break;
333 /* If the server doesn't support the exclusive creation
334 * semantics, try again with simple 'guarded' mode. */
335 switch (data->arg.create.createmode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 case NFS3_CREATE_EXCLUSIVE:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400337 data->arg.create.createmode = NFS3_CREATE_GUARDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 break;
339
340 case NFS3_CREATE_GUARDED:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400341 data->arg.create.createmode = NFS3_CREATE_UNCHECKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 break;
343
344 case NFS3_CREATE_UNCHECKED:
345 goto out;
346 }
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400347 nfs_fattr_init(data->res.dir_attr);
348 nfs_fattr_init(data->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (status != 0)
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800352 goto out_release_acls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /* When we created the file with exclusive semantics, make
355 * sure we set the attributes afterwards. */
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400356 if (data->arg.create.createmode == NFS3_CREATE_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 dprintk("NFS call setattr (post-create)\n");
358
359 if (!(sattr->ia_valid & ATTR_ATIME_SET))
360 sattr->ia_valid |= ATTR_ATIME;
361 if (!(sattr->ia_valid & ATTR_MTIME_SET))
362 sattr->ia_valid |= ATTR_MTIME;
363
364 /* Note: we could use a guarded setattr here, but I'm
365 * not sure this buys us anything (and I'd have
366 * to revamp the NFSv3 XDR code) */
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400367 status = nfs3_proc_setattr(dentry, data->res.fattr, sattr);
David Howells2b0143b2015-03-17 22:25:59 +0000368 nfs_post_op_update_inode(d_inode(dentry), data->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 dprintk("NFS reply setattr (post-create): %d\n", status);
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400370 if (status != 0)
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800371 goto out_release_acls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800373
David Howells2b0143b2015-03-17 22:25:59 +0000374 status = nfs3_proc_setacls(d_inode(dentry), acl, default_acl);
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800375
376out_release_acls:
377 posix_acl_release(acl);
378 posix_acl_release(default_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379out:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400380 nfs3_free_createdata(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 dprintk("NFS reply create: %d\n", status);
382 return status;
383}
384
385static int
Al Virobeffb8f2016-07-20 16:34:42 -0400386nfs3_proc_remove(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400388 struct nfs_removeargs arg = {
389 .fh = NFS_FH(dir),
Linus Torvalds26fe5752012-05-10 13:14:12 -0700390 .name = *name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400392 struct nfs_removeres res;
393 struct rpc_message msg = {
394 .rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE],
395 .rpc_argp = &arg,
396 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 };
Trond Myklebustd3468902010-04-16 16:22:50 -0400398 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 dprintk("NFS call remove %s\n", name->name);
Trond Myklebustd3468902010-04-16 16:22:50 -0400401 res.dir_attr = nfs_alloc_fattr();
402 if (res.dir_attr == NULL)
403 goto out;
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustd3468902010-04-16 16:22:50 -0400406 nfs_post_op_update_inode(dir, res.dir_attr);
407 nfs_free_fattr(res.dir_attr);
408out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 dprintk("NFS reply remove: %d\n", status);
410 return status;
411}
412
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400413static void
414nfs3_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 msg->rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Bryan Schumaker34e137c2012-03-19 14:54:41 -0400419static void nfs3_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data)
420{
421 rpc_call_start(task);
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static int
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400425nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400427 struct nfs_removeres *res;
428 if (nfs3_async_handle_jukebox(task, dir))
429 return 0;
430 res = task->tk_msg.rpc_resp;
Trond Myklebustd3468902010-04-16 16:22:50 -0400431 nfs_post_op_update_inode(dir, res->dir_attr);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400432 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Jeff Laytond3d41522010-09-17 17:31:57 -0400435static void
436nfs3_proc_rename_setup(struct rpc_message *msg, struct inode *dir)
437{
438 msg->rpc_proc = &nfs3_procedures[NFS3PROC_RENAME];
439}
440
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -0400441static void nfs3_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data)
442{
443 rpc_call_start(task);
444}
445
Jeff Laytond3d41522010-09-17 17:31:57 -0400446static int
447nfs3_proc_rename_done(struct rpc_task *task, struct inode *old_dir,
448 struct inode *new_dir)
449{
450 struct nfs_renameres *res;
451
452 if (nfs3_async_handle_jukebox(task, old_dir))
453 return 0;
454 res = task->tk_msg.rpc_resp;
455
456 nfs_post_op_update_inode(old_dir, res->old_fattr);
457 nfs_post_op_update_inode(new_dir, res->new_fattr);
458 return 1;
459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461static int
Al Virobeffb8f2016-07-20 16:34:42 -0400462nfs3_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct nfs3_linkargs arg = {
465 .fromfh = NFS_FH(inode),
466 .tofh = NFS_FH(dir),
467 .toname = name->name,
468 .tolen = name->len
469 };
Trond Myklebust136f2622010-04-16 16:22:49 -0400470 struct nfs3_linkres res;
Chuck Leverdead28d2006-03-20 13:44:23 -0500471 struct rpc_message msg = {
472 .rpc_proc = &nfs3_procedures[NFS3PROC_LINK],
473 .rpc_argp = &arg,
474 .rpc_resp = &res,
475 };
Trond Myklebust136f2622010-04-16 16:22:49 -0400476 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 dprintk("NFS call link %s\n", name->name);
Trond Myklebust136f2622010-04-16 16:22:49 -0400479 res.fattr = nfs_alloc_fattr();
480 res.dir_attr = nfs_alloc_fattr();
481 if (res.fattr == NULL || res.dir_attr == NULL)
482 goto out;
483
Chuck Leverdead28d2006-03-20 13:44:23 -0500484 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebust136f2622010-04-16 16:22:49 -0400485 nfs_post_op_update_inode(dir, res.dir_attr);
486 nfs_post_op_update_inode(inode, res.fattr);
487out:
488 nfs_free_fattr(res.dir_attr);
489 nfs_free_fattr(res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 dprintk("NFS reply link: %d\n", status);
491 return status;
492}
493
494static int
Chuck Lever94a6d752006-08-22 20:06:23 -0400495nfs3_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
496 unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400498 struct nfs3_createdata *data;
499 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Chuck Lever94a6d752006-08-22 20:06:23 -0400501 if (len > NFS3_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -0400503
Al Viro6de14722013-09-16 10:53:17 -0400504 dprintk("NFS call symlink %pd\n", dentry);
Chuck Lever94a6d752006-08-22 20:06:23 -0400505
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400506 data = nfs3_alloc_createdata();
507 if (data == NULL)
Chuck Lever4f390c12006-08-22 20:06:22 -0400508 goto out;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400509 data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_SYMLINK];
510 data->arg.symlink.fromfh = NFS_FH(dir);
511 data->arg.symlink.fromname = dentry->d_name.name;
512 data->arg.symlink.fromlen = dentry->d_name.len;
513 data->arg.symlink.pages = &page;
514 data->arg.symlink.pathlen = len;
515 data->arg.symlink.sattr = sattr;
516
517 status = nfs3_do_create(dir, dentry, data);
518
519 nfs3_free_createdata(data);
Chuck Lever4f390c12006-08-22 20:06:22 -0400520out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 dprintk("NFS reply symlink: %d\n", status);
522 return status;
523}
524
525static int
526nfs3_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
527{
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800528 struct posix_acl *default_acl, *acl;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400529 struct nfs3_createdata *data;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400530 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Al Viro6de14722013-09-16 10:53:17 -0400532 dprintk("NFS call mkdir %pd\n", dentry);
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000533
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400534 data = nfs3_alloc_createdata();
535 if (data == NULL)
536 goto out;
537
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800538 status = posix_acl_create(dir, &sattr->ia_mode, &default_acl, &acl);
539 if (status)
540 goto out;
541
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400542 data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_MKDIR];
543 data->arg.mkdir.fh = NFS_FH(dir);
544 data->arg.mkdir.name = dentry->d_name.name;
545 data->arg.mkdir.len = dentry->d_name.len;
546 data->arg.mkdir.sattr = sattr;
547
548 status = nfs3_do_create(dir, dentry, data);
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000549 if (status != 0)
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800550 goto out_release_acls;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400551
David Howells2b0143b2015-03-17 22:25:59 +0000552 status = nfs3_proc_setacls(d_inode(dentry), acl, default_acl);
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800553
554out_release_acls:
555 posix_acl_release(acl);
556 posix_acl_release(default_acl);
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000557out:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400558 nfs3_free_createdata(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 dprintk("NFS reply mkdir: %d\n", status);
560 return status;
561}
562
563static int
Al Virobeffb8f2016-07-20 16:34:42 -0400564nfs3_proc_rmdir(struct inode *dir, const struct qstr *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Trond Myklebust39967dd2010-04-16 16:22:50 -0400566 struct nfs_fattr *dir_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 struct nfs3_diropargs arg = {
568 .fh = NFS_FH(dir),
569 .name = name->name,
570 .len = name->len
571 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500572 struct rpc_message msg = {
573 .rpc_proc = &nfs3_procedures[NFS3PROC_RMDIR],
574 .rpc_argp = &arg,
Chuck Leverdead28d2006-03-20 13:44:23 -0500575 };
Trond Myklebust39967dd2010-04-16 16:22:50 -0400576 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 dprintk("NFS call rmdir %s\n", name->name);
Trond Myklebust39967dd2010-04-16 16:22:50 -0400579 dir_attr = nfs_alloc_fattr();
580 if (dir_attr == NULL)
581 goto out;
582
583 msg.rpc_resp = dir_attr;
Chuck Leverdead28d2006-03-20 13:44:23 -0500584 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebust39967dd2010-04-16 16:22:50 -0400585 nfs_post_op_update_inode(dir, dir_attr);
586 nfs_free_fattr(dir_attr);
587out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 dprintk("NFS reply rmdir: %d\n", status);
589 return status;
590}
591
592/*
593 * The READDIR implementation is somewhat hackish - we pass the user buffer
594 * to the encode function, which installs it in the receive iovec.
595 * The decode function itself doesn't perform any decoding, it just makes
596 * sure the reply is syntactically correct.
597 *
598 * Also note that this implementation handles both plain readdir and
599 * readdirplus.
600 */
601static int
602nfs3_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
Benjamin Coddingtona7a3b1e2017-06-20 08:33:44 -0400603 u64 cookie, struct page **pages, unsigned int count, bool plus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
David Howells2b0143b2015-03-17 22:25:59 +0000605 struct inode *dir = d_inode(dentry);
Trond Myklebustc3f52af2012-09-03 14:56:02 -0400606 __be32 *verf = NFS_I(dir)->cookieverf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 struct nfs3_readdirargs arg = {
608 .fh = NFS_FH(dir),
609 .cookie = cookie,
610 .verf = {verf[0], verf[1]},
611 .plus = plus,
612 .count = count,
Bryan Schumaker56e4ebf2010-10-20 15:44:37 -0400613 .pages = pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 };
615 struct nfs3_readdirres res = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 .verf = verf,
617 .plus = plus
618 };
619 struct rpc_message msg = {
620 .rpc_proc = &nfs3_procedures[NFS3PROC_READDIR],
621 .rpc_argp = &arg,
622 .rpc_resp = &res,
623 .rpc_cred = cred
624 };
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400625 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (plus)
628 msg.rpc_proc = &nfs3_procedures[NFS3PROC_READDIRPLUS];
629
630 dprintk("NFS call readdir%s %d\n",
631 plus? "plus" : "", (unsigned int) cookie);
632
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400633 res.dir_attr = nfs_alloc_fattr();
634 if (res.dir_attr == NULL)
635 goto out;
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustc4812992007-09-28 17:11:45 -0400638
639 nfs_invalidate_atime(dir);
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400640 nfs_refresh_inode(dir, res.dir_attr);
Trond Myklebustc4812992007-09-28 17:11:45 -0400641
Trond Myklebustaa49b4c2010-04-16 16:22:49 -0400642 nfs_free_fattr(res.dir_attr);
643out:
Chuck Leverd141d972010-09-21 16:55:47 -0400644 dprintk("NFS reply readdir%s: %d\n",
645 plus? "plus" : "", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return status;
647}
648
649static int
650nfs3_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
651 dev_t rdev)
652{
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800653 struct posix_acl *default_acl, *acl;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400654 struct nfs3_createdata *data;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400655 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Al Viro6de14722013-09-16 10:53:17 -0400657 dprintk("NFS call mknod %pd %u:%u\n", dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 MAJOR(rdev), MINOR(rdev));
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000659
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400660 data = nfs3_alloc_createdata();
661 if (data == NULL)
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000662 goto out;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400663
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800664 status = posix_acl_create(dir, &sattr->ia_mode, &default_acl, &acl);
665 if (status)
666 goto out;
667
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400668 data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_MKNOD];
669 data->arg.mknod.fh = NFS_FH(dir);
670 data->arg.mknod.name = dentry->d_name.name;
671 data->arg.mknod.len = dentry->d_name.len;
672 data->arg.mknod.sattr = sattr;
673 data->arg.mknod.rdev = rdev;
674
675 switch (sattr->ia_mode & S_IFMT) {
676 case S_IFBLK:
677 data->arg.mknod.type = NF3BLK;
678 break;
679 case S_IFCHR:
680 data->arg.mknod.type = NF3CHR;
681 break;
682 case S_IFIFO:
683 data->arg.mknod.type = NF3FIFO;
684 break;
685 case S_IFSOCK:
686 data->arg.mknod.type = NF3SOCK;
687 break;
688 default:
689 status = -EINVAL;
690 goto out;
691 }
692
693 status = nfs3_do_create(dir, dentry, data);
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000694 if (status != 0)
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800695 goto out_release_acls;
696
David Howells2b0143b2015-03-17 22:25:59 +0000697 status = nfs3_proc_setacls(d_inode(dentry), acl, default_acl);
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800698
699out_release_acls:
700 posix_acl_release(acl);
701 posix_acl_release(default_acl);
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000702out:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400703 nfs3_free_createdata(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 dprintk("NFS reply mknod: %d\n", status);
705 return status;
706}
707
708static int
709nfs3_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
710 struct nfs_fsstat *stat)
711{
Chuck Leverdead28d2006-03-20 13:44:23 -0500712 struct rpc_message msg = {
713 .rpc_proc = &nfs3_procedures[NFS3PROC_FSSTAT],
714 .rpc_argp = fhandle,
715 .rpc_resp = stat,
716 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 int status;
718
719 dprintk("NFS call fsstat\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400720 nfs_fattr_init(stat->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500721 status = rpc_call_sync(server->client, &msg, 0);
Chuck Leverd141d972010-09-21 16:55:47 -0400722 dprintk("NFS reply fsstat: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return status;
724}
725
726static int
EG Keizer37ca8f52008-08-19 16:34:36 -0400727do_proc_fsinfo(struct rpc_clnt *client, struct nfs_fh *fhandle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 struct nfs_fsinfo *info)
729{
Chuck Leverdead28d2006-03-20 13:44:23 -0500730 struct rpc_message msg = {
731 .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO],
732 .rpc_argp = fhandle,
733 .rpc_resp = info,
734 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 int status;
736
737 dprintk("NFS call fsinfo\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400738 nfs_fattr_init(info->fattr);
EG Keizer37ca8f52008-08-19 16:34:36 -0400739 status = rpc_call_sync(client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 dprintk("NFS reply fsinfo: %d\n", status);
741 return status;
742}
743
EG Keizer37ca8f52008-08-19 16:34:36 -0400744/*
745 * Bare-bones access to fsinfo: this is for nfs_get_root/nfs_get_sb via
746 * nfs_create_server
747 */
748static int
749nfs3_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
750 struct nfs_fsinfo *info)
751{
752 int status;
753
754 status = do_proc_fsinfo(server->client, fhandle, info);
755 if (status && server->nfs_client->cl_rpcclient != server->client)
756 status = do_proc_fsinfo(server->nfs_client->cl_rpcclient, fhandle, info);
757 return status;
758}
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760static int
761nfs3_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
762 struct nfs_pathconf *info)
763{
Chuck Leverdead28d2006-03-20 13:44:23 -0500764 struct rpc_message msg = {
765 .rpc_proc = &nfs3_procedures[NFS3PROC_PATHCONF],
766 .rpc_argp = fhandle,
767 .rpc_resp = info,
768 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 int status;
770
771 dprintk("NFS call pathconf\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400772 nfs_fattr_init(info->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500773 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 dprintk("NFS reply pathconf: %d\n", status);
775 return status;
776}
777
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400778static int nfs3_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400780 struct inode *inode = hdr->inode;
Fred Isamancd841602012-04-20 14:47:44 -0400781
Trond Myklebust16cecdf2014-06-22 12:55:11 -0400782 if (hdr->pgio_done_cb != NULL)
783 return hdr->pgio_done_cb(task, hdr);
784
Fred Isamancd841602012-04-20 14:47:44 -0400785 if (nfs3_async_handle_jukebox(task, inode))
Trond Myklebustec06c092006-03-20 13:44:27 -0500786 return -EAGAIN;
Trond Myklebust8850df92007-09-28 17:20:07 -0400787
Fred Isamancd841602012-04-20 14:47:44 -0400788 nfs_invalidate_atime(inode);
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400789 nfs_refresh_inode(inode, &hdr->fattr);
Trond Myklebustec06c092006-03-20 13:44:27 -0500790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400793static void nfs3_proc_read_setup(struct nfs_pgio_header *hdr,
794 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400796 msg->rpc_proc = &nfs3_procedures[NFS3PROC_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400799static int nfs3_proc_pgio_rpc_prepare(struct rpc_task *task,
800 struct nfs_pgio_header *hdr)
Bryan Schumakerea7c3302012-03-19 14:54:40 -0400801{
802 rpc_call_start(task);
NeilBrownef1820f2013-09-04 17:04:49 +1000803 return 0;
Bryan Schumakerea7c3302012-03-19 14:54:40 -0400804}
805
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400806static int nfs3_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400808 struct inode *inode = hdr->inode;
Fred Isamancd841602012-04-20 14:47:44 -0400809
Trond Myklebust16cecdf2014-06-22 12:55:11 -0400810 if (hdr->pgio_done_cb != NULL)
811 return hdr->pgio_done_cb(task, hdr);
812
Fred Isamancd841602012-04-20 14:47:44 -0400813 if (nfs3_async_handle_jukebox(task, inode))
Trond Myklebust788e7a82006-03-20 13:44:27 -0500814 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (task->tk_status >= 0)
Trond Myklebusta08a8cd2015-02-26 17:36:09 -0500816 nfs_writeback_update_inode(hdr);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500817 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
819
Weston Andros Adamsond45f60c2014-06-09 11:48:35 -0400820static void nfs3_proc_write_setup(struct nfs_pgio_header *hdr,
821 struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400823 msg->rpc_proc = &nfs3_procedures[NFS3PROC_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
Fred Isaman0b7c0152012-04-20 14:47:39 -0400826static void nfs3_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data)
827{
828 rpc_call_start(task);
829}
830
831static int nfs3_commit_done(struct rpc_task *task, struct nfs_commit_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Trond Myklebust16cecdf2014-06-22 12:55:11 -0400833 if (data->commit_done_cb != NULL)
834 return data->commit_done_cb(task, data);
835
Chuck Lever006ea732006-03-20 13:44:14 -0500836 if (nfs3_async_handle_jukebox(task, data->inode))
Trond Myklebust788e7a82006-03-20 13:44:27 -0500837 return -EAGAIN;
Trond Myklebust9e08a3c2007-10-08 14:10:31 -0400838 nfs_refresh_inode(data->inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500839 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
Fred Isaman0b7c0152012-04-20 14:47:39 -0400842static void nfs3_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400844 msg->rpc_proc = &nfs3_procedures[NFS3PROC_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845}
846
Trond Myklebustbb3393d2017-04-25 16:25:06 -0400847static void nfs3_nlm_alloc_call(void *data)
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -0400848{
849 struct nfs_lock_context *l_ctx = data;
850 if (l_ctx && test_bit(NFS_CONTEXT_UNLOCK, &l_ctx->open_context->flags)) {
851 get_nfs_open_context(l_ctx->open_context);
852 nfs_get_lock_context(l_ctx->open_context);
853 }
854}
855
Trond Myklebustbb3393d2017-04-25 16:25:06 -0400856static bool nfs3_nlm_unlock_prepare(struct rpc_task *task, void *data)
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -0400857{
858 struct nfs_lock_context *l_ctx = data;
859 if (l_ctx && test_bit(NFS_CONTEXT_UNLOCK, &l_ctx->open_context->flags))
860 return nfs_async_iocounter_wait(task, l_ctx);
861 return false;
862
863}
864
Trond Myklebustbb3393d2017-04-25 16:25:06 -0400865static void nfs3_nlm_release_call(void *data)
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -0400866{
867 struct nfs_lock_context *l_ctx = data;
868 struct nfs_open_context *ctx;
869 if (l_ctx && test_bit(NFS_CONTEXT_UNLOCK, &l_ctx->open_context->flags)) {
870 ctx = l_ctx->open_context;
871 nfs_put_lock_context(l_ctx);
872 put_nfs_open_context(ctx);
873 }
874}
875
876const struct nlmclnt_operations nlmclnt_fl_close_lock_ops = {
877 .nlmclnt_alloc_call = nfs3_nlm_alloc_call,
878 .nlmclnt_unlock_prepare = nfs3_nlm_unlock_prepare,
879 .nlmclnt_release_call = nfs3_nlm_release_call,
880};
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882static int
883nfs3_proc_lock(struct file *filp, int cmd, struct file_lock *fl)
884{
Al Viro496ad9a2013-01-23 17:07:38 -0500885 struct inode *inode = file_inode(filp);
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -0400886 struct nfs_lock_context *l_ctx = NULL;
887 struct nfs_open_context *ctx = nfs_file_open_context(filp);
888 int status;
Chuck Lever1093a602008-01-11 17:09:59 -0500889
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -0400890 if (fl->fl_flags & FL_CLOSE) {
891 l_ctx = nfs_get_lock_context(ctx);
892 if (IS_ERR(l_ctx))
893 l_ctx = NULL;
894 else
895 set_bit(NFS_CONTEXT_UNLOCK, &ctx->flags);
896 }
897
898 status = nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl, l_ctx);
899
900 if (l_ctx)
901 nfs_put_lock_context(l_ctx);
902
903 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
Bryan Schumaker011e2a72012-06-20 15:53:43 -0400906static int nfs3_have_delegation(struct inode *inode, fmode_t flags)
907{
908 return 0;
909}
910
Bryan Schumaker57ec14c2012-06-20 15:53:44 -0400911static int nfs3_return_delegation(struct inode *inode)
912{
913 nfs_wb_all(inode);
914 return 0;
915}
916
Bryan Schumakerab962912012-07-16 16:39:11 -0400917static const struct inode_operations nfs3_dir_inode_operations = {
918 .create = nfs_create,
919 .lookup = nfs_lookup,
920 .link = nfs_link,
921 .unlink = nfs_unlink,
922 .symlink = nfs_symlink,
923 .mkdir = nfs_mkdir,
924 .rmdir = nfs_rmdir,
925 .mknod = nfs_mknod,
926 .rename = nfs_rename,
927 .permission = nfs_permission,
928 .getattr = nfs_getattr,
929 .setattr = nfs_setattr,
Christoph Hellwig5f13ee92014-01-30 06:01:52 -0800930#ifdef CONFIG_NFS_V3_ACL
Christoph Hellwig74adf832014-06-18 11:07:03 +0200931 .listxattr = nfs3_listxattr,
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800932 .get_acl = nfs3_get_acl,
933 .set_acl = nfs3_set_acl,
934#endif
Bryan Schumakerab962912012-07-16 16:39:11 -0400935};
936
937static const struct inode_operations nfs3_file_inode_operations = {
938 .permission = nfs_permission,
939 .getattr = nfs_getattr,
940 .setattr = nfs_setattr,
Christoph Hellwig5f13ee92014-01-30 06:01:52 -0800941#ifdef CONFIG_NFS_V3_ACL
Christoph Hellwig74adf832014-06-18 11:07:03 +0200942 .listxattr = nfs3_listxattr,
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800943 .get_acl = nfs3_get_acl,
944 .set_acl = nfs3_set_acl,
945#endif
Bryan Schumakerab962912012-07-16 16:39:11 -0400946};
947
David Howells509de812006-08-22 20:06:11 -0400948const struct nfs_rpc_ops nfs_v3_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 .version = 3, /* protocol version */
950 .dentry_ops = &nfs_dentry_operations,
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000951 .dir_inode_ops = &nfs3_dir_inode_operations,
952 .file_inode_ops = &nfs3_file_inode_operations,
Jeff Layton1788ea62011-11-04 13:31:21 -0400953 .file_ops = &nfs_file_operations,
Benjamin Coddingtonf30cb752017-04-11 12:50:12 -0400954 .nlmclnt_ops = &nlmclnt_fl_close_lock_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 .getroot = nfs3_proc_get_root,
Bryan Schumaker281cad42012-04-27 13:27:45 -0400956 .submount = nfs_submount,
Bryan Schumakerff9099f22012-07-30 16:05:18 -0400957 .try_mount = nfs_try_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 .getattr = nfs3_proc_getattr,
959 .setattr = nfs3_proc_setattr,
960 .lookup = nfs3_proc_lookup,
961 .access = nfs3_proc_access,
962 .readlink = nfs3_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 .create = nfs3_proc_create,
964 .remove = nfs3_proc_remove,
965 .unlink_setup = nfs3_proc_unlink_setup,
Bryan Schumaker34e137c2012-03-19 14:54:41 -0400966 .unlink_rpc_prepare = nfs3_proc_unlink_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 .unlink_done = nfs3_proc_unlink_done,
Jeff Laytond3d41522010-09-17 17:31:57 -0400968 .rename_setup = nfs3_proc_rename_setup,
Bryan Schumakerc6bfa1a2012-03-19 14:54:42 -0400969 .rename_rpc_prepare = nfs3_proc_rename_rpc_prepare,
Jeff Laytond3d41522010-09-17 17:31:57 -0400970 .rename_done = nfs3_proc_rename_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 .link = nfs3_proc_link,
972 .symlink = nfs3_proc_symlink,
973 .mkdir = nfs3_proc_mkdir,
974 .rmdir = nfs3_proc_rmdir,
975 .readdir = nfs3_proc_readdir,
976 .mknod = nfs3_proc_mknod,
977 .statfs = nfs3_proc_statfs,
978 .fsinfo = nfs3_proc_fsinfo,
979 .pathconf = nfs3_proc_pathconf,
980 .decode_dirent = nfs3_decode_dirent,
Anna Schumakera4cdda52014-05-06 09:12:31 -0400981 .pgio_rpc_prepare = nfs3_proc_pgio_rpc_prepare,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 .read_setup = nfs3_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -0500983 .read_done = nfs3_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 .write_setup = nfs3_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500985 .write_done = nfs3_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 .commit_setup = nfs3_proc_commit_setup,
Fred Isaman0b7c0152012-04-20 14:47:39 -0400987 .commit_rpc_prepare = nfs3_proc_commit_rpc_prepare,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500988 .commit_done = nfs3_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 .lock = nfs3_proc_lock,
Christoph Hellwig013cdf12013-12-20 05:16:53 -0800990 .clear_acl_cache = forget_all_cached_acls,
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400991 .close_context = nfs_close_context,
Bryan Schumaker011e2a72012-06-20 15:53:43 -0400992 .have_delegation = nfs3_have_delegation,
Bryan Schumaker57ec14c2012-06-20 15:53:44 -0400993 .return_delegation = nfs3_return_delegation,
Bryan Schumaker6663ee72012-06-20 15:53:46 -0400994 .alloc_client = nfs_alloc_client,
Andy Adamson45a52a02011-03-01 01:34:08 +0000995 .init_client = nfs_init_client,
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400996 .free_client = nfs_free_client,
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400997 .create_server = nfs3_create_server,
998 .clone_server = nfs3_clone_server,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999};