blob: c752d944fe9e93e2cf1759b49e6c671a1caaa7b7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/proc.c
3 *
4 * Copyright (C) 1992, 1993, 1994 Rick Sladkey
5 *
6 * OS-independent nfs remote procedure call functions
7 *
8 * Tuned by Alan Cox <A.Cox@swansea.ac.uk> for >3K buffers
9 * so at last we can have decent(ish) throughput off a
10 * Sun server.
11 *
12 * Coding optimized and cleaned up by Florian La Roche.
13 * Note: Error returns are optimized for NFS_OK, which isn't translated via
14 * nfs_stat_to_errno(), but happens to be already the right return code.
15 *
16 * Also, the code currently doesn't check the size of the packet, when
17 * it decodes the packet.
18 *
19 * Feel free to fix it and mail me the diffs if it worries you.
20 *
21 * Completely rewritten to support the new RPC call interface;
22 * rewrote and moved the entire XDR stuff to xdr.c
23 * --Olaf Kirch June 1996
24 *
25 * The code below initializes all auto variables explicitly, otherwise
26 * it will fail to work as a module (gcc generates a memset call for an
27 * incomplete struct).
28 */
29
30#include <linux/types.h>
31#include <linux/param.h>
32#include <linux/slab.h>
33#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>
David Howellsf7b422b2006-06-09 09:34:33 -040045#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#define NFSDBG_FACILITY NFSDBG_PROC
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
Jeff Layton97cefcc2010-01-08 12:17:21 -050050 * wrapper to handle the -EKEYEXPIRED error message. This should generally
51 * only happen if using krb5 auth and a user's TGT expires. NFSv2 doesn't
52 * support the NFSERR_JUKEBOX error code, but we handle this situation in the
53 * same way that we handle that error with NFSv3.
54 */
55static int
56nfs_rpc_wrapper(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)
57{
58 int res;
59 do {
60 res = rpc_call_sync(clnt, msg, flags);
61 if (res != -EKEYEXPIRED)
62 break;
63 schedule_timeout_killable(NFS_JUKEBOX_RETRY_TIME);
64 res = -ERESTARTSYS;
65 } while (!fatal_signal_pending(current));
66 return res;
67}
68
69#define rpc_call_sync(clnt, msg, flags) nfs_rpc_wrapper(clnt, msg, flags)
70
71static int
72nfs_async_handle_expired_key(struct rpc_task *task)
73{
74 if (task->tk_status != -EKEYEXPIRED)
75 return 0;
76 task->tk_status = 0;
77 rpc_restart_call(task);
78 rpc_delay(task, NFS_JUKEBOX_RETRY_TIME);
79 return 1;
80}
81
82/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * Bare-bones access to getattr: this is for nfs_read_super.
84 */
85static int
86nfs_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
87 struct nfs_fsinfo *info)
88{
89 struct nfs_fattr *fattr = info->fattr;
90 struct nfs2_fsstat fsinfo;
Chuck Leverdead28d2006-03-20 13:44:23 -050091 struct rpc_message msg = {
92 .rpc_proc = &nfs_procedures[NFSPROC_GETATTR],
93 .rpc_argp = fhandle,
94 .rpc_resp = fattr,
95 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 int status;
97
Harvey Harrison3110ff82008-05-02 13:42:44 -070098 dprintk("%s: call getattr\n", __func__);
Trond Myklebust0e574af2005-10-27 22:12:38 -040099 nfs_fattr_init(fattr);
EG Keizer37ca8f52008-08-19 16:34:36 -0400100 status = rpc_call_sync(server->client, &msg, 0);
101 /* Retry with default authentication if different */
102 if (status && server->nfs_client->cl_rpcclient != server->client)
103 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700104 dprintk("%s: reply getattr: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (status)
106 return status;
Harvey Harrison3110ff82008-05-02 13:42:44 -0700107 dprintk("%s: call statfs\n", __func__);
Chuck Leverdead28d2006-03-20 13:44:23 -0500108 msg.rpc_proc = &nfs_procedures[NFSPROC_STATFS];
109 msg.rpc_resp = &fsinfo;
EG Keizer37ca8f52008-08-19 16:34:36 -0400110 status = rpc_call_sync(server->client, &msg, 0);
111 /* Retry with default authentication if different */
112 if (status && server->nfs_client->cl_rpcclient != server->client)
113 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700114 dprintk("%s: reply statfs: %d\n", __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (status)
116 return status;
117 info->rtmax = NFS_MAXDATA;
118 info->rtpref = fsinfo.tsize;
119 info->rtmult = fsinfo.bsize;
120 info->wtmax = NFS_MAXDATA;
121 info->wtpref = fsinfo.tsize;
122 info->wtmult = fsinfo.bsize;
123 info->dtpref = fsinfo.tsize;
124 info->maxfilesize = 0x7FFFFFFF;
125 info->lease_time = 0;
126 return 0;
127}
128
129/*
130 * One function for each procedure in the NFS protocol.
131 */
132static int
133nfs_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
134 struct nfs_fattr *fattr)
135{
Chuck Leverdead28d2006-03-20 13:44:23 -0500136 struct rpc_message msg = {
137 .rpc_proc = &nfs_procedures[NFSPROC_GETATTR],
138 .rpc_argp = fhandle,
139 .rpc_resp = fattr,
140 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 int status;
142
143 dprintk("NFS call getattr\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400144 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500145 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 dprintk("NFS reply getattr: %d\n", status);
147 return status;
148}
149
150static int
151nfs_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
152 struct iattr *sattr)
153{
154 struct inode *inode = dentry->d_inode;
155 struct nfs_sattrargs arg = {
156 .fh = NFS_FH(inode),
157 .sattr = sattr
158 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500159 struct rpc_message msg = {
160 .rpc_proc = &nfs_procedures[NFSPROC_SETATTR],
161 .rpc_argp = &arg,
162 .rpc_resp = fattr,
163 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 int status;
165
Trond Myklebustcf3fff52006-01-03 09:55:53 +0100166 /* Mask out the non-modebit related stuff from attr->ia_mode */
167 sattr->ia_mode &= S_IALLUGO;
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 dprintk("NFS call setattr\n");
Trond Myklebust659bfcd2008-06-10 19:39:41 -0400170 if (sattr->ia_valid & ATTR_FILE)
171 msg.rpc_cred = nfs_file_cred(sattr->ia_file);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400172 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500173 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebust65e43082005-08-16 11:49:44 -0400174 if (status == 0)
175 nfs_setattr_update_inode(inode, sattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 dprintk("NFS reply setattr: %d\n", status);
177 return status;
178}
179
180static int
181nfs_proc_lookup(struct inode *dir, struct qstr *name,
182 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
183{
184 struct nfs_diropargs arg = {
185 .fh = NFS_FH(dir),
186 .name = name->name,
187 .len = name->len
188 };
189 struct nfs_diropok res = {
190 .fh = fhandle,
191 .fattr = fattr
192 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500193 struct rpc_message msg = {
194 .rpc_proc = &nfs_procedures[NFSPROC_LOOKUP],
195 .rpc_argp = &arg,
196 .rpc_resp = &res,
197 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int status;
199
200 dprintk("NFS call lookup %s\n", name->name);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400201 nfs_fattr_init(fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500202 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 dprintk("NFS reply lookup: %d\n", status);
204 return status;
205}
206
207static int nfs_proc_readlink(struct inode *inode, struct page *page,
208 unsigned int pgbase, unsigned int pglen)
209{
210 struct nfs_readlinkargs args = {
211 .fh = NFS_FH(inode),
212 .pgbase = pgbase,
213 .pglen = pglen,
214 .pages = &page
215 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500216 struct rpc_message msg = {
217 .rpc_proc = &nfs_procedures[NFSPROC_READLINK],
218 .rpc_argp = &args,
219 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 int status;
221
222 dprintk("NFS call readlink\n");
Chuck Leverdead28d2006-03-20 13:44:23 -0500223 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 dprintk("NFS reply readlink: %d\n", status);
225 return status;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static int
229nfs_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
Trond Myklebust02a913a2005-10-18 14:20:17 -0700230 int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct nfs_fh fhandle;
233 struct nfs_fattr fattr;
234 struct nfs_createargs arg = {
235 .fh = NFS_FH(dir),
236 .name = dentry->d_name.name,
237 .len = dentry->d_name.len,
238 .sattr = sattr
239 };
240 struct nfs_diropok res = {
241 .fh = &fhandle,
242 .fattr = &fattr
243 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500244 struct rpc_message msg = {
245 .rpc_proc = &nfs_procedures[NFSPROC_CREATE],
246 .rpc_argp = &arg,
247 .rpc_resp = &res,
248 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 int status;
250
Trond Myklebust0e574af2005-10-27 22:12:38 -0400251 nfs_fattr_init(&fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 dprintk("NFS call create %s\n", dentry->d_name.name);
Chuck Leverdead28d2006-03-20 13:44:23 -0500253 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustbad2a522007-10-20 13:07:21 -0400254 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (status == 0)
256 status = nfs_instantiate(dentry, &fhandle, &fattr);
257 dprintk("NFS reply create: %d\n", status);
258 return status;
259}
260
261/*
262 * In NFSv2, mknod is grafted onto the create call.
263 */
264static int
265nfs_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
266 dev_t rdev)
267{
268 struct nfs_fh fhandle;
269 struct nfs_fattr fattr;
270 struct nfs_createargs arg = {
271 .fh = NFS_FH(dir),
272 .name = dentry->d_name.name,
273 .len = dentry->d_name.len,
274 .sattr = sattr
275 };
276 struct nfs_diropok res = {
277 .fh = &fhandle,
278 .fattr = &fattr
279 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500280 struct rpc_message msg = {
281 .rpc_proc = &nfs_procedures[NFSPROC_CREATE],
282 .rpc_argp = &arg,
283 .rpc_resp = &res,
284 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 int status, mode;
286
287 dprintk("NFS call mknod %s\n", dentry->d_name.name);
288
289 mode = sattr->ia_mode;
290 if (S_ISFIFO(mode)) {
291 sattr->ia_mode = (mode & ~S_IFMT) | S_IFCHR;
292 sattr->ia_valid &= ~ATTR_SIZE;
293 } else if (S_ISCHR(mode) || S_ISBLK(mode)) {
294 sattr->ia_valid |= ATTR_SIZE;
295 sattr->ia_size = new_encode_dev(rdev);/* get out your barf bag */
296 }
297
Trond Myklebust0e574af2005-10-27 22:12:38 -0400298 nfs_fattr_init(&fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500299 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400300 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 if (status == -EINVAL && S_ISFIFO(mode)) {
303 sattr->ia_mode = mode;
Trond Myklebust0e574af2005-10-27 22:12:38 -0400304 nfs_fattr_init(&fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500305 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307 if (status == 0)
308 status = nfs_instantiate(dentry, &fhandle, &fattr);
309 dprintk("NFS reply mknod: %d\n", status);
310 return status;
311}
312
313static int
314nfs_proc_remove(struct inode *dir, struct qstr *name)
315{
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400316 struct nfs_removeargs arg = {
317 .fh = NFS_FH(dir),
318 .name.len = name->len,
319 .name.name = name->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 };
Trond Myklebust4fdc17b2007-07-14 15:39:57 -0400321 struct rpc_message msg = {
322 .rpc_proc = &nfs_procedures[NFSPROC_REMOVE],
323 .rpc_argp = &arg,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 };
325 int status;
326
327 dprintk("NFS call remove %s\n", name->name);
328 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400329 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 dprintk("NFS reply remove: %d\n", status);
332 return status;
333}
334
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400335static void
336nfs_proc_unlink_setup(struct rpc_message *msg, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 msg->rpc_proc = &nfs_procedures[NFSPROC_REMOVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400341static int nfs_proc_unlink_done(struct rpc_task *task, struct inode *dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Jeff Layton97cefcc2010-01-08 12:17:21 -0500343 if (nfs_async_handle_expired_key(task))
344 return 0;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400345 nfs_mark_for_revalidate(dir);
346 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
349static int
350nfs_proc_rename(struct inode *old_dir, struct qstr *old_name,
351 struct inode *new_dir, struct qstr *new_name)
352{
353 struct nfs_renameargs arg = {
354 .fromfh = NFS_FH(old_dir),
355 .fromname = old_name->name,
356 .fromlen = old_name->len,
357 .tofh = NFS_FH(new_dir),
358 .toname = new_name->name,
359 .tolen = new_name->len
360 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500361 struct rpc_message msg = {
362 .rpc_proc = &nfs_procedures[NFSPROC_RENAME],
363 .rpc_argp = &arg,
364 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int status;
366
367 dprintk("NFS call rename %s -> %s\n", old_name->name, new_name->name);
Chuck Leverdead28d2006-03-20 13:44:23 -0500368 status = rpc_call_sync(NFS_CLIENT(old_dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400369 nfs_mark_for_revalidate(old_dir);
370 nfs_mark_for_revalidate(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 dprintk("NFS reply rename: %d\n", status);
372 return status;
373}
374
375static int
376nfs_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
377{
378 struct nfs_linkargs arg = {
379 .fromfh = NFS_FH(inode),
380 .tofh = NFS_FH(dir),
381 .toname = name->name,
382 .tolen = name->len
383 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500384 struct rpc_message msg = {
385 .rpc_proc = &nfs_procedures[NFSPROC_LINK],
386 .rpc_argp = &arg,
387 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 int status;
389
390 dprintk("NFS call link %s\n", name->name);
Chuck Leverdead28d2006-03-20 13:44:23 -0500391 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
Trond Myklebust5ba7cc42005-12-03 15:20:17 -0500392 nfs_mark_for_revalidate(inode);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400393 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 dprintk("NFS reply link: %d\n", status);
395 return status;
396}
397
398static int
Chuck Lever94a6d752006-08-22 20:06:23 -0400399nfs_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
400 unsigned int len, struct iattr *sattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Chuck Lever4f390c12006-08-22 20:06:22 -0400402 struct nfs_fh fhandle;
403 struct nfs_fattr fattr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct nfs_symlinkargs arg = {
405 .fromfh = NFS_FH(dir),
Chuck Lever4f390c12006-08-22 20:06:22 -0400406 .fromname = dentry->d_name.name,
407 .fromlen = dentry->d_name.len,
Chuck Lever94a6d752006-08-22 20:06:23 -0400408 .pages = &page,
409 .pathlen = len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 .sattr = sattr
411 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500412 struct rpc_message msg = {
413 .rpc_proc = &nfs_procedures[NFSPROC_SYMLINK],
414 .rpc_argp = &arg,
415 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 int status;
417
Chuck Lever94a6d752006-08-22 20:06:23 -0400418 if (len > NFS2_MAXPATHLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 return -ENAMETOOLONG;
Chuck Lever4f390c12006-08-22 20:06:22 -0400420
Chuck Lever94a6d752006-08-22 20:06:23 -0400421 dprintk("NFS call symlink %s\n", dentry->d_name.name);
422
Chuck Leverdead28d2006-03-20 13:44:23 -0500423 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400424 nfs_mark_for_revalidate(dir);
Chuck Lever4f390c12006-08-22 20:06:22 -0400425
426 /*
427 * V2 SYMLINK requests don't return any attributes. Setting the
428 * filehandle size to zero indicates to nfs_instantiate that it
429 * should fill in the data with a LOOKUP call on the wire.
430 */
431 if (status == 0) {
432 nfs_fattr_init(&fattr);
433 fhandle.size = 0;
434 status = nfs_instantiate(dentry, &fhandle, &fattr);
435 }
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 dprintk("NFS reply symlink: %d\n", status);
438 return status;
439}
440
441static int
442nfs_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
443{
444 struct nfs_fh fhandle;
445 struct nfs_fattr fattr;
446 struct nfs_createargs arg = {
447 .fh = NFS_FH(dir),
448 .name = dentry->d_name.name,
449 .len = dentry->d_name.len,
450 .sattr = sattr
451 };
452 struct nfs_diropok res = {
453 .fh = &fhandle,
454 .fattr = &fattr
455 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500456 struct rpc_message msg = {
457 .rpc_proc = &nfs_procedures[NFSPROC_MKDIR],
458 .rpc_argp = &arg,
459 .rpc_resp = &res,
460 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int status;
462
463 dprintk("NFS call mkdir %s\n", dentry->d_name.name);
Trond Myklebust0e574af2005-10-27 22:12:38 -0400464 nfs_fattr_init(&fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500465 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400466 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (status == 0)
468 status = nfs_instantiate(dentry, &fhandle, &fattr);
469 dprintk("NFS reply mkdir: %d\n", status);
470 return status;
471}
472
473static int
474nfs_proc_rmdir(struct inode *dir, struct qstr *name)
475{
476 struct nfs_diropargs arg = {
477 .fh = NFS_FH(dir),
478 .name = name->name,
479 .len = name->len
480 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500481 struct rpc_message msg = {
482 .rpc_proc = &nfs_procedures[NFSPROC_RMDIR],
483 .rpc_argp = &arg,
484 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 int status;
486
487 dprintk("NFS call rmdir %s\n", name->name);
Chuck Leverdead28d2006-03-20 13:44:23 -0500488 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
Trond Myklebustdecf4912005-10-27 22:12:39 -0400489 nfs_mark_for_revalidate(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 dprintk("NFS reply rmdir: %d\n", status);
491 return status;
492}
493
494/*
495 * The READDIR implementation is somewhat hackish - we pass a temporary
496 * buffer to the encode function, which installs it in the receive
497 * the receive iovec. The decode function just parses the reply to make
498 * sure it is syntactically correct; the entries itself are decoded
499 * from nfs_readdir by calling the decode_entry function directly.
500 */
501static int
502nfs_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
503 u64 cookie, struct page *page, unsigned int count, int plus)
504{
505 struct inode *dir = dentry->d_inode;
506 struct nfs_readdirargs arg = {
507 .fh = NFS_FH(dir),
508 .cookie = cookie,
509 .count = count,
Chuck Leverdead28d2006-03-20 13:44:23 -0500510 .pages = &page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 };
512 struct rpc_message msg = {
513 .rpc_proc = &nfs_procedures[NFSPROC_READDIR],
514 .rpc_argp = &arg,
Chuck Leverdead28d2006-03-20 13:44:23 -0500515 .rpc_cred = cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 };
517 int status;
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 dprintk("NFS call readdir %d\n", (unsigned int)cookie);
520 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
521
Trond Myklebustc4812992007-09-28 17:11:45 -0400522 nfs_invalidate_atime(dir);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 dprintk("NFS reply readdir: %d\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return status;
526}
527
528static int
529nfs_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
530 struct nfs_fsstat *stat)
531{
532 struct nfs2_fsstat fsinfo;
Chuck Leverdead28d2006-03-20 13:44:23 -0500533 struct rpc_message msg = {
534 .rpc_proc = &nfs_procedures[NFSPROC_STATFS],
535 .rpc_argp = fhandle,
536 .rpc_resp = &fsinfo,
537 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 int status;
539
540 dprintk("NFS call statfs\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400541 nfs_fattr_init(stat->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500542 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 dprintk("NFS reply statfs: %d\n", status);
544 if (status)
545 goto out;
546 stat->tbytes = (u64)fsinfo.blocks * fsinfo.bsize;
547 stat->fbytes = (u64)fsinfo.bfree * fsinfo.bsize;
548 stat->abytes = (u64)fsinfo.bavail * fsinfo.bsize;
549 stat->tfiles = 0;
550 stat->ffiles = 0;
551 stat->afiles = 0;
552out:
553 return status;
554}
555
556static int
557nfs_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
558 struct nfs_fsinfo *info)
559{
560 struct nfs2_fsstat fsinfo;
Chuck Leverdead28d2006-03-20 13:44:23 -0500561 struct rpc_message msg = {
562 .rpc_proc = &nfs_procedures[NFSPROC_STATFS],
563 .rpc_argp = fhandle,
564 .rpc_resp = &fsinfo,
565 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 int status;
567
568 dprintk("NFS call fsinfo\n");
Trond Myklebust0e574af2005-10-27 22:12:38 -0400569 nfs_fattr_init(info->fattr);
Chuck Leverdead28d2006-03-20 13:44:23 -0500570 status = rpc_call_sync(server->client, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 dprintk("NFS reply fsinfo: %d\n", status);
572 if (status)
573 goto out;
574 info->rtmax = NFS_MAXDATA;
575 info->rtpref = fsinfo.tsize;
576 info->rtmult = fsinfo.bsize;
577 info->wtmax = NFS_MAXDATA;
578 info->wtpref = fsinfo.tsize;
579 info->wtmult = fsinfo.bsize;
580 info->dtpref = fsinfo.tsize;
581 info->maxfilesize = 0x7FFFFFFF;
582 info->lease_time = 0;
583out:
584 return status;
585}
586
587static int
588nfs_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
589 struct nfs_pathconf *info)
590{
591 info->max_link = 0;
592 info->max_namelen = NFS2_MAXNAMLEN;
593 return 0;
594}
595
Trond Myklebustec06c092006-03-20 13:44:27 -0500596static int nfs_read_done(struct rpc_task *task, struct nfs_read_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Jeff Layton97cefcc2010-01-08 12:17:21 -0500598 if (nfs_async_handle_expired_key(task))
599 return -EAGAIN;
600
Trond Myklebust8850df92007-09-28 17:20:07 -0400601 nfs_invalidate_atime(data->inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (task->tk_status >= 0) {
603 nfs_refresh_inode(data->inode, data->res.fattr);
604 /* Emulate the eof flag, which isn't normally needed in NFSv2
605 * as it is guaranteed to always return the file attributes
606 */
607 if (data->args.offset + data->args.count >= data->res.fattr->size)
608 data->res.eof = 1;
609 }
Trond Myklebustec06c092006-03-20 13:44:27 -0500610 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400613static void nfs_proc_read_setup(struct nfs_read_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400615 msg->rpc_proc = &nfs_procedures[NFSPROC_READ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Trond Myklebust788e7a82006-03-20 13:44:27 -0500618static int nfs_write_done(struct rpc_task *task, struct nfs_write_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Jeff Layton97cefcc2010-01-08 12:17:21 -0500620 if (nfs_async_handle_expired_key(task))
621 return -EAGAIN;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (task->tk_status >= 0)
Trond Myklebust70ca8852007-09-30 15:21:24 -0400624 nfs_post_op_update_inode_force_wcc(data->inode, data->res.fattr);
Trond Myklebust788e7a82006-03-20 13:44:27 -0500625 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400628static void nfs_proc_write_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /* Note: NFSv2 ignores @stable and always uses NFS_FILE_SYNC */
631 data->args.stable = NFS_FILE_SYNC;
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400632 msg->rpc_proc = &nfs_procedures[NFSPROC_WRITE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635static void
Trond Myklebustbdc7f022007-07-14 15:40:00 -0400636nfs_proc_commit_setup(struct nfs_write_data *data, struct rpc_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 BUG();
639}
640
641static int
642nfs_proc_lock(struct file *filp, int cmd, struct file_lock *fl)
643{
Chuck Lever1093a602008-01-11 17:09:59 -0500644 struct inode *inode = filp->f_path.dentry->d_inode;
645
646 return nlmclnt_proc(NFS_SERVER(inode)->nlm_host, cmd, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
Trond Myklebust21162712008-05-20 19:34:39 -0400649/* Helper functions for NFS lock bounds checking */
650#define NFS_LOCK32_OFFSET_MAX ((__s32)0x7fffffffUL)
651static int nfs_lock_check_bounds(const struct file_lock *fl)
652{
653 __s32 start, end;
654
655 start = (__s32)fl->fl_start;
656 if ((loff_t)start != fl->fl_start)
657 goto out_einval;
658
659 if (fl->fl_end != OFFSET_MAX) {
660 end = (__s32)fl->fl_end;
661 if ((loff_t)end != fl->fl_end)
662 goto out_einval;
663 } else
664 end = NFS_LOCK32_OFFSET_MAX;
665
666 if (start < 0 || start > end)
667 goto out_einval;
668 return 0;
669out_einval:
670 return -EINVAL;
671}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
David Howells509de812006-08-22 20:06:11 -0400673const struct nfs_rpc_ops nfs_v2_clientops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 .version = 2, /* protocol version */
675 .dentry_ops = &nfs_dentry_operations,
676 .dir_inode_ops = &nfs_dir_inode_operations,
J. Bruce Fields92cfc622005-06-22 17:16:22 +0000677 .file_inode_ops = &nfs_file_inode_operations,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 .getroot = nfs_proc_get_root,
679 .getattr = nfs_proc_getattr,
680 .setattr = nfs_proc_setattr,
681 .lookup = nfs_proc_lookup,
682 .access = NULL, /* access */
683 .readlink = nfs_proc_readlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 .create = nfs_proc_create,
685 .remove = nfs_proc_remove,
686 .unlink_setup = nfs_proc_unlink_setup,
687 .unlink_done = nfs_proc_unlink_done,
688 .rename = nfs_proc_rename,
689 .link = nfs_proc_link,
690 .symlink = nfs_proc_symlink,
691 .mkdir = nfs_proc_mkdir,
692 .rmdir = nfs_proc_rmdir,
693 .readdir = nfs_proc_readdir,
694 .mknod = nfs_proc_mknod,
695 .statfs = nfs_proc_statfs,
696 .fsinfo = nfs_proc_fsinfo,
697 .pathconf = nfs_proc_pathconf,
698 .decode_dirent = nfs_decode_dirent,
699 .read_setup = nfs_proc_read_setup,
Trond Myklebustec06c092006-03-20 13:44:27 -0500700 .read_done = nfs_read_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 .write_setup = nfs_proc_write_setup,
Trond Myklebust788e7a82006-03-20 13:44:27 -0500702 .write_done = nfs_write_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 .commit_setup = nfs_proc_commit_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 .lock = nfs_proc_lock,
Trond Myklebust21162712008-05-20 19:34:39 -0400705 .lock_check_bounds = nfs_lock_check_bounds,
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400706 .close_context = nfs_close_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707};