blob: c55be7a7679e27f6c011766add0b2bf8e9cfc447 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/nfs3proc.c
3 *
4 * Client-side NFSv3 procedures stubs.
5 *
6 * Copyright (C) 1997, Olaf Kirch
7 */
8
9#include <linux/mm.h>
10#include <linux/utsname.h>
11#include <linux/errno.h>
12#include <linux/string.h>
13#include <linux/sunrpc/clnt.h>
14#include <linux/nfs.h>
15#include <linux/nfs3.h>
16#include <linux/nfs_fs.h>
17#include <linux/nfs_page.h>
18#include <linux/lockd/bind.h>
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000019#include <linux/nfs_mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Chuck Lever006ea732006-03-20 13:44:14 -050021#include "iostat.h"
David Howellsf7b422b2006-06-09 09:34:33 -040022#include "internal.h"
Chuck Lever006ea732006-03-20 13:44:14 -050023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define NFSDBG_FACILITY NFSDBG_PROC
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* A wrapper to handle the EJUKEBOX error message */
27static int
28nfs3_rpc_wrapper(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)
29{
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 do {
32 res = rpc_call_sync(clnt, msg, flags);
33 if (res != -EJUKEBOX)
34 break;
Matthew Wilcox150030b2007-12-06 16:24:39 -050035 schedule_timeout_killable(NFS_JUKEBOX_RETRY_TIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 res = -ERESTARTSYS;
Matthew Wilcox150030b2007-12-06 16:24:39 -050037 } while (!fatal_signal_pending(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 return res;
39}
40
Chuck Leverdead28d2006-03-20 13:44:23 -050041#define rpc_call_sync(clnt, msg, flags) nfs3_rpc_wrapper(clnt, msg, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43static int
Chuck Lever006ea732006-03-20 13:44:14 -050044nfs3_async_handle_jukebox(struct rpc_task *task, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 if (task->tk_status != -EJUKEBOX)
47 return 0;
Chuck Lever006ea732006-03-20 13:44:14 -050048 nfs_inc_stats(inode, NFSIOS_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 task->tk_status = 0;
50 rpc_restart_call(task);
51 rpc_delay(task, NFS_JUKEBOX_RETRY_TIME);
52 return 1;
53}
54
J. Bruce Fields03c21732006-01-03 09:55:48 +010055static int
56do_proc_get_root(struct rpc_clnt *client, struct nfs_fh *fhandle,
57 struct nfs_fsinfo *info)
58{
Chuck Leverdead28d2006-03-20 13:44:23 -050059 struct rpc_message msg = {
60 .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO],
61 .rpc_argp = fhandle,
62 .rpc_resp = info,
63 };
J. Bruce Fields03c21732006-01-03 09:55:48 +010064 int status;
65
Harvey Harrison3110ff82008-05-02 13:42:44 -070066 dprintk("%s: call fsinfo\n", __func__);
J. Bruce Fields03c21732006-01-03 09:55:48 +010067 nfs_fattr_init(info->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -050068 status = rpc_call_sync(client, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -070069 dprintk("%s: reply fsinfo: %d\n", __func__, status);
J. Bruce Fields03c21732006-01-03 09:55:48 +010070 if (!(info->fattr->valid & NFS_ATTR_FATTR)) {
Chuck Leverdead28d2006-03-20 13:44:23 -050071 msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR];
72 msg.rpc_resp = info->fattr;
73 status = rpc_call_sync(client, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -070074 dprintk("%s: reply getattr: %d\n", __func__, status);
J. Bruce Fields03c21732006-01-03 09:55:48 +010075 }
76 return status;
77}
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
David Howells54ceac42006-08-22 20:06:13 -040080 * Bare-bones access to getattr: this is for nfs_get_root/nfs_get_sb
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82static int
83nfs3_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
84 struct nfs_fsinfo *info)
85{
86 int status;
87
J. Bruce Fields03c21732006-01-03 09:55:48 +010088 status = do_proc_get_root(server->client, fhandle, info);
David Howells5006a762006-08-22 20:06:12 -040089 if (status && server->nfs_client->cl_rpcclient != server->client)
90 status = do_proc_get_root(server->nfs_client->cl_rpcclient, fhandle, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return status;
92}
93
94/*
95 * One function for each procedure in the NFS protocol.
96 */
97static int
98nfs3_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
99 struct nfs_fattr *fattr)
100{
Chuck Leverdead28d2006-03-20 13:44:23 -0500101 struct rpc_message msg = {
102 .rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR],
103 .rpc_argp = fhandle,
104 .rpc_resp = fattr,
105 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 int status;
107
108 dprintk("NFS call getattr\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400109 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500110 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 dprintk("NFS reply getattr: %d\n", status);
112 return status;
113}
114
115static int
116nfs3_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
117 struct iattr *sattr)
118{
119 struct inode *inode = dentry->d_inode;
120 struct nfs3_sattrargs arg = {
121 .fh = NFS_FH(inode),
122 .sattr = sattr,
123 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500124 struct rpc_message msg = {
125 .rpc_proc = &nfs3_procedures[NFS3PROC_SETATTR],
126 .rpc_argp = &arg,
127 .rpc_resp = fattr,
128 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int status;
130
131 dprintk("NFS call setattr\n");
Trond Myklebust659bfcd2008-06-10 19:39:41 -0400132 if (sattr->ia_valid & ATTR_FILE)
133 msg.rpc_cred = nfs_file_cred(sattr->ia_file);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400134 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500135 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebust65e43082005-08-16 11:49:44 -0400136 if (status == 0)
137 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 dprintk("NFS reply setattr: %d\n", status);
139 return status;
140}
141
142static int
143nfs3_proc_lookup(struct inode *dir, struct qstr *name,
144 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
145{
146 struct nfs_fattr dir_attr;
147 struct nfs3_diropargs arg = {
148 .fh = NFS_FH(dir),
149 .name = name->name,
150 .len = name->len
151 };
152 struct nfs3_diropres res = {
153 .dir_attr = &dir_attr,
154 .fh = fhandle,
155 .fattr = fattr
156 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500157 struct rpc_message msg = {
158 .rpc_proc = &nfs3_procedures[NFS3PROC_LOOKUP],
159 .rpc_argp = &arg,
160 .rpc_resp = &res,
161 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 int status;
163
164 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400165 nfs_fattr_init(&dir_attr);
166 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500167 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebust81c76882007-10-02 10:30:00 -0400168 nfs_refresh_inode(dir, &dir_attr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500169 if (status >= 0 && !(fattr->valid & NFS_ATTR_FATTR)) {
170 msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR];
171 msg.rpc_argp = fhandle;
172 msg.rpc_resp = fattr;
173 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 dprintk("NFS reply lookup: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return status;
177}
178
179static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry)
180{
181 struct nfs_fattr fattr;
182 struct nfs3_accessargs arg = {
183 .fh = NFS_FH(inode),
184 };
185 struct nfs3_accessres res = {
186 .fattr = &fattr,
187 };
188 struct rpc_message msg = {
189 .rpc_proc = &nfs3_procedures[NFS3PROC_ACCESS],
190 .rpc_argp = &arg,
191 .rpc_resp = &res,
Chuck Leverdead28d2006-03-20 13:44:23 -0500192 .rpc_cred = entry->cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 };
194 int mode = entry->mask;
195 int status;
196
197 dprintk("NFS call access\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (mode & MAY_READ)
200 arg.access |= NFS3_ACCESS_READ;
201 if (S_ISDIR(inode->i_mode)) {
202 if (mode & MAY_WRITE)
203 arg.access |= NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND | NFS3_ACCESS_DELETE;
204 if (mode & MAY_EXEC)
205 arg.access |= NFS3_ACCESS_LOOKUP;
206 } else {
207 if (mode & MAY_WRITE)
208 arg.access |= NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND;
209 if (mode & MAY_EXEC)
210 arg.access |= NFS3_ACCESS_EXECUTE;
211 }
Trond Myklebust0e574af2005-10-27 22:12:38 -0400212 nfs_fattr_init(&fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
214 nfs_refresh_inode(inode, &fattr);
215 if (status == 0) {
216 entry->mask = 0;
217 if (res.access & NFS3_ACCESS_READ)
218 entry->mask |= MAY_READ;
219 if (res.access & (NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND | NFS3_ACCESS_DELETE))
220 entry->mask |= MAY_WRITE;
221 if (res.access & (NFS3_ACCESS_LOOKUP|NFS3_ACCESS_EXECUTE))
222 entry->mask |= MAY_EXEC;
223 }
224 dprintk("NFS reply access: %d\n", status);
225 return status;
226}
227
228static int nfs3_proc_readlink(struct inode *inode, struct page *page,
229 unsigned int pgbase, unsigned int pglen)
230{
231 struct nfs_fattr fattr;
232 struct nfs3_readlinkargs args = {
233 .fh = NFS_FH(inode),
234 .pgbase = pgbase,
235 .pglen = pglen,
236 .pages = &page
237 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500238 struct rpc_message msg = {
239 .rpc_proc = &nfs3_procedures[NFS3PROC_READLINK],
240 .rpc_argp = &args,
241 .rpc_resp = &fattr,
242 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 int status;
244
245 dprintk("NFS call readlink\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400246 nfs_fattr_init(&fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500247 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 nfs_refresh_inode(inode, &fattr);
249 dprintk("NFS reply readlink: %d\n", status);
250 return status;
251}
252
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400253struct nfs3_createdata {
254 struct rpc_message msg;
255 union {
256 struct nfs3_createargs create;
257 struct nfs3_mkdirargs mkdir;
258 struct nfs3_symlinkargs symlink;
259 struct nfs3_mknodargs mknod;
260 } arg;
261 struct nfs3_diropres res;
262 struct nfs_fh fh;
263 struct nfs_fattr fattr;
264 struct nfs_fattr dir_attr;
265};
266
267static struct nfs3_createdata *nfs3_alloc_createdata(void)
268{
269 struct nfs3_createdata *data;
270
271 data = kzalloc(sizeof(*data), GFP_KERNEL);
272 if (data != NULL) {
273 data->msg.rpc_argp = &data->arg;
274 data->msg.rpc_resp = &data->res;
275 data->res.fh = &data->fh;
276 data->res.fattr = &data->fattr;
277 data->res.dir_attr = &data->dir_attr;
278 nfs_fattr_init(data->res.fattr);
279 nfs_fattr_init(data->res.dir_attr);
280 }
281 return data;
282}
283
284static int nfs3_do_create(struct inode *dir, struct dentry *dentry, struct nfs3_createdata *data)
285{
286 int status;
287
288 status = rpc_call_sync(NFS_CLIENT(dir), &data->msg, 0);
289 nfs_post_op_update_inode(dir, data->res.dir_attr);
290 if (status == 0)
291 status = nfs_instantiate(dentry, data->res.fh, data->res.fattr);
292 return status;
293}
294
295static void nfs3_free_createdata(struct nfs3_createdata *data)
296{
297 kfree(data);
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/*
301 * Create a regular file.
302 * For now, we don't implement O_EXCL.
303 */
304static int
305nfs3_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -0700306 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400308 struct nfs3_createdata *data;
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000309 mode_t mode = sattr->ia_mode;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400310 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 dprintk("NFS call create %s\n", dentry->d_name.name);
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400313
314 data = nfs3_alloc_createdata();
315 if (data == NULL)
316 goto out;
317
318 data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_CREATE];
319 data->arg.create.fh = NFS_FH(dir);
320 data->arg.create.name = dentry->d_name.name;
321 data->arg.create.len = dentry->d_name.len;
322 data->arg.create.sattr = sattr;
323
324 data->arg.create.createmode = NFS3_CREATE_UNCHECKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (flags & O_EXCL) {
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400326 data->arg.create.createmode = NFS3_CREATE_EXCLUSIVE;
327 data->arg.create.verifier[0] = jiffies;
328 data->arg.create.verifier[1] = current->pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000331 sattr->ia_mode &= ~current->fs->umask;
332
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400333 for (;;) {
334 status = nfs3_do_create(dir, dentry, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400336 if (status != -ENOTSUPP)
337 break;
338 /* If the server doesn't support the exclusive creation
339 * semantics, try again with simple 'guarded' mode. */
340 switch (data->arg.create.createmode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 case NFS3_CREATE_EXCLUSIVE:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400342 data->arg.create.createmode = NFS3_CREATE_GUARDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 break;
344
345 case NFS3_CREATE_GUARDED:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400346 data->arg.create.createmode = NFS3_CREATE_UNCHECKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 break;
348
349 case NFS3_CREATE_UNCHECKED:
350 goto out;
351 }
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400352 nfs_fattr_init(data->res.dir_attr);
353 nfs_fattr_init(data->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (status != 0)
357 goto out;
358
359 /* When we created the file with exclusive semantics, make
360 * sure we set the attributes afterwards. */
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400361 if (data->arg.create.createmode == NFS3_CREATE_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 dprintk("NFS call setattr (post-create)\n");
363
364 if (!(sattr->ia_valid & ATTR_ATIME_SET))
365 sattr->ia_valid |= ATTR_ATIME;
366 if (!(sattr->ia_valid & ATTR_MTIME_SET))
367 sattr->ia_valid |= ATTR_MTIME;
368
369 /* Note: we could use a guarded setattr here, but I'm
370 * not sure this buys us anything (and I'd have
371 * to revamp the NFSv3 XDR code) */
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400372 status = nfs3_proc_setattr(dentry, data->res.fattr, sattr);
373 nfs_post_op_update_inode(dentry->d_inode, data->res.fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 dprintk("NFS reply setattr (post-create): %d\n", status);
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400375 if (status != 0)
376 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000378 status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode);
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
386nfs3_proc_remove(struct inode *dir, struct qstr *name)
387{
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400388 struct nfs_removeargs arg = {
389 .fh = NFS_FH(dir),
390 .name.len = name->len,
391 .name.name = name->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400393 struct nfs_removeres res;
394 struct rpc_message msg = {
395 .rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE],
396 .rpc_argp = &arg,
397 .rpc_resp = &res,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 };
399 int status;
400
401 dprintk("NFS call remove %s\n", name->name);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400402 nfs_fattr_init(&res.dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400404 nfs_post_op_update_inode(dir, &res.dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 dprintk("NFS reply remove: %d\n", status);
406 return status;
407}
408
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400409static void
410nfs3_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 msg->rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
415static int
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400416nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400418 struct nfs_removeres *res;
419 if (nfs3_async_handle_jukebox(task, dir))
420 return 0;
421 res = task->tk_msg.rpc_resp;
422 nfs_post_op_update_inode(dir, &res->dir_attr);
423 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426static int
427nfs3_proc_rename(struct inode *old_dir, struct qstr *old_name,
428 struct inode *new_dir, struct qstr *new_name)
429{
430 struct nfs_fattr old_dir_attr, new_dir_attr;
431 struct nfs3_renameargs arg = {
432 .fromfh = NFS_FH(old_dir),
433 .fromname = old_name->name,
434 .fromlen = old_name->len,
435 .tofh = NFS_FH(new_dir),
436 .toname = new_name->name,
437 .tolen = new_name->len
438 };
439 struct nfs3_renameres res = {
440 .fromattr = &old_dir_attr,
441 .toattr = &new_dir_attr
442 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500443 struct rpc_message msg = {
444 .rpc_proc = &nfs3_procedures[NFS3PROC_RENAME],
445 .rpc_argp = &arg,
446 .rpc_resp = &res,
447 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int status;
449
450 dprintk("NFS call rename %s -> %s\n", old_name->name, new_name->name);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400451 nfs_fattr_init(&old_dir_attr);
452 nfs_fattr_init(&new_dir_attr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500453 status = rpc_call_sync(NFS_CLIENT(old_dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400454 nfs_post_op_update_inode(old_dir, &old_dir_attr);
455 nfs_post_op_update_inode(new_dir, &new_dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 dprintk("NFS reply rename: %d\n", status);
457 return status;
458}
459
460static int
461nfs3_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
462{
463 struct nfs_fattr dir_attr, fattr;
464 struct nfs3_linkargs arg = {
465 .fromfh = NFS_FH(inode),
466 .tofh = NFS_FH(dir),
467 .toname = name->name,
468 .tolen = name->len
469 };
470 struct nfs3_linkres res = {
471 .dir_attr = &dir_attr,
472 .fattr = &fattr
473 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500474 struct rpc_message msg = {
475 .rpc_proc = &nfs3_procedures[NFS3PROC_LINK],
476 .rpc_argp = &arg,
477 .rpc_resp = &res,
478 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 int status;
480
481 dprintk("NFS call link %s\n", name->name);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400482 nfs_fattr_init(&dir_attr);
483 nfs_fattr_init(&fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500484 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400485 nfs_post_op_update_inode(dir, &dir_attr);
486 nfs_post_op_update_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 dprintk("NFS reply link: %d\n", status);
488 return status;
489}
490
491static int
Chuck Lever94a6d752006-08-22 20:06:23 -0400492nfs3_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
493 unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400495 struct nfs3_createdata *data;
496 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Chuck Lever94a6d752006-08-22 20:06:23 -0400498 if (len > NFS3_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -0400500
Chuck Lever94a6d752006-08-22 20:06:23 -0400501 dprintk("NFS call symlink %s\n", dentry->d_name.name);
502
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400503 data = nfs3_alloc_createdata();
504 if (data == NULL)
Chuck Lever4f390c12006-08-22 20:06:22 -0400505 goto out;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400506 data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_SYMLINK];
507 data->arg.symlink.fromfh = NFS_FH(dir);
508 data->arg.symlink.fromname = dentry->d_name.name;
509 data->arg.symlink.fromlen = dentry->d_name.len;
510 data->arg.symlink.pages = &page;
511 data->arg.symlink.pathlen = len;
512 data->arg.symlink.sattr = sattr;
513
514 status = nfs3_do_create(dir, dentry, data);
515
516 nfs3_free_createdata(data);
Chuck Lever4f390c12006-08-22 20:06:22 -0400517out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 dprintk("NFS reply symlink: %d\n", status);
519 return status;
520}
521
522static int
523nfs3_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
524{
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400525 struct nfs3_createdata *data;
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000526 int mode = sattr->ia_mode;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400527 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 dprintk("NFS call mkdir %s\n", dentry->d_name.name);
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000530
531 sattr->ia_mode &= ~current->fs->umask;
532
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400533 data = nfs3_alloc_createdata();
534 if (data == NULL)
535 goto out;
536
537 data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_MKDIR];
538 data->arg.mkdir.fh = NFS_FH(dir);
539 data->arg.mkdir.name = dentry->d_name.name;
540 data->arg.mkdir.len = dentry->d_name.len;
541 data->arg.mkdir.sattr = sattr;
542
543 status = nfs3_do_create(dir, dentry, data);
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000544 if (status != 0)
545 goto out;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400546
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000547 status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode);
548out:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400549 nfs3_free_createdata(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 dprintk("NFS reply mkdir: %d\n", status);
551 return status;
552}
553
554static int
555nfs3_proc_rmdir(struct inode *dir, struct qstr *name)
556{
557 struct nfs_fattr dir_attr;
558 struct nfs3_diropargs arg = {
559 .fh = NFS_FH(dir),
560 .name = name->name,
561 .len = name->len
562 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500563 struct rpc_message msg = {
564 .rpc_proc = &nfs3_procedures[NFS3PROC_RMDIR],
565 .rpc_argp = &arg,
566 .rpc_resp = &dir_attr,
567 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int status;
569
570 dprintk("NFS call rmdir %s\n", name->name);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400571 nfs_fattr_init(&dir_attr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500572 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400573 nfs_post_op_update_inode(dir, &dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 dprintk("NFS reply rmdir: %d\n", status);
575 return status;
576}
577
578/*
579 * The READDIR implementation is somewhat hackish - we pass the user buffer
580 * to the encode function, which installs it in the receive iovec.
581 * The decode function itself doesn't perform any decoding, it just makes
582 * sure the reply is syntactically correct.
583 *
584 * Also note that this implementation handles both plain readdir and
585 * readdirplus.
586 */
587static int
588nfs3_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
589 u64 cookie, struct page *page, unsigned int count, int plus)
590{
591 struct inode *dir = dentry->d_inode;
592 struct nfs_fattr dir_attr;
Al Virobc4785c2006-10-19 23:28:51 -0700593 __be32 *verf = NFS_COOKIEVERF(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 struct nfs3_readdirargs arg = {
595 .fh = NFS_FH(dir),
596 .cookie = cookie,
597 .verf = {verf[0], verf[1]},
598 .plus = plus,
599 .count = count,
600 .pages = &page
601 };
602 struct nfs3_readdirres res = {
603 .dir_attr = &dir_attr,
604 .verf = verf,
605 .plus = plus
606 };
607 struct rpc_message msg = {
608 .rpc_proc = &nfs3_procedures[NFS3PROC_READDIR],
609 .rpc_argp = &arg,
610 .rpc_resp = &res,
611 .rpc_cred = cred
612 };
613 int status;
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (plus)
616 msg.rpc_proc = &nfs3_procedures[NFS3PROC_READDIRPLUS];
617
618 dprintk("NFS call readdir%s %d\n",
619 plus? "plus" : "", (unsigned int) cookie);
620
Trond Myklebust0e574af2005-10-27 22:12:38 -0400621 nfs_fattr_init(&dir_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustc4812992007-09-28 17:11:45 -0400623
624 nfs_invalidate_atime(dir);
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 nfs_refresh_inode(dir, &dir_attr);
627 dprintk("NFS reply readdir: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return status;
629}
630
631static int
632nfs3_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
633 dev_t rdev)
634{
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400635 struct nfs3_createdata *data;
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000636 mode_t mode = sattr->ia_mode;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400637 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 dprintk("NFS call mknod %s %u:%u\n", dentry->d_name.name,
640 MAJOR(rdev), MINOR(rdev));
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000641
642 sattr->ia_mode &= ~current->fs->umask;
643
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400644 data = nfs3_alloc_createdata();
645 if (data == NULL)
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000646 goto out;
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400647
648 data->msg.rpc_proc = &nfs3_procedures[NFS3PROC_MKNOD];
649 data->arg.mknod.fh = NFS_FH(dir);
650 data->arg.mknod.name = dentry->d_name.name;
651 data->arg.mknod.len = dentry->d_name.len;
652 data->arg.mknod.sattr = sattr;
653 data->arg.mknod.rdev = rdev;
654
655 switch (sattr->ia_mode & S_IFMT) {
656 case S_IFBLK:
657 data->arg.mknod.type = NF3BLK;
658 break;
659 case S_IFCHR:
660 data->arg.mknod.type = NF3CHR;
661 break;
662 case S_IFIFO:
663 data->arg.mknod.type = NF3FIFO;
664 break;
665 case S_IFSOCK:
666 data->arg.mknod.type = NF3SOCK;
667 break;
668 default:
669 status = -EINVAL;
670 goto out;
671 }
672
673 status = nfs3_do_create(dir, dentry, data);
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000674 if (status != 0)
675 goto out;
676 status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode);
677out:
Trond Myklebust0b4aae72008-06-20 17:00:23 -0400678 nfs3_free_createdata(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 dprintk("NFS reply mknod: %d\n", status);
680 return status;
681}
682
683static int
684nfs3_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
685 struct nfs_fsstat *stat)
686{
Chuck Leverdead28d2006-03-20 13:44:23 -0500687 struct rpc_message msg = {
688 .rpc_proc = &nfs3_procedures[NFS3PROC_FSSTAT],
689 .rpc_argp = fhandle,
690 .rpc_resp = stat,
691 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 int status;
693
694 dprintk("NFS call fsstat\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400695 nfs_fattr_init(stat->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500696 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 dprintk("NFS reply statfs: %d\n", status);
698 return status;
699}
700
701static int
EG Keizer37ca8f52008-08-19 16:34:36 -0400702do_proc_fsinfo(struct rpc_clnt *client, struct nfs_fh *fhandle,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 struct nfs_fsinfo *info)
704{
Chuck Leverdead28d2006-03-20 13:44:23 -0500705 struct rpc_message msg = {
706 .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO],
707 .rpc_argp = fhandle,
708 .rpc_resp = info,
709 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int status;
711
712 dprintk("NFS call fsinfo\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400713 nfs_fattr_init(info->fattr);
EG Keizer37ca8f52008-08-19 16:34:36 -0400714 status = rpc_call_sync(client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 dprintk("NFS reply fsinfo: %d\n", status);
716 return status;
717}
718
EG Keizer37ca8f52008-08-19 16:34:36 -0400719/*
720 * Bare-bones access to fsinfo: this is for nfs_get_root/nfs_get_sb via
721 * nfs_create_server
722 */
723static int
724nfs3_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
725 struct nfs_fsinfo *info)
726{
727 int status;
728
729 status = do_proc_fsinfo(server->client, fhandle, info);
730 if (status && server->nfs_client->cl_rpcclient != server->client)
731 status = do_proc_fsinfo(server->nfs_client->cl_rpcclient, fhandle, info);
732 return status;
733}
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735static int
736nfs3_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
737 struct nfs_pathconf *info)
738{
Chuck Leverdead28d2006-03-20 13:44:23 -0500739 struct rpc_message msg = {
740 .rpc_proc = &nfs3_procedures[NFS3PROC_PATHCONF],
741 .rpc_argp = fhandle,
742 .rpc_resp = info,
743 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 int status;
745
746 dprintk("NFS call pathconf\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400747 nfs_fattr_init(info->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500748 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 dprintk("NFS reply pathconf: %d\n", status);
750 return status;
751}
752
Trond Myklebustec06c092006-03-20 13:44:27 -0500753static int nfs3_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Chuck Lever006ea732006-03-20 13:44:14 -0500755 if (nfs3_async_handle_jukebox(task, data->inode))
Trond Myklebustec06c092006-03-20 13:44:27 -0500756 return -EAGAIN;
Trond Myklebust8850df92007-09-28 17:20:07 -0400757
758 nfs_invalidate_atime(data->inode);
759 nfs_refresh_inode(data->inode, &data->fattr);
Trond Myklebustec06c092006-03-20 13:44:27 -0500760 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400763static void nfs3_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400765 msg->rpc_proc = &nfs3_procedures[NFS3PROC_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Trond Myklebust788e7a82006-03-20 13:44:27 -0500768static int nfs3_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Chuck Lever006ea732006-03-20 13:44:14 -0500770 if (nfs3_async_handle_jukebox(task, data->inode))
Trond Myklebust788e7a82006-03-20 13:44:27 -0500771 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (task->tk_status >= 0)
Trond Myklebust70ca8852007-09-30 15:21:24 -0400773 nfs_post_op_update_inode_force_wcc(data->inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500774 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400777static void nfs3_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400779 msg->rpc_proc = &nfs3_procedures[NFS3PROC_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Trond Myklebust788e7a82006-03-20 13:44:27 -0500782static int nfs3_commit_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Chuck Lever006ea732006-03-20 13:44:14 -0500784 if (nfs3_async_handle_jukebox(task, data->inode))
Trond Myklebust788e7a82006-03-20 13:44:27 -0500785 return -EAGAIN;
Trond Myklebust9e08a3c2007-10-08 14:10:31 -0400786 nfs_refresh_inode(data->inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500787 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400790static void nfs3_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400792 msg->rpc_proc = &nfs3_procedures[NFS3PROC_COMMIT];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795static int
796nfs3_proc_lock(struct file *filp, int cmd, struct file_lock *fl)
797{
Chuck Lever1093a602008-01-11 17:09:59 -0500798 struct inode *inode = filp->f_path.dentry->d_inode;
799
800 return nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
David Howells509de812006-08-22 20:06:11 -0400803const struct nfs_rpc_ops nfs_v3_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 .version = 3, /* protocol version */
805 .dentry_ops = &nfs_dentry_operations,
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000806 .dir_inode_ops = &nfs3_dir_inode_operations,
807 .file_inode_ops = &nfs3_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 .getroot = nfs3_proc_get_root,
809 .getattr = nfs3_proc_getattr,
810 .setattr = nfs3_proc_setattr,
811 .lookup = nfs3_proc_lookup,
812 .access = nfs3_proc_access,
813 .readlink = nfs3_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 .create = nfs3_proc_create,
815 .remove = nfs3_proc_remove,
816 .unlink_setup = nfs3_proc_unlink_setup,
817 .unlink_done = nfs3_proc_unlink_done,
818 .rename = nfs3_proc_rename,
819 .link = nfs3_proc_link,
820 .symlink = nfs3_proc_symlink,
821 .mkdir = nfs3_proc_mkdir,
822 .rmdir = nfs3_proc_rmdir,
823 .readdir = nfs3_proc_readdir,
824 .mknod = nfs3_proc_mknod,
825 .statfs = nfs3_proc_statfs,
826 .fsinfo = nfs3_proc_fsinfo,
827 .pathconf = nfs3_proc_pathconf,
828 .decode_dirent = nfs3_decode_dirent,
829 .read_setup = nfs3_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -0500830 .read_done = nfs3_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 .write_setup = nfs3_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500832 .write_done = nfs3_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 .commit_setup = nfs3_proc_commit_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500834 .commit_done = nfs3_commit_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 .lock = nfs3_proc_lock,
Andreas Gruenbacher5c6a9f72005-06-22 17:16:27 +0000836 .clear_acl_cache = nfs3_forget_cached_acls,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837};