4 * Copyright (C) 1992, 1993, 1994 Rick Sladkey
6 * OS-independent nfs remote procedure call functions
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
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.
16 * Also, the code currently doesn't check the size of the packet, when
17 * it decodes the packet.
19 * Feel free to fix it and mail me the diffs if it worries you.
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
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
30 #include <linux/types.h>
31 #include <linux/param.h>
32 #include <linux/slab.h>
33 #include <linux/time.h>
35 #include <linux/utsname.h>
36 #include <linux/errno.h>
37 #include <linux/string.h>
39 #include <linux/pagemap.h>
40 #include <linux/sunrpc/clnt.h>
41 #include <linux/nfs.h>
42 #include <linux/nfs2.h>
43 #include <linux/nfs_fs.h>
44 #include <linux/nfs_page.h>
45 #include <linux/lockd/bind.h>
46 #include <linux/smp_lock.h>
48 #define NFSDBG_FACILITY NFSDBG_PROC
50 extern struct rpc_procinfo nfs_procedures
[];
53 * Bare-bones access to getattr: this is for nfs_read_super.
56 nfs_proc_get_root(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
57 struct nfs_fsinfo
*info
)
59 struct nfs_fattr
*fattr
= info
->fattr
;
60 struct nfs2_fsstat fsinfo
;
63 dprintk("%s: call getattr\n", __FUNCTION__
);
65 status
= rpc_call(server
->client_sys
, NFSPROC_GETATTR
, fhandle
, fattr
, 0);
66 dprintk("%s: reply getattr: %d\n", __FUNCTION__
, status
);
69 dprintk("%s: call statfs\n", __FUNCTION__
);
70 status
= rpc_call(server
->client_sys
, NFSPROC_STATFS
, fhandle
, &fsinfo
, 0);
71 dprintk("%s: reply statfs: %d\n", __FUNCTION__
, status
);
74 info
->rtmax
= NFS_MAXDATA
;
75 info
->rtpref
= fsinfo
.tsize
;
76 info
->rtmult
= fsinfo
.bsize
;
77 info
->wtmax
= NFS_MAXDATA
;
78 info
->wtpref
= fsinfo
.tsize
;
79 info
->wtmult
= fsinfo
.bsize
;
80 info
->dtpref
= fsinfo
.tsize
;
81 info
->maxfilesize
= 0x7FFFFFFF;
87 * One function for each procedure in the NFS protocol.
90 nfs_proc_getattr(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
91 struct nfs_fattr
*fattr
)
95 dprintk("NFS call getattr\n");
97 status
= rpc_call(server
->client
, NFSPROC_GETATTR
,
99 dprintk("NFS reply getattr: %d\n", status
);
104 nfs_proc_setattr(struct dentry
*dentry
, struct nfs_fattr
*fattr
,
107 struct inode
*inode
= dentry
->d_inode
;
108 struct nfs_sattrargs arg
= {
114 dprintk("NFS call setattr\n");
116 status
= rpc_call(NFS_CLIENT(inode
), NFSPROC_SETATTR
, &arg
, fattr
, 0);
117 dprintk("NFS reply setattr: %d\n", status
);
122 nfs_proc_lookup(struct inode
*dir
, struct qstr
*name
,
123 struct nfs_fh
*fhandle
, struct nfs_fattr
*fattr
)
125 struct nfs_diropargs arg
= {
130 struct nfs_diropok res
= {
136 dprintk("NFS call lookup %s\n", name
->name
);
138 status
= rpc_call(NFS_CLIENT(dir
), NFSPROC_LOOKUP
, &arg
, &res
, 0);
139 dprintk("NFS reply lookup: %d\n", status
);
143 static int nfs_proc_readlink(struct inode
*inode
, struct page
*page
,
144 unsigned int pgbase
, unsigned int pglen
)
146 struct nfs_readlinkargs args
= {
154 dprintk("NFS call readlink\n");
155 status
= rpc_call(NFS_CLIENT(inode
), NFSPROC_READLINK
, &args
, NULL
, 0);
156 dprintk("NFS reply readlink: %d\n", status
);
160 static int nfs_proc_read(struct nfs_read_data
*rdata
)
162 int flags
= rdata
->flags
;
163 struct inode
* inode
= rdata
->inode
;
164 struct nfs_fattr
* fattr
= rdata
->res
.fattr
;
165 struct rpc_message msg
= {
166 .rpc_proc
= &nfs_procedures
[NFSPROC_READ
],
167 .rpc_argp
= &rdata
->args
,
168 .rpc_resp
= &rdata
->res
,
169 .rpc_cred
= rdata
->cred
,
173 dprintk("NFS call read %d @ %Ld\n", rdata
->args
.count
,
174 (long long) rdata
->args
.offset
);
176 status
= rpc_call_sync(NFS_CLIENT(inode
), &msg
, flags
);
178 nfs_refresh_inode(inode
, fattr
);
179 /* Emulate the eof flag, which isn't normally needed in NFSv2
180 * as it is guaranteed to always return the file attributes
182 if (rdata
->args
.offset
+ rdata
->args
.count
>= fattr
->size
)
185 dprintk("NFS reply read: %d\n", status
);
189 static int nfs_proc_write(struct nfs_write_data
*wdata
)
191 int flags
= wdata
->flags
;
192 struct inode
* inode
= wdata
->inode
;
193 struct nfs_fattr
* fattr
= wdata
->res
.fattr
;
194 struct rpc_message msg
= {
195 .rpc_proc
= &nfs_procedures
[NFSPROC_WRITE
],
196 .rpc_argp
= &wdata
->args
,
197 .rpc_resp
= &wdata
->res
,
198 .rpc_cred
= wdata
->cred
,
202 dprintk("NFS call write %d @ %Ld\n", wdata
->args
.count
,
203 (long long) wdata
->args
.offset
);
205 status
= rpc_call_sync(NFS_CLIENT(inode
), &msg
, flags
);
207 nfs_refresh_inode(inode
, fattr
);
208 wdata
->res
.count
= wdata
->args
.count
;
209 wdata
->verf
.committed
= NFS_FILE_SYNC
;
211 dprintk("NFS reply write: %d\n", status
);
212 return status
< 0? status
: wdata
->res
.count
;
216 nfs_proc_create(struct inode
*dir
, struct dentry
*dentry
, struct iattr
*sattr
,
219 struct nfs_fh fhandle
;
220 struct nfs_fattr fattr
;
221 struct nfs_createargs arg
= {
223 .name
= dentry
->d_name
.name
,
224 .len
= dentry
->d_name
.len
,
227 struct nfs_diropok res
= {
234 dprintk("NFS call create %s\n", dentry
->d_name
.name
);
235 status
= rpc_call(NFS_CLIENT(dir
), NFSPROC_CREATE
, &arg
, &res
, 0);
237 status
= nfs_instantiate(dentry
, &fhandle
, &fattr
);
238 dprintk("NFS reply create: %d\n", status
);
243 * In NFSv2, mknod is grafted onto the create call.
246 nfs_proc_mknod(struct inode
*dir
, struct dentry
*dentry
, struct iattr
*sattr
,
249 struct nfs_fh fhandle
;
250 struct nfs_fattr fattr
;
251 struct nfs_createargs arg
= {
253 .name
= dentry
->d_name
.name
,
254 .len
= dentry
->d_name
.len
,
257 struct nfs_diropok res
= {
263 dprintk("NFS call mknod %s\n", dentry
->d_name
.name
);
265 mode
= sattr
->ia_mode
;
266 if (S_ISFIFO(mode
)) {
267 sattr
->ia_mode
= (mode
& ~S_IFMT
) | S_IFCHR
;
268 sattr
->ia_valid
&= ~ATTR_SIZE
;
269 } else if (S_ISCHR(mode
) || S_ISBLK(mode
)) {
270 sattr
->ia_valid
|= ATTR_SIZE
;
271 sattr
->ia_size
= new_encode_dev(rdev
);/* get out your barf bag */
275 status
= rpc_call(NFS_CLIENT(dir
), NFSPROC_CREATE
, &arg
, &res
, 0);
277 if (status
== -EINVAL
&& S_ISFIFO(mode
)) {
278 sattr
->ia_mode
= mode
;
280 status
= rpc_call(NFS_CLIENT(dir
), NFSPROC_CREATE
, &arg
, &res
, 0);
283 status
= nfs_instantiate(dentry
, &fhandle
, &fattr
);
284 dprintk("NFS reply mknod: %d\n", status
);
289 nfs_proc_remove(struct inode
*dir
, struct qstr
*name
)
291 struct nfs_diropargs arg
= {
296 struct rpc_message msg
= {
297 .rpc_proc
= &nfs_procedures
[NFSPROC_REMOVE
],
304 dprintk("NFS call remove %s\n", name
->name
);
305 status
= rpc_call_sync(NFS_CLIENT(dir
), &msg
, 0);
307 dprintk("NFS reply remove: %d\n", status
);
312 nfs_proc_unlink_setup(struct rpc_message
*msg
, struct dentry
*dir
, struct qstr
*name
)
314 struct nfs_diropargs
*arg
;
316 arg
= (struct nfs_diropargs
*)kmalloc(sizeof(*arg
), GFP_KERNEL
);
319 arg
->fh
= NFS_FH(dir
->d_inode
);
320 arg
->name
= name
->name
;
321 arg
->len
= name
->len
;
322 msg
->rpc_proc
= &nfs_procedures
[NFSPROC_REMOVE
];
328 nfs_proc_unlink_done(struct dentry
*dir
, struct rpc_task
*task
)
330 struct rpc_message
*msg
= &task
->tk_msg
;
333 kfree(msg
->rpc_argp
);
338 nfs_proc_rename(struct inode
*old_dir
, struct qstr
*old_name
,
339 struct inode
*new_dir
, struct qstr
*new_name
)
341 struct nfs_renameargs arg
= {
342 .fromfh
= NFS_FH(old_dir
),
343 .fromname
= old_name
->name
,
344 .fromlen
= old_name
->len
,
345 .tofh
= NFS_FH(new_dir
),
346 .toname
= new_name
->name
,
347 .tolen
= new_name
->len
351 dprintk("NFS call rename %s -> %s\n", old_name
->name
, new_name
->name
);
352 status
= rpc_call(NFS_CLIENT(old_dir
), NFSPROC_RENAME
, &arg
, NULL
, 0);
353 dprintk("NFS reply rename: %d\n", status
);
358 nfs_proc_link(struct inode
*inode
, struct inode
*dir
, struct qstr
*name
)
360 struct nfs_linkargs arg
= {
361 .fromfh
= NFS_FH(inode
),
363 .toname
= name
->name
,
368 dprintk("NFS call link %s\n", name
->name
);
369 status
= rpc_call(NFS_CLIENT(inode
), NFSPROC_LINK
, &arg
, NULL
, 0);
370 dprintk("NFS reply link: %d\n", status
);
375 nfs_proc_symlink(struct inode
*dir
, struct qstr
*name
, struct qstr
*path
,
376 struct iattr
*sattr
, struct nfs_fh
*fhandle
,
377 struct nfs_fattr
*fattr
)
379 struct nfs_symlinkargs arg
= {
380 .fromfh
= NFS_FH(dir
),
381 .fromname
= name
->name
,
382 .fromlen
= name
->len
,
383 .topath
= path
->name
,
389 if (path
->len
> NFS2_MAXPATHLEN
)
390 return -ENAMETOOLONG
;
391 dprintk("NFS call symlink %s -> %s\n", name
->name
, path
->name
);
394 status
= rpc_call(NFS_CLIENT(dir
), NFSPROC_SYMLINK
, &arg
, NULL
, 0);
395 dprintk("NFS reply symlink: %d\n", status
);
400 nfs_proc_mkdir(struct inode
*dir
, struct dentry
*dentry
, struct iattr
*sattr
)
402 struct nfs_fh fhandle
;
403 struct nfs_fattr fattr
;
404 struct nfs_createargs arg
= {
406 .name
= dentry
->d_name
.name
,
407 .len
= dentry
->d_name
.len
,
410 struct nfs_diropok res
= {
416 dprintk("NFS call mkdir %s\n", dentry
->d_name
.name
);
418 status
= rpc_call(NFS_CLIENT(dir
), NFSPROC_MKDIR
, &arg
, &res
, 0);
420 status
= nfs_instantiate(dentry
, &fhandle
, &fattr
);
421 dprintk("NFS reply mkdir: %d\n", status
);
426 nfs_proc_rmdir(struct inode
*dir
, struct qstr
*name
)
428 struct nfs_diropargs arg
= {
435 dprintk("NFS call rmdir %s\n", name
->name
);
436 status
= rpc_call(NFS_CLIENT(dir
), NFSPROC_RMDIR
, &arg
, NULL
, 0);
437 dprintk("NFS reply rmdir: %d\n", status
);
442 * The READDIR implementation is somewhat hackish - we pass a temporary
443 * buffer to the encode function, which installs it in the receive
444 * the receive iovec. The decode function just parses the reply to make
445 * sure it is syntactically correct; the entries itself are decoded
446 * from nfs_readdir by calling the decode_entry function directly.
449 nfs_proc_readdir(struct dentry
*dentry
, struct rpc_cred
*cred
,
450 u64 cookie
, struct page
*page
, unsigned int count
, int plus
)
452 struct inode
*dir
= dentry
->d_inode
;
453 struct nfs_readdirargs arg
= {
459 struct rpc_message msg
= {
460 .rpc_proc
= &nfs_procedures
[NFSPROC_READDIR
],
469 dprintk("NFS call readdir %d\n", (unsigned int)cookie
);
470 status
= rpc_call_sync(NFS_CLIENT(dir
), &msg
, 0);
472 dprintk("NFS reply readdir: %d\n", status
);
478 nfs_proc_statfs(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
479 struct nfs_fsstat
*stat
)
481 struct nfs2_fsstat fsinfo
;
484 dprintk("NFS call statfs\n");
485 stat
->fattr
->valid
= 0;
486 status
= rpc_call(server
->client
, NFSPROC_STATFS
, fhandle
, &fsinfo
, 0);
487 dprintk("NFS reply statfs: %d\n", status
);
490 stat
->tbytes
= (u64
)fsinfo
.blocks
* fsinfo
.bsize
;
491 stat
->fbytes
= (u64
)fsinfo
.bfree
* fsinfo
.bsize
;
492 stat
->abytes
= (u64
)fsinfo
.bavail
* fsinfo
.bsize
;
501 nfs_proc_fsinfo(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
502 struct nfs_fsinfo
*info
)
504 struct nfs2_fsstat fsinfo
;
507 dprintk("NFS call fsinfo\n");
508 info
->fattr
->valid
= 0;
509 status
= rpc_call(server
->client
, NFSPROC_STATFS
, fhandle
, &fsinfo
, 0);
510 dprintk("NFS reply fsinfo: %d\n", status
);
513 info
->rtmax
= NFS_MAXDATA
;
514 info
->rtpref
= fsinfo
.tsize
;
515 info
->rtmult
= fsinfo
.bsize
;
516 info
->wtmax
= NFS_MAXDATA
;
517 info
->wtpref
= fsinfo
.tsize
;
518 info
->wtmult
= fsinfo
.bsize
;
519 info
->dtpref
= fsinfo
.tsize
;
520 info
->maxfilesize
= 0x7FFFFFFF;
521 info
->lease_time
= 0;
527 nfs_proc_pathconf(struct nfs_server
*server
, struct nfs_fh
*fhandle
,
528 struct nfs_pathconf
*info
)
531 info
->max_namelen
= NFS2_MAXNAMLEN
;
535 extern u32
* nfs_decode_dirent(u32
*, struct nfs_entry
*, int);
538 nfs_read_done(struct rpc_task
*task
)
540 struct nfs_read_data
*data
= (struct nfs_read_data
*) task
->tk_calldata
;
542 if (task
->tk_status
>= 0) {
543 nfs_refresh_inode(data
->inode
, data
->res
.fattr
);
544 /* Emulate the eof flag, which isn't normally needed in NFSv2
545 * as it is guaranteed to always return the file attributes
547 if (data
->args
.offset
+ data
->args
.count
>= data
->res
.fattr
->size
)
550 nfs_readpage_result(task
);
554 nfs_proc_read_setup(struct nfs_read_data
*data
)
556 struct rpc_task
*task
= &data
->task
;
557 struct inode
*inode
= data
->inode
;
559 struct rpc_message msg
= {
560 .rpc_proc
= &nfs_procedures
[NFSPROC_READ
],
561 .rpc_argp
= &data
->args
,
562 .rpc_resp
= &data
->res
,
563 .rpc_cred
= data
->cred
,
566 /* N.B. Do we need to test? Never called for swapfile inode */
567 flags
= RPC_TASK_ASYNC
| (IS_SWAPFILE(inode
)? NFS_RPC_SWAPFLAGS
: 0);
569 /* Finalize the task. */
570 rpc_init_task(task
, NFS_CLIENT(inode
), nfs_read_done
, flags
);
571 rpc_call_setup(task
, &msg
, 0);
575 nfs_write_done(struct rpc_task
*task
)
577 struct nfs_write_data
*data
= (struct nfs_write_data
*) task
->tk_calldata
;
579 if (task
->tk_status
>= 0)
580 nfs_refresh_inode(data
->inode
, data
->res
.fattr
);
581 nfs_writeback_done(task
);
585 nfs_proc_write_setup(struct nfs_write_data
*data
, int how
)
587 struct rpc_task
*task
= &data
->task
;
588 struct inode
*inode
= data
->inode
;
590 struct rpc_message msg
= {
591 .rpc_proc
= &nfs_procedures
[NFSPROC_WRITE
],
592 .rpc_argp
= &data
->args
,
593 .rpc_resp
= &data
->res
,
594 .rpc_cred
= data
->cred
,
597 /* Note: NFSv2 ignores @stable and always uses NFS_FILE_SYNC */
598 data
->args
.stable
= NFS_FILE_SYNC
;
600 /* Set the initial flags for the task. */
601 flags
= (how
& FLUSH_SYNC
) ? 0 : RPC_TASK_ASYNC
;
603 /* Finalize the task. */
604 rpc_init_task(task
, NFS_CLIENT(inode
), nfs_write_done
, flags
);
605 rpc_call_setup(task
, &msg
, 0);
609 nfs_proc_commit_setup(struct nfs_write_data
*data
, int how
)
615 nfs_proc_lock(struct file
*filp
, int cmd
, struct file_lock
*fl
)
617 return nlmclnt_proc(filp
->f_dentry
->d_inode
, cmd
, fl
);
621 struct nfs_rpc_ops nfs_v2_clientops
= {
622 .version
= 2, /* protocol version */
623 .dentry_ops
= &nfs_dentry_operations
,
624 .dir_inode_ops
= &nfs_dir_inode_operations
,
625 .getroot
= nfs_proc_get_root
,
626 .getattr
= nfs_proc_getattr
,
627 .setattr
= nfs_proc_setattr
,
628 .lookup
= nfs_proc_lookup
,
629 .access
= NULL
, /* access */
630 .readlink
= nfs_proc_readlink
,
631 .read
= nfs_proc_read
,
632 .write
= nfs_proc_write
,
633 .commit
= NULL
, /* commit */
634 .create
= nfs_proc_create
,
635 .remove
= nfs_proc_remove
,
636 .unlink_setup
= nfs_proc_unlink_setup
,
637 .unlink_done
= nfs_proc_unlink_done
,
638 .rename
= nfs_proc_rename
,
639 .link
= nfs_proc_link
,
640 .symlink
= nfs_proc_symlink
,
641 .mkdir
= nfs_proc_mkdir
,
642 .rmdir
= nfs_proc_rmdir
,
643 .readdir
= nfs_proc_readdir
,
644 .mknod
= nfs_proc_mknod
,
645 .statfs
= nfs_proc_statfs
,
646 .fsinfo
= nfs_proc_fsinfo
,
647 .pathconf
= nfs_proc_pathconf
,
648 .decode_dirent
= nfs_decode_dirent
,
649 .read_setup
= nfs_proc_read_setup
,
650 .write_setup
= nfs_proc_write_setup
,
651 .commit_setup
= nfs_proc_commit_setup
,
652 .file_open
= nfs_open
,
653 .file_release
= nfs_release
,
654 .lock
= nfs_proc_lock
,