fs: no games with DCACHE_UNHASHED
[linux-2.6-block.git] / fs / nfsctl.c
CommitLineData
1da177e4
LT
1/*
2 * fs/nfsctl.c
3 *
4 * This should eventually move to userland.
5 *
6 */
715b49ef 7#include <linux/types.h>
1da177e4
LT
8#include <linux/file.h>
9#include <linux/fs.h>
1da177e4 10#include <linux/nfsd/syscall.h>
9789cfe2
RD
11#include <linux/cred.h>
12#include <linux/sched.h>
1da177e4
LT
13#include <linux/linkage.h>
14#include <linux/namei.h>
15#include <linux/mount.h>
16#include <linux/syscalls.h>
17#include <asm/uaccess.h>
18
19/*
20 * open a file on nfsd fs
21 */
22
23static struct file *do_open(char *name, int flags)
24{
25 struct nameidata nd;
16b6287a 26 struct vfsmount *mnt;
1da177e4
LT
27 int error;
28
16b6287a
JJS
29 mnt = do_kern_mount("nfsd", 0, "nfsd", NULL);
30 if (IS_ERR(mnt))
31 return (struct file *)mnt;
1da177e4 32
16b6287a
JJS
33 error = vfs_path_lookup(mnt->mnt_root, mnt, name, 0, &nd);
34 mntput(mnt); /* drop do_kern_mount reference */
1da177e4
LT
35 if (error)
36 return ERR_PTR(error);
37
38 if (flags == O_RDWR)
3fb64190
CH
39 error = may_open(&nd.path, MAY_READ|MAY_WRITE,
40 FMODE_READ|FMODE_WRITE);
1da177e4 41 else
3fb64190 42 error = may_open(&nd.path, MAY_WRITE, FMODE_WRITE);
1da177e4
LT
43
44 if (!error)
745ca247
DH
45 return dentry_open(nd.path.dentry, nd.path.mnt, flags,
46 current_cred());
1da177e4 47
1d957f9b 48 path_put(&nd.path);
1da177e4
LT
49 return ERR_PTR(error);
50}
51
52static struct {
53 char *name; int wsize; int rsize;
54} map[] = {
55 [NFSCTL_SVC] = {
56 .name = ".svc",
57 .wsize = sizeof(struct nfsctl_svc)
58 },
59 [NFSCTL_ADDCLIENT] = {
60 .name = ".add",
61 .wsize = sizeof(struct nfsctl_client)
62 },
63 [NFSCTL_DELCLIENT] = {
64 .name = ".del",
65 .wsize = sizeof(struct nfsctl_client)
66 },
67 [NFSCTL_EXPORT] = {
68 .name = ".export",
69 .wsize = sizeof(struct nfsctl_export)
70 },
71 [NFSCTL_UNEXPORT] = {
72 .name = ".unexport",
73 .wsize = sizeof(struct nfsctl_export)
74 },
75 [NFSCTL_GETFD] = {
76 .name = ".getfd",
77 .wsize = sizeof(struct nfsctl_fdparm),
78 .rsize = NFS_FHSIZE
79 },
80 [NFSCTL_GETFS] = {
81 .name = ".getfs",
82 .wsize = sizeof(struct nfsctl_fsparm),
83 .rsize = sizeof(struct knfsd_fh)
84 },
85};
86
1e7bfb21
HC
87SYSCALL_DEFINE3(nfsservctl, int, cmd, struct nfsctl_arg __user *, arg,
88 void __user *, res)
1da177e4
LT
89{
90 struct file *file;
91 void __user *p = &arg->u;
92 int version;
93 int err;
94
95 if (copy_from_user(&version, &arg->ca_version, sizeof(int)))
96 return -EFAULT;
97
85c6932e 98 if (version != NFSCTL_VERSION)
1da177e4 99 return -EINVAL;
1da177e4 100
e8c96f8c 101 if (cmd < 0 || cmd >= ARRAY_SIZE(map) || !map[cmd].name)
1da177e4
LT
102 return -EINVAL;
103
104 file = do_open(map[cmd].name, map[cmd].rsize ? O_RDWR : O_WRONLY);
105 if (IS_ERR(file))
106 return PTR_ERR(file);
107 err = file->f_op->write(file, p, map[cmd].wsize, &file->f_pos);
108 if (err >= 0 && map[cmd].rsize)
109 err = file->f_op->read(file, res, map[cmd].rsize, &file->f_pos);
110 if (err >= 0)
111 err = 0;
112 fput(file);
113 return err;
114}