NFS4: on a O_EXCL OPEN make sure SETATTR sets the fields holding the verifier
[deliverable/linux.git] / fs / nfs / nfs3proc.c
CommitLineData
1da177e4
LT
1/*
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>
b7fa0554 19#include <linux/nfs_mount.h>
1da177e4 20
006ea73e 21#include "iostat.h"
f7b422b1 22#include "internal.h"
006ea73e 23
1da177e4
LT
24#define NFSDBG_FACILITY NFSDBG_PROC
25
1da177e4
LT
26/* A wrapper to handle the EJUKEBOX error message */
27static int
28nfs3_rpc_wrapper(struct rpc_clnt *clnt, struct rpc_message *msg, int flags)
29{
30 sigset_t oldset;
31 int res;
32 rpc_clnt_sigmask(clnt, &oldset);
33 do {
34 res = rpc_call_sync(clnt, msg, flags);
35 if (res != -EJUKEBOX)
36 break;
041e0e3b 37 schedule_timeout_interruptible(NFS_JUKEBOX_RETRY_TIME);
1da177e4
LT
38 res = -ERESTARTSYS;
39 } while (!signalled());
40 rpc_clnt_sigunmask(clnt, &oldset);
41 return res;
42}
43
dead28da 44#define rpc_call_sync(clnt, msg, flags) nfs3_rpc_wrapper(clnt, msg, flags)
1da177e4
LT
45
46static int
006ea73e 47nfs3_async_handle_jukebox(struct rpc_task *task, struct inode *inode)
1da177e4
LT
48{
49 if (task->tk_status != -EJUKEBOX)
50 return 0;
006ea73e 51 nfs_inc_stats(inode, NFSIOS_DELAY);
1da177e4
LT
52 task->tk_status = 0;
53 rpc_restart_call(task);
54 rpc_delay(task, NFS_JUKEBOX_RETRY_TIME);
55 return 1;
56}
57
1da177e4 58static int
03c21733
BF
59do_proc_get_root(struct rpc_clnt *client, struct nfs_fh *fhandle,
60 struct nfs_fsinfo *info)
1da177e4 61{
dead28da
CL
62 struct rpc_message msg = {
63 .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO],
64 .rpc_argp = fhandle,
65 .rpc_resp = info,
66 };
1da177e4
LT
67 int status;
68
69 dprintk("%s: call fsinfo\n", __FUNCTION__);
0e574af1 70 nfs_fattr_init(info->fattr);
dead28da 71 status = rpc_call_sync(client, &msg, 0);
1da177e4
LT
72 dprintk("%s: reply fsinfo: %d\n", __FUNCTION__, status);
73 if (!(info->fattr->valid & NFS_ATTR_FATTR)) {
dead28da
CL
74 msg.rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR];
75 msg.rpc_resp = info->fattr;
76 status = rpc_call_sync(client, &msg, 0);
1da177e4
LT
77 dprintk("%s: reply getattr: %d\n", __FUNCTION__, status);
78 }
79 return status;
80}
81
03c21733 82/*
54ceac45 83 * Bare-bones access to getattr: this is for nfs_get_root/nfs_get_sb
03c21733
BF
84 */
85static int
86nfs3_proc_get_root(struct nfs_server *server, struct nfs_fh *fhandle,
87 struct nfs_fsinfo *info)
88{
89 int status;
90
91 status = do_proc_get_root(server->client, fhandle, info);
5006a76c
DH
92 if (status && server->nfs_client->cl_rpcclient != server->client)
93 status = do_proc_get_root(server->nfs_client->cl_rpcclient, fhandle, info);
03c21733
BF
94 return status;
95}
96
1da177e4
LT
97/*
98 * One function for each procedure in the NFS protocol.
99 */
100static int
101nfs3_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle,
102 struct nfs_fattr *fattr)
103{
dead28da
CL
104 struct rpc_message msg = {
105 .rpc_proc = &nfs3_procedures[NFS3PROC_GETATTR],
106 .rpc_argp = fhandle,
107 .rpc_resp = fattr,
108 };
1da177e4
LT
109 int status;
110
111 dprintk("NFS call getattr\n");
0e574af1 112 nfs_fattr_init(fattr);
dead28da 113 status = rpc_call_sync(server->client, &msg, 0);
1da177e4
LT
114 dprintk("NFS reply getattr: %d\n", status);
115 return status;
116}
117
118static int
119nfs3_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr,
120 struct iattr *sattr)
121{
122 struct inode *inode = dentry->d_inode;
123 struct nfs3_sattrargs arg = {
124 .fh = NFS_FH(inode),
125 .sattr = sattr,
126 };
dead28da
CL
127 struct rpc_message msg = {
128 .rpc_proc = &nfs3_procedures[NFS3PROC_SETATTR],
129 .rpc_argp = &arg,
130 .rpc_resp = fattr,
131 };
1da177e4
LT
132 int status;
133
134 dprintk("NFS call setattr\n");
0e574af1 135 nfs_fattr_init(fattr);
dead28da 136 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
65e4308d
TM
137 if (status == 0)
138 nfs_setattr_update_inode(inode, sattr);
1da177e4
LT
139 dprintk("NFS reply setattr: %d\n", status);
140 return status;
141}
142
143static int
144nfs3_proc_lookup(struct inode *dir, struct qstr *name,
145 struct nfs_fh *fhandle, struct nfs_fattr *fattr)
146{
147 struct nfs_fattr dir_attr;
148 struct nfs3_diropargs arg = {
149 .fh = NFS_FH(dir),
150 .name = name->name,
151 .len = name->len
152 };
153 struct nfs3_diropres res = {
154 .dir_attr = &dir_attr,
155 .fh = fhandle,
156 .fattr = fattr
157 };
dead28da
CL
158 struct rpc_message msg = {
159 .rpc_proc = &nfs3_procedures[NFS3PROC_LOOKUP],
160 .rpc_argp = &arg,
161 .rpc_resp = &res,
162 };
1da177e4
LT
163 int status;
164
165 dprintk("NFS call lookup %s\n", name->name);
0e574af1
TM
166 nfs_fattr_init(&dir_attr);
167 nfs_fattr_init(fattr);
dead28da
CL
168 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
169 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 }
1da177e4
LT
175 dprintk("NFS reply lookup: %d\n", status);
176 if (status >= 0)
177 status = nfs_refresh_inode(dir, &dir_attr);
178 return status;
179}
180
181static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry)
182{
183 struct nfs_fattr fattr;
184 struct nfs3_accessargs arg = {
185 .fh = NFS_FH(inode),
186 };
187 struct nfs3_accessres res = {
188 .fattr = &fattr,
189 };
190 struct rpc_message msg = {
191 .rpc_proc = &nfs3_procedures[NFS3PROC_ACCESS],
192 .rpc_argp = &arg,
193 .rpc_resp = &res,
dead28da 194 .rpc_cred = entry->cred,
1da177e4
LT
195 };
196 int mode = entry->mask;
197 int status;
198
199 dprintk("NFS call access\n");
1da177e4
LT
200
201 if (mode & MAY_READ)
202 arg.access |= NFS3_ACCESS_READ;
203 if (S_ISDIR(inode->i_mode)) {
204 if (mode & MAY_WRITE)
205 arg.access |= NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND | NFS3_ACCESS_DELETE;
206 if (mode & MAY_EXEC)
207 arg.access |= NFS3_ACCESS_LOOKUP;
208 } else {
209 if (mode & MAY_WRITE)
210 arg.access |= NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND;
211 if (mode & MAY_EXEC)
212 arg.access |= NFS3_ACCESS_EXECUTE;
213 }
0e574af1 214 nfs_fattr_init(&fattr);
1da177e4
LT
215 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
216 nfs_refresh_inode(inode, &fattr);
217 if (status == 0) {
218 entry->mask = 0;
219 if (res.access & NFS3_ACCESS_READ)
220 entry->mask |= MAY_READ;
221 if (res.access & (NFS3_ACCESS_MODIFY | NFS3_ACCESS_EXTEND | NFS3_ACCESS_DELETE))
222 entry->mask |= MAY_WRITE;
223 if (res.access & (NFS3_ACCESS_LOOKUP|NFS3_ACCESS_EXECUTE))
224 entry->mask |= MAY_EXEC;
225 }
226 dprintk("NFS reply access: %d\n", status);
227 return status;
228}
229
230static int nfs3_proc_readlink(struct inode *inode, struct page *page,
231 unsigned int pgbase, unsigned int pglen)
232{
233 struct nfs_fattr fattr;
234 struct nfs3_readlinkargs args = {
235 .fh = NFS_FH(inode),
236 .pgbase = pgbase,
237 .pglen = pglen,
238 .pages = &page
239 };
dead28da
CL
240 struct rpc_message msg = {
241 .rpc_proc = &nfs3_procedures[NFS3PROC_READLINK],
242 .rpc_argp = &args,
243 .rpc_resp = &fattr,
244 };
1da177e4
LT
245 int status;
246
247 dprintk("NFS call readlink\n");
0e574af1 248 nfs_fattr_init(&fattr);
dead28da 249 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
1da177e4
LT
250 nfs_refresh_inode(inode, &fattr);
251 dprintk("NFS reply readlink: %d\n", status);
252 return status;
253}
254
1da177e4
LT
255/*
256 * Create a regular file.
257 * For now, we don't implement O_EXCL.
258 */
259static int
260nfs3_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
02a913a7 261 int flags, struct nameidata *nd)
1da177e4
LT
262{
263 struct nfs_fh fhandle;
264 struct nfs_fattr fattr;
265 struct nfs_fattr dir_attr;
266 struct nfs3_createargs arg = {
267 .fh = NFS_FH(dir),
268 .name = dentry->d_name.name,
269 .len = dentry->d_name.len,
270 .sattr = sattr,
271 };
272 struct nfs3_diropres res = {
273 .dir_attr = &dir_attr,
274 .fh = &fhandle,
275 .fattr = &fattr
276 };
dead28da
CL
277 struct rpc_message msg = {
278 .rpc_proc = &nfs3_procedures[NFS3PROC_CREATE],
279 .rpc_argp = &arg,
280 .rpc_resp = &res,
281 };
055ffbea
AG
282 mode_t mode = sattr->ia_mode;
283 int status;
1da177e4
LT
284
285 dprintk("NFS call create %s\n", dentry->d_name.name);
286 arg.createmode = NFS3_CREATE_UNCHECKED;
287 if (flags & O_EXCL) {
288 arg.createmode = NFS3_CREATE_EXCLUSIVE;
289 arg.verifier[0] = jiffies;
290 arg.verifier[1] = current->pid;
291 }
292
055ffbea
AG
293 sattr->ia_mode &= ~current->fs->umask;
294
1da177e4 295again:
0e574af1
TM
296 nfs_fattr_init(&dir_attr);
297 nfs_fattr_init(&fattr);
dead28da
CL
298 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
299 nfs_refresh_inode(dir, &dir_attr);
1da177e4
LT
300
301 /* If the server doesn't support the exclusive creation semantics,
302 * try again with simple 'guarded' mode. */
46b9f8e1 303 if (status == -ENOTSUPP) {
1da177e4
LT
304 switch (arg.createmode) {
305 case NFS3_CREATE_EXCLUSIVE:
306 arg.createmode = NFS3_CREATE_GUARDED;
307 break;
308
309 case NFS3_CREATE_GUARDED:
310 arg.createmode = NFS3_CREATE_UNCHECKED;
311 break;
312
313 case NFS3_CREATE_UNCHECKED:
314 goto out;
315 }
316 goto again;
317 }
318
319 if (status == 0)
320 status = nfs_instantiate(dentry, &fhandle, &fattr);
321 if (status != 0)
322 goto out;
323
324 /* When we created the file with exclusive semantics, make
325 * sure we set the attributes afterwards. */
326 if (arg.createmode == NFS3_CREATE_EXCLUSIVE) {
327 dprintk("NFS call setattr (post-create)\n");
328
329 if (!(sattr->ia_valid & ATTR_ATIME_SET))
330 sattr->ia_valid |= ATTR_ATIME;
331 if (!(sattr->ia_valid & ATTR_MTIME_SET))
332 sattr->ia_valid |= ATTR_MTIME;
333
334 /* Note: we could use a guarded setattr here, but I'm
335 * not sure this buys us anything (and I'd have
336 * to revamp the NFSv3 XDR code) */
337 status = nfs3_proc_setattr(dentry, &fattr, sattr);
65e4308d
TM
338 if (status == 0)
339 nfs_setattr_update_inode(dentry->d_inode, sattr);
1da177e4
LT
340 nfs_refresh_inode(dentry->d_inode, &fattr);
341 dprintk("NFS reply setattr (post-create): %d\n", status);
342 }
055ffbea
AG
343 if (status != 0)
344 goto out;
345 status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode);
1da177e4
LT
346out:
347 dprintk("NFS reply create: %d\n", status);
348 return status;
349}
350
351static int
352nfs3_proc_remove(struct inode *dir, struct qstr *name)
353{
354 struct nfs_fattr dir_attr;
355 struct nfs3_diropargs arg = {
356 .fh = NFS_FH(dir),
357 .name = name->name,
358 .len = name->len
359 };
360 struct rpc_message msg = {
361 .rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE],
362 .rpc_argp = &arg,
363 .rpc_resp = &dir_attr,
364 };
365 int status;
366
367 dprintk("NFS call remove %s\n", name->name);
0e574af1 368 nfs_fattr_init(&dir_attr);
1da177e4 369 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
decf491f 370 nfs_post_op_update_inode(dir, &dir_attr);
1da177e4
LT
371 dprintk("NFS reply remove: %d\n", status);
372 return status;
373}
374
375static int
376nfs3_proc_unlink_setup(struct rpc_message *msg, struct dentry *dir, struct qstr *name)
377{
378 struct unlinkxdr {
379 struct nfs3_diropargs arg;
380 struct nfs_fattr res;
381 } *ptr;
382
f52720ca 383 ptr = kmalloc(sizeof(*ptr), GFP_KERNEL);
1da177e4
LT
384 if (!ptr)
385 return -ENOMEM;
386 ptr->arg.fh = NFS_FH(dir->d_inode);
387 ptr->arg.name = name->name;
388 ptr->arg.len = name->len;
0e574af1 389 nfs_fattr_init(&ptr->res);
1da177e4
LT
390 msg->rpc_proc = &nfs3_procedures[NFS3PROC_REMOVE];
391 msg->rpc_argp = &ptr->arg;
392 msg->rpc_resp = &ptr->res;
393 return 0;
394}
395
396static int
397nfs3_proc_unlink_done(struct dentry *dir, struct rpc_task *task)
398{
399 struct rpc_message *msg = &task->tk_msg;
400 struct nfs_fattr *dir_attr;
401
006ea73e 402 if (nfs3_async_handle_jukebox(task, dir->d_inode))
1da177e4
LT
403 return 1;
404 if (msg->rpc_argp) {
405 dir_attr = (struct nfs_fattr*)msg->rpc_resp;
decf491f 406 nfs_post_op_update_inode(dir->d_inode, dir_attr);
1da177e4
LT
407 kfree(msg->rpc_argp);
408 }
409 return 0;
410}
411
412static int
413nfs3_proc_rename(struct inode *old_dir, struct qstr *old_name,
414 struct inode *new_dir, struct qstr *new_name)
415{
416 struct nfs_fattr old_dir_attr, new_dir_attr;
417 struct nfs3_renameargs arg = {
418 .fromfh = NFS_FH(old_dir),
419 .fromname = old_name->name,
420 .fromlen = old_name->len,
421 .tofh = NFS_FH(new_dir),
422 .toname = new_name->name,
423 .tolen = new_name->len
424 };
425 struct nfs3_renameres res = {
426 .fromattr = &old_dir_attr,
427 .toattr = &new_dir_attr
428 };
dead28da
CL
429 struct rpc_message msg = {
430 .rpc_proc = &nfs3_procedures[NFS3PROC_RENAME],
431 .rpc_argp = &arg,
432 .rpc_resp = &res,
433 };
1da177e4
LT
434 int status;
435
436 dprintk("NFS call rename %s -> %s\n", old_name->name, new_name->name);
0e574af1
TM
437 nfs_fattr_init(&old_dir_attr);
438 nfs_fattr_init(&new_dir_attr);
dead28da 439 status = rpc_call_sync(NFS_CLIENT(old_dir), &msg, 0);
decf491f
TM
440 nfs_post_op_update_inode(old_dir, &old_dir_attr);
441 nfs_post_op_update_inode(new_dir, &new_dir_attr);
1da177e4
LT
442 dprintk("NFS reply rename: %d\n", status);
443 return status;
444}
445
446static int
447nfs3_proc_link(struct inode *inode, struct inode *dir, struct qstr *name)
448{
449 struct nfs_fattr dir_attr, fattr;
450 struct nfs3_linkargs arg = {
451 .fromfh = NFS_FH(inode),
452 .tofh = NFS_FH(dir),
453 .toname = name->name,
454 .tolen = name->len
455 };
456 struct nfs3_linkres res = {
457 .dir_attr = &dir_attr,
458 .fattr = &fattr
459 };
dead28da
CL
460 struct rpc_message msg = {
461 .rpc_proc = &nfs3_procedures[NFS3PROC_LINK],
462 .rpc_argp = &arg,
463 .rpc_resp = &res,
464 };
1da177e4
LT
465 int status;
466
467 dprintk("NFS call link %s\n", name->name);
0e574af1
TM
468 nfs_fattr_init(&dir_attr);
469 nfs_fattr_init(&fattr);
dead28da 470 status = rpc_call_sync(NFS_CLIENT(inode), &msg, 0);
decf491f
TM
471 nfs_post_op_update_inode(dir, &dir_attr);
472 nfs_post_op_update_inode(inode, &fattr);
1da177e4
LT
473 dprintk("NFS reply link: %d\n", status);
474 return status;
475}
476
477static int
94a6d753
CL
478nfs3_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
479 unsigned int len, struct iattr *sattr)
1da177e4 480{
4f390c15
CL
481 struct nfs_fh fhandle;
482 struct nfs_fattr fattr, dir_attr;
1da177e4
LT
483 struct nfs3_symlinkargs arg = {
484 .fromfh = NFS_FH(dir),
4f390c15
CL
485 .fromname = dentry->d_name.name,
486 .fromlen = dentry->d_name.len,
94a6d753
CL
487 .pages = &page,
488 .pathlen = len,
1da177e4
LT
489 .sattr = sattr
490 };
491 struct nfs3_diropres res = {
492 .dir_attr = &dir_attr,
4f390c15
CL
493 .fh = &fhandle,
494 .fattr = &fattr
1da177e4 495 };
dead28da
CL
496 struct rpc_message msg = {
497 .rpc_proc = &nfs3_procedures[NFS3PROC_SYMLINK],
498 .rpc_argp = &arg,
499 .rpc_resp = &res,
500 };
1da177e4
LT
501 int status;
502
94a6d753 503 if (len > NFS3_MAXPATHLEN)
1da177e4 504 return -ENAMETOOLONG;
4f390c15 505
94a6d753
CL
506 dprintk("NFS call symlink %s\n", dentry->d_name.name);
507
0e574af1 508 nfs_fattr_init(&dir_attr);
4f390c15 509 nfs_fattr_init(&fattr);
dead28da 510 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
decf491f 511 nfs_post_op_update_inode(dir, &dir_attr);
4f390c15
CL
512 if (status != 0)
513 goto out;
514 status = nfs_instantiate(dentry, &fhandle, &fattr);
515out:
1da177e4
LT
516 dprintk("NFS reply symlink: %d\n", status);
517 return status;
518}
519
520static int
521nfs3_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
522{
523 struct nfs_fh fhandle;
524 struct nfs_fattr fattr, dir_attr;
525 struct nfs3_mkdirargs arg = {
526 .fh = NFS_FH(dir),
527 .name = dentry->d_name.name,
528 .len = dentry->d_name.len,
529 .sattr = sattr
530 };
531 struct nfs3_diropres res = {
532 .dir_attr = &dir_attr,
533 .fh = &fhandle,
534 .fattr = &fattr
535 };
dead28da
CL
536 struct rpc_message msg = {
537 .rpc_proc = &nfs3_procedures[NFS3PROC_MKDIR],
538 .rpc_argp = &arg,
539 .rpc_resp = &res,
540 };
055ffbea
AG
541 int mode = sattr->ia_mode;
542 int status;
1da177e4
LT
543
544 dprintk("NFS call mkdir %s\n", dentry->d_name.name);
055ffbea
AG
545
546 sattr->ia_mode &= ~current->fs->umask;
547
0e574af1
TM
548 nfs_fattr_init(&dir_attr);
549 nfs_fattr_init(&fattr);
dead28da 550 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
decf491f 551 nfs_post_op_update_inode(dir, &dir_attr);
055ffbea
AG
552 if (status != 0)
553 goto out;
554 status = nfs_instantiate(dentry, &fhandle, &fattr);
555 if (status != 0)
556 goto out;
557 status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode);
558out:
1da177e4
LT
559 dprintk("NFS reply mkdir: %d\n", status);
560 return status;
561}
562
563static int
564nfs3_proc_rmdir(struct inode *dir, struct qstr *name)
565{
566 struct nfs_fattr dir_attr;
567 struct nfs3_diropargs arg = {
568 .fh = NFS_FH(dir),
569 .name = name->name,
570 .len = name->len
571 };
dead28da
CL
572 struct rpc_message msg = {
573 .rpc_proc = &nfs3_procedures[NFS3PROC_RMDIR],
574 .rpc_argp = &arg,
575 .rpc_resp = &dir_attr,
576 };
1da177e4
LT
577 int status;
578
579 dprintk("NFS call rmdir %s\n", name->name);
0e574af1 580 nfs_fattr_init(&dir_attr);
dead28da 581 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
decf491f 582 nfs_post_op_update_inode(dir, &dir_attr);
1da177e4
LT
583 dprintk("NFS reply rmdir: %d\n", status);
584 return status;
585}
586
587/*
588 * The READDIR implementation is somewhat hackish - we pass the user buffer
589 * to the encode function, which installs it in the receive iovec.
590 * The decode function itself doesn't perform any decoding, it just makes
591 * sure the reply is syntactically correct.
592 *
593 * Also note that this implementation handles both plain readdir and
594 * readdirplus.
595 */
596static int
597nfs3_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
598 u64 cookie, struct page *page, unsigned int count, int plus)
599{
600 struct inode *dir = dentry->d_inode;
601 struct nfs_fattr dir_attr;
bc4785cd 602 __be32 *verf = NFS_COOKIEVERF(dir);
1da177e4
LT
603 struct nfs3_readdirargs arg = {
604 .fh = NFS_FH(dir),
605 .cookie = cookie,
606 .verf = {verf[0], verf[1]},
607 .plus = plus,
608 .count = count,
609 .pages = &page
610 };
611 struct nfs3_readdirres res = {
612 .dir_attr = &dir_attr,
613 .verf = verf,
614 .plus = plus
615 };
616 struct rpc_message msg = {
617 .rpc_proc = &nfs3_procedures[NFS3PROC_READDIR],
618 .rpc_argp = &arg,
619 .rpc_resp = &res,
620 .rpc_cred = cred
621 };
622 int status;
623
1da177e4
LT
624 if (plus)
625 msg.rpc_proc = &nfs3_procedures[NFS3PROC_READDIRPLUS];
626
627 dprintk("NFS call readdir%s %d\n",
628 plus? "plus" : "", (unsigned int) cookie);
629
0e574af1 630 nfs_fattr_init(&dir_attr);
1da177e4
LT
631 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
632 nfs_refresh_inode(dir, &dir_attr);
633 dprintk("NFS reply readdir: %d\n", status);
1da177e4
LT
634 return status;
635}
636
637static int
638nfs3_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
639 dev_t rdev)
640{
641 struct nfs_fh fh;
642 struct nfs_fattr fattr, dir_attr;
643 struct nfs3_mknodargs arg = {
644 .fh = NFS_FH(dir),
645 .name = dentry->d_name.name,
646 .len = dentry->d_name.len,
647 .sattr = sattr,
648 .rdev = rdev
649 };
650 struct nfs3_diropres res = {
651 .dir_attr = &dir_attr,
652 .fh = &fh,
653 .fattr = &fattr
654 };
dead28da
CL
655 struct rpc_message msg = {
656 .rpc_proc = &nfs3_procedures[NFS3PROC_MKNOD],
657 .rpc_argp = &arg,
658 .rpc_resp = &res,
659 };
055ffbea 660 mode_t mode = sattr->ia_mode;
1da177e4
LT
661 int status;
662
663 switch (sattr->ia_mode & S_IFMT) {
664 case S_IFBLK: arg.type = NF3BLK; break;
665 case S_IFCHR: arg.type = NF3CHR; break;
666 case S_IFIFO: arg.type = NF3FIFO; break;
667 case S_IFSOCK: arg.type = NF3SOCK; break;
668 default: return -EINVAL;
669 }
670
671 dprintk("NFS call mknod %s %u:%u\n", dentry->d_name.name,
672 MAJOR(rdev), MINOR(rdev));
055ffbea
AG
673
674 sattr->ia_mode &= ~current->fs->umask;
675
0e574af1
TM
676 nfs_fattr_init(&dir_attr);
677 nfs_fattr_init(&fattr);
dead28da 678 status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
decf491f 679 nfs_post_op_update_inode(dir, &dir_attr);
055ffbea
AG
680 if (status != 0)
681 goto out;
682 status = nfs_instantiate(dentry, &fh, &fattr);
683 if (status != 0)
684 goto out;
685 status = nfs3_proc_set_default_acl(dir, dentry->d_inode, mode);
686out:
1da177e4
LT
687 dprintk("NFS reply mknod: %d\n", status);
688 return status;
689}
690
691static int
692nfs3_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle,
693 struct nfs_fsstat *stat)
694{
dead28da
CL
695 struct rpc_message msg = {
696 .rpc_proc = &nfs3_procedures[NFS3PROC_FSSTAT],
697 .rpc_argp = fhandle,
698 .rpc_resp = stat,
699 };
1da177e4
LT
700 int status;
701
702 dprintk("NFS call fsstat\n");
0e574af1 703 nfs_fattr_init(stat->fattr);
dead28da 704 status = rpc_call_sync(server->client, &msg, 0);
1da177e4
LT
705 dprintk("NFS reply statfs: %d\n", status);
706 return status;
707}
708
709static int
710nfs3_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle,
711 struct nfs_fsinfo *info)
712{
dead28da
CL
713 struct rpc_message msg = {
714 .rpc_proc = &nfs3_procedures[NFS3PROC_FSINFO],
715 .rpc_argp = fhandle,
716 .rpc_resp = info,
717 };
1da177e4
LT
718 int status;
719
720 dprintk("NFS call fsinfo\n");
0e574af1 721 nfs_fattr_init(info->fattr);
5006a76c 722 status = rpc_call_sync(server->nfs_client->cl_rpcclient, &msg, 0);
1da177e4
LT
723 dprintk("NFS reply fsinfo: %d\n", status);
724 return status;
725}
726
727static int
728nfs3_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle,
729 struct nfs_pathconf *info)
730{
dead28da
CL
731 struct rpc_message msg = {
732 .rpc_proc = &nfs3_procedures[NFS3PROC_PATHCONF],
733 .rpc_argp = fhandle,
734 .rpc_resp = info,
735 };
1da177e4
LT
736 int status;
737
738 dprintk("NFS call pathconf\n");
0e574af1 739 nfs_fattr_init(info->fattr);
dead28da 740 status = rpc_call_sync(server->client, &msg, 0);
1da177e4
LT
741 dprintk("NFS reply pathconf: %d\n", status);
742 return status;
743}
744
ec06c096 745static int nfs3_read_done(struct rpc_task *task, struct nfs_read_data *data)
1da177e4 746{
006ea73e 747 if (nfs3_async_handle_jukebox(task, data->inode))
ec06c096 748 return -EAGAIN;
1da177e4
LT
749 /* Call back common NFS readpage processing */
750 if (task->tk_status >= 0)
751 nfs_refresh_inode(data->inode, &data->fattr);
ec06c096 752 return 0;
1da177e4
LT
753}
754
ec06c096 755static void nfs3_proc_read_setup(struct nfs_read_data *data)
1da177e4 756{
1da177e4
LT
757 struct rpc_message msg = {
758 .rpc_proc = &nfs3_procedures[NFS3PROC_READ],
759 .rpc_argp = &data->args,
760 .rpc_resp = &data->res,
761 .rpc_cred = data->cred,
762 };
763
ec06c096 764 rpc_call_setup(&data->task, &msg, 0);
1da177e4
LT
765}
766
788e7a89 767static int nfs3_write_done(struct rpc_task *task, struct nfs_write_data *data)
1da177e4 768{
006ea73e 769 if (nfs3_async_handle_jukebox(task, data->inode))
788e7a89 770 return -EAGAIN;
1da177e4 771 if (task->tk_status >= 0)
decf491f 772 nfs_post_op_update_inode(data->inode, data->res.fattr);
788e7a89 773 return 0;
1da177e4
LT
774}
775
788e7a89 776static void nfs3_proc_write_setup(struct nfs_write_data *data, int how)
1da177e4 777{
1da177e4
LT
778 struct rpc_message msg = {
779 .rpc_proc = &nfs3_procedures[NFS3PROC_WRITE],
780 .rpc_argp = &data->args,
781 .rpc_resp = &data->res,
782 .rpc_cred = data->cred,
783 };
784
788e7a89 785 data->args.stable = NFS_UNSTABLE;
1da177e4 786 if (how & FLUSH_STABLE) {
788e7a89
TM
787 data->args.stable = NFS_FILE_SYNC;
788 if (NFS_I(data->inode)->ncommit)
789 data->args.stable = NFS_DATA_SYNC;
790 }
1da177e4
LT
791
792 /* Finalize the task. */
788e7a89 793 rpc_call_setup(&data->task, &msg, 0);
1da177e4
LT
794}
795
788e7a89 796static int nfs3_commit_done(struct rpc_task *task, struct nfs_write_data *data)
1da177e4 797{
006ea73e 798 if (nfs3_async_handle_jukebox(task, data->inode))
788e7a89 799 return -EAGAIN;
1da177e4 800 if (task->tk_status >= 0)
decf491f 801 nfs_post_op_update_inode(data->inode, data->res.fattr);
788e7a89 802 return 0;
1da177e4
LT
803}
804
788e7a89 805static void nfs3_proc_commit_setup(struct nfs_write_data *data, int how)
1da177e4 806{
1da177e4
LT
807 struct rpc_message msg = {
808 .rpc_proc = &nfs3_procedures[NFS3PROC_COMMIT],
809 .rpc_argp = &data->args,
810 .rpc_resp = &data->res,
811 .rpc_cred = data->cred,
812 };
813
788e7a89 814 rpc_call_setup(&data->task, &msg, 0);
1da177e4
LT
815}
816
817static int
818nfs3_proc_lock(struct file *filp, int cmd, struct file_lock *fl)
819{
01cce933 820 return nlmclnt_proc(filp->f_path.dentry->d_inode, cmd, fl);
1da177e4
LT
821}
822
509de811 823const struct nfs_rpc_ops nfs_v3_clientops = {
1da177e4
LT
824 .version = 3, /* protocol version */
825 .dentry_ops = &nfs_dentry_operations,
b7fa0554
AG
826 .dir_inode_ops = &nfs3_dir_inode_operations,
827 .file_inode_ops = &nfs3_file_inode_operations,
1da177e4
LT
828 .getroot = nfs3_proc_get_root,
829 .getattr = nfs3_proc_getattr,
830 .setattr = nfs3_proc_setattr,
831 .lookup = nfs3_proc_lookup,
832 .access = nfs3_proc_access,
833 .readlink = nfs3_proc_readlink,
1da177e4
LT
834 .create = nfs3_proc_create,
835 .remove = nfs3_proc_remove,
836 .unlink_setup = nfs3_proc_unlink_setup,
837 .unlink_done = nfs3_proc_unlink_done,
838 .rename = nfs3_proc_rename,
839 .link = nfs3_proc_link,
840 .symlink = nfs3_proc_symlink,
841 .mkdir = nfs3_proc_mkdir,
842 .rmdir = nfs3_proc_rmdir,
843 .readdir = nfs3_proc_readdir,
844 .mknod = nfs3_proc_mknod,
845 .statfs = nfs3_proc_statfs,
846 .fsinfo = nfs3_proc_fsinfo,
847 .pathconf = nfs3_proc_pathconf,
848 .decode_dirent = nfs3_decode_dirent,
849 .read_setup = nfs3_proc_read_setup,
ec06c096 850 .read_done = nfs3_read_done,
1da177e4 851 .write_setup = nfs3_proc_write_setup,
788e7a89 852 .write_done = nfs3_write_done,
1da177e4 853 .commit_setup = nfs3_proc_commit_setup,
788e7a89 854 .commit_done = nfs3_commit_done,
1da177e4
LT
855 .file_open = nfs_open,
856 .file_release = nfs_release,
857 .lock = nfs3_proc_lock,
5c6a9f7d 858 .clear_acl_cache = nfs3_forget_cached_acls,
1da177e4 859};
This page took 0.420493 seconds and 5 git commands to generate.