2 * linux/fs/nfsd/nfsctl.c
4 * Syscall interface to knfsd.
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
9 #include <linux/config.h>
10 #include <linux/module.h>
12 #include <linux/linkage.h>
13 #include <linux/time.h>
14 #include <linux/errno.h>
16 #include <linux/fcntl.h>
17 #include <linux/net.h>
19 #include <linux/syscalls.h>
20 #include <linux/unistd.h>
21 #include <linux/slab.h>
22 #include <linux/proc_fs.h>
23 #include <linux/seq_file.h>
24 #include <linux/pagemap.h>
25 #include <linux/init.h>
27 #include <linux/nfs.h>
28 #include <linux/nfsd_idmap.h>
29 #include <linux/sunrpc/svc.h>
30 #include <linux/nfsd/nfsd.h>
31 #include <linux/nfsd/cache.h>
32 #include <linux/nfsd/xdr.h>
33 #include <linux/nfsd/syscall.h>
34 #include <linux/nfsd/interface.h>
36 #include <asm/uaccess.h>
39 * We have a single directory with 9 nodes in it.
58 * write() for these nodes.
60 static ssize_t
write_svc(struct file
*file
, char *buf
, size_t size
);
61 static ssize_t
write_add(struct file
*file
, char *buf
, size_t size
);
62 static ssize_t
write_del(struct file
*file
, char *buf
, size_t size
);
63 static ssize_t
write_export(struct file
*file
, char *buf
, size_t size
);
64 static ssize_t
write_unexport(struct file
*file
, char *buf
, size_t size
);
65 static ssize_t
write_getfd(struct file
*file
, char *buf
, size_t size
);
66 static ssize_t
write_getfs(struct file
*file
, char *buf
, size_t size
);
67 static ssize_t
write_filehandle(struct file
*file
, char *buf
, size_t size
);
68 static ssize_t
write_threads(struct file
*file
, char *buf
, size_t size
);
69 static ssize_t
write_leasetime(struct file
*file
, char *buf
, size_t size
);
70 static ssize_t
write_recoverydir(struct file
*file
, char *buf
, size_t size
);
72 static ssize_t (*write_op
[])(struct file
*, char *, size_t) = {
73 [NFSD_Svc
] = write_svc
,
74 [NFSD_Add
] = write_add
,
75 [NFSD_Del
] = write_del
,
76 [NFSD_Export
] = write_export
,
77 [NFSD_Unexport
] = write_unexport
,
78 [NFSD_Getfd
] = write_getfd
,
79 [NFSD_Getfs
] = write_getfs
,
80 [NFSD_Fh
] = write_filehandle
,
81 [NFSD_Threads
] = write_threads
,
82 [NFSD_Leasetime
] = write_leasetime
,
83 [NFSD_RecoveryDir
] = write_recoverydir
,
86 static ssize_t
nfsctl_transaction_write(struct file
*file
, const char __user
*buf
, size_t size
, loff_t
*pos
)
88 ino_t ino
= file
->f_dentry
->d_inode
->i_ino
;
92 if (ino
>= sizeof(write_op
)/sizeof(write_op
[0]) || !write_op
[ino
])
95 data
= simple_transaction_get(file
, buf
, size
);
99 rv
= write_op
[ino
](file
, data
, size
);
101 simple_transaction_set(file
, rv
);
107 static struct file_operations transaction_ops
= {
108 .write
= nfsctl_transaction_write
,
109 .read
= simple_transaction_read
,
110 .release
= simple_transaction_release
,
113 extern struct seq_operations nfs_exports_op
;
114 static int exports_open(struct inode
*inode
, struct file
*file
)
116 return seq_open(file
, &nfs_exports_op
);
119 static struct file_operations exports_operations
= {
120 .open
= exports_open
,
123 .release
= seq_release
,
126 /*----------------------------------------------------------------------------*/
128 * payload - write methods
129 * If the method has a response, the response should be put in buf,
130 * and the length returned. Otherwise return 0 or and -error.
133 static ssize_t
write_svc(struct file
*file
, char *buf
, size_t size
)
135 struct nfsctl_svc
*data
;
136 if (size
< sizeof(*data
))
138 data
= (struct nfsctl_svc
*) buf
;
139 return nfsd_svc(data
->svc_port
, data
->svc_nthreads
);
142 static ssize_t
write_add(struct file
*file
, char *buf
, size_t size
)
144 struct nfsctl_client
*data
;
145 if (size
< sizeof(*data
))
147 data
= (struct nfsctl_client
*)buf
;
148 return exp_addclient(data
);
151 static ssize_t
write_del(struct file
*file
, char *buf
, size_t size
)
153 struct nfsctl_client
*data
;
154 if (size
< sizeof(*data
))
156 data
= (struct nfsctl_client
*)buf
;
157 return exp_delclient(data
);
160 static ssize_t
write_export(struct file
*file
, char *buf
, size_t size
)
162 struct nfsctl_export
*data
;
163 if (size
< sizeof(*data
))
165 data
= (struct nfsctl_export
*)buf
;
166 return exp_export(data
);
169 static ssize_t
write_unexport(struct file
*file
, char *buf
, size_t size
)
171 struct nfsctl_export
*data
;
173 if (size
< sizeof(*data
))
175 data
= (struct nfsctl_export
*)buf
;
176 return exp_unexport(data
);
179 static ssize_t
write_getfs(struct file
*file
, char *buf
, size_t size
)
181 struct nfsctl_fsparm
*data
;
182 struct sockaddr_in
*sin
;
183 struct auth_domain
*clp
;
185 struct knfsd_fh
*res
;
187 if (size
< sizeof(*data
))
189 data
= (struct nfsctl_fsparm
*)buf
;
190 err
= -EPROTONOSUPPORT
;
191 if (data
->gd_addr
.sa_family
!= AF_INET
)
193 sin
= (struct sockaddr_in
*)&data
->gd_addr
;
194 if (data
->gd_maxlen
> NFS3_FHSIZE
)
195 data
->gd_maxlen
= NFS3_FHSIZE
;
197 res
= (struct knfsd_fh
*)buf
;
200 if (!(clp
= auth_unix_lookup(sin
->sin_addr
)))
203 err
= exp_rootfh(clp
, data
->gd_path
, res
, data
->gd_maxlen
);
204 auth_domain_put(clp
);
208 err
= res
->fh_size
+ (int)&((struct knfsd_fh
*)0)->fh_base
;
213 static ssize_t
write_getfd(struct file
*file
, char *buf
, size_t size
)
215 struct nfsctl_fdparm
*data
;
216 struct sockaddr_in
*sin
;
217 struct auth_domain
*clp
;
222 if (size
< sizeof(*data
))
224 data
= (struct nfsctl_fdparm
*)buf
;
225 err
= -EPROTONOSUPPORT
;
226 if (data
->gd_addr
.sa_family
!= AF_INET
)
229 if (data
->gd_version
< 2 || data
->gd_version
> NFSSVC_MAXVERS
)
233 sin
= (struct sockaddr_in
*)&data
->gd_addr
;
235 if (!(clp
= auth_unix_lookup(sin
->sin_addr
)))
238 err
= exp_rootfh(clp
, data
->gd_path
, &fh
, NFS_FHSIZE
);
239 auth_domain_put(clp
);
244 memset(res
,0, NFS_FHSIZE
);
245 memcpy(res
, &fh
.fh_base
, fh
.fh_size
);
252 static ssize_t
write_filehandle(struct file
*file
, char *buf
, size_t size
)
255 * domain path maxsize
259 * qword quoting is used, so filehandle will be \x....
265 struct auth_domain
*dom
;
268 if (buf
[size
-1] != '\n')
273 len
= qword_get(&mesg
, dname
, size
);
274 if (len
<= 0) return -EINVAL
;
277 len
= qword_get(&mesg
, path
, size
);
278 if (len
<= 0) return -EINVAL
;
280 len
= get_int(&mesg
, &maxsize
);
284 if (maxsize
< NFS_FHSIZE
)
286 if (maxsize
> NFS3_FHSIZE
)
287 maxsize
= NFS3_FHSIZE
;
289 if (qword_get(&mesg
, mesg
, size
)>0)
292 /* we have all the words, they are in buf.. */
293 dom
= unix_domain_find(dname
);
297 len
= exp_rootfh(dom
, path
, &fh
, maxsize
);
298 auth_domain_put(dom
);
302 mesg
= buf
; len
= SIMPLE_TRANSACTION_LIMIT
;
303 qword_addhex(&mesg
, &len
, (char*)&fh
.fh_base
, fh
.fh_size
);
308 extern int nfsd_nrthreads(void);
310 static ssize_t
write_threads(struct file
*file
, char *buf
, size_t size
)
312 /* if size > 0, look for a number of threads and call nfsd_svc
313 * then write out number of threads as reply
319 rv
= get_int(&mesg
, &newthreads
);
324 rv
= nfsd_svc(2049, newthreads
);
328 sprintf(buf
, "%d\n", nfsd_nrthreads());
332 extern time_t nfs4_leasetime(void);
334 static ssize_t
write_leasetime(struct file
*file
, char *buf
, size_t size
)
336 /* if size > 10 seconds, call
337 * nfs4_reset_lease() then write out the new lease (seconds) as reply
344 rv
= get_int(&mesg
, &lease
);
347 if (lease
< 10 || lease
> 3600)
349 nfs4_reset_lease(lease
);
351 sprintf(buf
, "%ld\n", nfs4_lease_time());
355 static ssize_t
write_recoverydir(struct file
*file
, char *buf
, size_t size
)
361 if (size
> PATH_MAX
|| buf
[size
-1] != '\n')
366 len
= qword_get(&mesg
, recdir
, size
);
370 status
= nfs4_reset_recoverydir(recdir
);
374 /*----------------------------------------------------------------------------*/
376 * populating the filesystem.
379 static int nfsd_fill_super(struct super_block
* sb
, void * data
, int silent
)
381 static struct tree_descr nfsd_files
[] = {
382 [NFSD_Svc
] = {".svc", &transaction_ops
, S_IWUSR
},
383 [NFSD_Add
] = {".add", &transaction_ops
, S_IWUSR
},
384 [NFSD_Del
] = {".del", &transaction_ops
, S_IWUSR
},
385 [NFSD_Export
] = {".export", &transaction_ops
, S_IWUSR
},
386 [NFSD_Unexport
] = {".unexport", &transaction_ops
, S_IWUSR
},
387 [NFSD_Getfd
] = {".getfd", &transaction_ops
, S_IWUSR
|S_IRUSR
},
388 [NFSD_Getfs
] = {".getfs", &transaction_ops
, S_IWUSR
|S_IRUSR
},
389 [NFSD_List
] = {"exports", &exports_operations
, S_IRUGO
},
390 [NFSD_Fh
] = {"filehandle", &transaction_ops
, S_IWUSR
|S_IRUSR
},
391 [NFSD_Threads
] = {"threads", &transaction_ops
, S_IWUSR
|S_IRUSR
},
392 #ifdef CONFIG_NFSD_V4
393 [NFSD_Leasetime
] = {"nfsv4leasetime", &transaction_ops
, S_IWUSR
|S_IRUSR
},
394 [NFSD_RecoveryDir
] = {"nfsv4recoverydir", &transaction_ops
, S_IWUSR
|S_IRUSR
},
398 return simple_fill_super(sb
, 0x6e667364, nfsd_files
);
401 static struct super_block
*nfsd_get_sb(struct file_system_type
*fs_type
,
402 int flags
, const char *dev_name
, void *data
)
404 return get_sb_single(fs_type
, flags
, data
, nfsd_fill_super
);
407 static struct file_system_type nfsd_fs_type
= {
408 .owner
= THIS_MODULE
,
410 .get_sb
= nfsd_get_sb
,
411 .kill_sb
= kill_litter_super
,
414 static int __init
init_nfsd(void)
417 printk(KERN_INFO
"Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
419 nfsd_stat_init(); /* Statistics */
420 nfsd_cache_init(); /* RPC reply cache */
421 nfsd_export_init(); /* Exports table */
422 nfsd_lockd_init(); /* lockd->nfsd callbacks */
423 nfs4_state_init(); /* NFSv4 locking state */
424 nfsd_idmap_init(); /* Name to ID mapping */
425 if (proc_mkdir("fs/nfs", NULL
)) {
426 struct proc_dir_entry
*entry
;
427 entry
= create_proc_entry("fs/nfs/exports", 0, NULL
);
429 entry
->proc_fops
= &exports_operations
;
431 retval
= register_filesystem(&nfsd_fs_type
);
433 nfsd_export_shutdown();
434 nfsd_cache_shutdown();
435 remove_proc_entry("fs/nfs/exports", NULL
);
436 remove_proc_entry("fs/nfs", NULL
);
437 nfsd_stat_shutdown();
438 nfsd_lockd_shutdown();
443 static void __exit
exit_nfsd(void)
445 nfsd_export_shutdown();
446 nfsd_cache_shutdown();
447 remove_proc_entry("fs/nfs/exports", NULL
);
448 remove_proc_entry("fs/nfs", NULL
);
449 nfsd_stat_shutdown();
450 nfsd_lockd_shutdown();
451 nfsd_idmap_shutdown();
452 unregister_filesystem(&nfsd_fs_type
);
455 MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
456 MODULE_LICENSE("GPL");
457 module_init(init_nfsd
)
458 module_exit(exit_nfsd
)