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/module.h>
11 #include <linux/linkage.h>
12 #include <linux/time.h>
13 #include <linux/errno.h>
15 #include <linux/fcntl.h>
16 #include <linux/net.h>
18 #include <linux/syscalls.h>
19 #include <linux/unistd.h>
20 #include <linux/slab.h>
21 #include <linux/proc_fs.h>
22 #include <linux/seq_file.h>
23 #include <linux/pagemap.h>
24 #include <linux/init.h>
25 #include <linux/string.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>
38 unsigned int nfsd_versbits
= ~0;
41 * We have a single directory with 9 nodes in it.
57 * The below MUST come last. Otherwise we leave a hole in nfsd_files[]
58 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops
67 * write() for these nodes.
69 static ssize_t
write_svc(struct file
*file
, char *buf
, size_t size
);
70 static ssize_t
write_add(struct file
*file
, char *buf
, size_t size
);
71 static ssize_t
write_del(struct file
*file
, char *buf
, size_t size
);
72 static ssize_t
write_export(struct file
*file
, char *buf
, size_t size
);
73 static ssize_t
write_unexport(struct file
*file
, char *buf
, size_t size
);
74 static ssize_t
write_getfd(struct file
*file
, char *buf
, size_t size
);
75 static ssize_t
write_getfs(struct file
*file
, char *buf
, size_t size
);
76 static ssize_t
write_filehandle(struct file
*file
, char *buf
, size_t size
);
77 static ssize_t
write_threads(struct file
*file
, char *buf
, size_t size
);
78 static ssize_t
write_versions(struct file
*file
, char *buf
, size_t size
);
80 static ssize_t
write_leasetime(struct file
*file
, char *buf
, size_t size
);
81 static ssize_t
write_recoverydir(struct file
*file
, char *buf
, size_t size
);
84 static ssize_t (*write_op
[])(struct file
*, char *, size_t) = {
85 [NFSD_Svc
] = write_svc
,
86 [NFSD_Add
] = write_add
,
87 [NFSD_Del
] = write_del
,
88 [NFSD_Export
] = write_export
,
89 [NFSD_Unexport
] = write_unexport
,
90 [NFSD_Getfd
] = write_getfd
,
91 [NFSD_Getfs
] = write_getfs
,
92 [NFSD_Fh
] = write_filehandle
,
93 [NFSD_Threads
] = write_threads
,
94 [NFSD_Versions
] = write_versions
,
96 [NFSD_Leasetime
] = write_leasetime
,
97 [NFSD_RecoveryDir
] = write_recoverydir
,
101 static ssize_t
nfsctl_transaction_write(struct file
*file
, const char __user
*buf
, size_t size
, loff_t
*pos
)
103 ino_t ino
= file
->f_dentry
->d_inode
->i_ino
;
107 if (ino
>= ARRAY_SIZE(write_op
) || !write_op
[ino
])
110 data
= simple_transaction_get(file
, buf
, size
);
112 return PTR_ERR(data
);
114 rv
= write_op
[ino
](file
, data
, size
);
116 simple_transaction_set(file
, rv
);
122 static ssize_t
nfsctl_transaction_read(struct file
*file
, char __user
*buf
, size_t size
, loff_t
*pos
)
124 if (! file
->private_data
) {
125 /* An attempt to read a transaction file without writing
126 * causes a 0-byte write so that the file can return
129 ssize_t rv
= nfsctl_transaction_write(file
, buf
, 0, pos
);
133 return simple_transaction_read(file
, buf
, size
, pos
);
136 static const struct file_operations transaction_ops
= {
137 .write
= nfsctl_transaction_write
,
138 .read
= nfsctl_transaction_read
,
139 .release
= simple_transaction_release
,
142 extern struct seq_operations nfs_exports_op
;
143 static int exports_open(struct inode
*inode
, struct file
*file
)
145 return seq_open(file
, &nfs_exports_op
);
148 static const struct file_operations exports_operations
= {
149 .open
= exports_open
,
152 .release
= seq_release
,
155 /*----------------------------------------------------------------------------*/
157 * payload - write methods
158 * If the method has a response, the response should be put in buf,
159 * and the length returned. Otherwise return 0 or and -error.
162 static ssize_t
write_svc(struct file
*file
, char *buf
, size_t size
)
164 struct nfsctl_svc
*data
;
165 if (size
< sizeof(*data
))
167 data
= (struct nfsctl_svc
*) buf
;
168 return nfsd_svc(data
->svc_port
, data
->svc_nthreads
);
171 static ssize_t
write_add(struct file
*file
, char *buf
, size_t size
)
173 struct nfsctl_client
*data
;
174 if (size
< sizeof(*data
))
176 data
= (struct nfsctl_client
*)buf
;
177 return exp_addclient(data
);
180 static ssize_t
write_del(struct file
*file
, char *buf
, size_t size
)
182 struct nfsctl_client
*data
;
183 if (size
< sizeof(*data
))
185 data
= (struct nfsctl_client
*)buf
;
186 return exp_delclient(data
);
189 static ssize_t
write_export(struct file
*file
, char *buf
, size_t size
)
191 struct nfsctl_export
*data
;
192 if (size
< sizeof(*data
))
194 data
= (struct nfsctl_export
*)buf
;
195 return exp_export(data
);
198 static ssize_t
write_unexport(struct file
*file
, char *buf
, size_t size
)
200 struct nfsctl_export
*data
;
202 if (size
< sizeof(*data
))
204 data
= (struct nfsctl_export
*)buf
;
205 return exp_unexport(data
);
208 static ssize_t
write_getfs(struct file
*file
, char *buf
, size_t size
)
210 struct nfsctl_fsparm
*data
;
211 struct sockaddr_in
*sin
;
212 struct auth_domain
*clp
;
214 struct knfsd_fh
*res
;
216 if (size
< sizeof(*data
))
218 data
= (struct nfsctl_fsparm
*)buf
;
219 err
= -EPROTONOSUPPORT
;
220 if (data
->gd_addr
.sa_family
!= AF_INET
)
222 sin
= (struct sockaddr_in
*)&data
->gd_addr
;
223 if (data
->gd_maxlen
> NFS3_FHSIZE
)
224 data
->gd_maxlen
= NFS3_FHSIZE
;
226 res
= (struct knfsd_fh
*)buf
;
229 if (!(clp
= auth_unix_lookup(sin
->sin_addr
)))
232 err
= exp_rootfh(clp
, data
->gd_path
, res
, data
->gd_maxlen
);
233 auth_domain_put(clp
);
237 err
= res
->fh_size
+ (int)&((struct knfsd_fh
*)0)->fh_base
;
242 static ssize_t
write_getfd(struct file
*file
, char *buf
, size_t size
)
244 struct nfsctl_fdparm
*data
;
245 struct sockaddr_in
*sin
;
246 struct auth_domain
*clp
;
251 if (size
< sizeof(*data
))
253 data
= (struct nfsctl_fdparm
*)buf
;
254 err
= -EPROTONOSUPPORT
;
255 if (data
->gd_addr
.sa_family
!= AF_INET
)
258 if (data
->gd_version
< 2 || data
->gd_version
> NFSSVC_MAXVERS
)
262 sin
= (struct sockaddr_in
*)&data
->gd_addr
;
264 if (!(clp
= auth_unix_lookup(sin
->sin_addr
)))
267 err
= exp_rootfh(clp
, data
->gd_path
, &fh
, NFS_FHSIZE
);
268 auth_domain_put(clp
);
273 memset(res
,0, NFS_FHSIZE
);
274 memcpy(res
, &fh
.fh_base
, fh
.fh_size
);
281 static ssize_t
write_filehandle(struct file
*file
, char *buf
, size_t size
)
284 * domain path maxsize
288 * qword quoting is used, so filehandle will be \x....
294 struct auth_domain
*dom
;
297 if (buf
[size
-1] != '\n')
302 len
= qword_get(&mesg
, dname
, size
);
303 if (len
<= 0) return -EINVAL
;
306 len
= qword_get(&mesg
, path
, size
);
307 if (len
<= 0) return -EINVAL
;
309 len
= get_int(&mesg
, &maxsize
);
313 if (maxsize
< NFS_FHSIZE
)
315 if (maxsize
> NFS3_FHSIZE
)
316 maxsize
= NFS3_FHSIZE
;
318 if (qword_get(&mesg
, mesg
, size
)>0)
321 /* we have all the words, they are in buf.. */
322 dom
= unix_domain_find(dname
);
326 len
= exp_rootfh(dom
, path
, &fh
, maxsize
);
327 auth_domain_put(dom
);
331 mesg
= buf
; len
= SIMPLE_TRANSACTION_LIMIT
;
332 qword_addhex(&mesg
, &len
, (char*)&fh
.fh_base
, fh
.fh_size
);
337 extern int nfsd_nrthreads(void);
339 static ssize_t
write_threads(struct file
*file
, char *buf
, size_t size
)
341 /* if size > 0, look for a number of threads and call nfsd_svc
342 * then write out number of threads as reply
348 rv
= get_int(&mesg
, &newthreads
);
353 rv
= nfsd_svc(2049, newthreads
);
357 sprintf(buf
, "%d\n", nfsd_nrthreads());
361 static ssize_t
write_versions(struct file
*file
, char *buf
, size_t size
)
365 * [-/+]vers [-/+]vers ...
376 if (buf
[size
-1] != '\n')
381 len
= qword_get(&mesg
, vers
, size
);
382 if (len
<= 0) return -EINVAL
;
385 if (sign
== '+' || sign
== '-')
386 num
= simple_strtol((vers
+1), NULL
, 0);
388 num
= simple_strtol(vers
, NULL
, 0);
394 NFSCTL_VERSET(nfsd_versbits
, num
);
396 NFSCTL_VERUNSET(nfsd_versbits
, num
);
403 } while ((len
= qword_get(&mesg
, vers
, size
)) > 0);
404 /* If all get turned off, turn them back on, as
405 * having no versions is BAD
407 if ((nfsd_versbits
& NFSCTL_VERALL
)==0)
408 nfsd_versbits
= NFSCTL_VERALL
;
410 /* Now write current state into reply buffer */
413 for (num
=2 ; num
<= 4 ; num
++)
414 if (NFSCTL_VERISSET(NFSCTL_VERALL
, num
)) {
415 len
+= sprintf(buf
+len
, "%s%c%d", sep
,
416 NFSCTL_VERISSET(nfsd_versbits
, num
)?'+':'-',
420 len
+= sprintf(buf
+len
, "\n");
424 #ifdef CONFIG_NFSD_V4
425 extern time_t nfs4_leasetime(void);
427 static ssize_t
write_leasetime(struct file
*file
, char *buf
, size_t size
)
429 /* if size > 10 seconds, call
430 * nfs4_reset_lease() then write out the new lease (seconds) as reply
437 rv
= get_int(&mesg
, &lease
);
440 if (lease
< 10 || lease
> 3600)
442 nfs4_reset_lease(lease
);
444 sprintf(buf
, "%ld\n", nfs4_lease_time());
448 static ssize_t
write_recoverydir(struct file
*file
, char *buf
, size_t size
)
454 if (size
> PATH_MAX
|| buf
[size
-1] != '\n')
459 len
= qword_get(&mesg
, recdir
, size
);
463 status
= nfs4_reset_recoverydir(recdir
);
468 /*----------------------------------------------------------------------------*/
470 * populating the filesystem.
473 static int nfsd_fill_super(struct super_block
* sb
, void * data
, int silent
)
475 static struct tree_descr nfsd_files
[] = {
476 [NFSD_Svc
] = {".svc", &transaction_ops
, S_IWUSR
},
477 [NFSD_Add
] = {".add", &transaction_ops
, S_IWUSR
},
478 [NFSD_Del
] = {".del", &transaction_ops
, S_IWUSR
},
479 [NFSD_Export
] = {".export", &transaction_ops
, S_IWUSR
},
480 [NFSD_Unexport
] = {".unexport", &transaction_ops
, S_IWUSR
},
481 [NFSD_Getfd
] = {".getfd", &transaction_ops
, S_IWUSR
|S_IRUSR
},
482 [NFSD_Getfs
] = {".getfs", &transaction_ops
, S_IWUSR
|S_IRUSR
},
483 [NFSD_List
] = {"exports", &exports_operations
, S_IRUGO
},
484 [NFSD_Fh
] = {"filehandle", &transaction_ops
, S_IWUSR
|S_IRUSR
},
485 [NFSD_Threads
] = {"threads", &transaction_ops
, S_IWUSR
|S_IRUSR
},
486 [NFSD_Versions
] = {"versions", &transaction_ops
, S_IWUSR
|S_IRUSR
},
487 #ifdef CONFIG_NFSD_V4
488 [NFSD_Leasetime
] = {"nfsv4leasetime", &transaction_ops
, S_IWUSR
|S_IRUSR
},
489 [NFSD_RecoveryDir
] = {"nfsv4recoverydir", &transaction_ops
, S_IWUSR
|S_IRUSR
},
493 return simple_fill_super(sb
, 0x6e667364, nfsd_files
);
496 static int nfsd_get_sb(struct file_system_type
*fs_type
,
497 int flags
, const char *dev_name
, void *data
, struct vfsmount
*mnt
)
499 return get_sb_single(fs_type
, flags
, data
, nfsd_fill_super
, mnt
);
502 static struct file_system_type nfsd_fs_type
= {
503 .owner
= THIS_MODULE
,
505 .get_sb
= nfsd_get_sb
,
506 .kill_sb
= kill_litter_super
,
509 static int __init
init_nfsd(void)
512 printk(KERN_INFO
"Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
514 nfsd_stat_init(); /* Statistics */
515 nfsd_cache_init(); /* RPC reply cache */
516 nfsd_export_init(); /* Exports table */
517 nfsd_lockd_init(); /* lockd->nfsd callbacks */
518 nfs4_state_init(); /* NFSv4 locking state */
519 nfsd_idmap_init(); /* Name to ID mapping */
520 if (proc_mkdir("fs/nfs", NULL
)) {
521 struct proc_dir_entry
*entry
;
522 entry
= create_proc_entry("fs/nfs/exports", 0, NULL
);
524 entry
->proc_fops
= &exports_operations
;
526 retval
= register_filesystem(&nfsd_fs_type
);
528 nfsd_export_shutdown();
529 nfsd_cache_shutdown();
530 remove_proc_entry("fs/nfs/exports", NULL
);
531 remove_proc_entry("fs/nfs", NULL
);
532 nfsd_stat_shutdown();
533 nfsd_lockd_shutdown();
538 static void __exit
exit_nfsd(void)
540 nfsd_export_shutdown();
541 nfsd_cache_shutdown();
542 remove_proc_entry("fs/nfs/exports", NULL
);
543 remove_proc_entry("fs/nfs", NULL
);
544 nfsd_stat_shutdown();
545 nfsd_lockd_shutdown();
546 nfsd_idmap_shutdown();
547 unregister_filesystem(&nfsd_fs_type
);
550 MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
551 MODULE_LICENSE("GPL");
552 module_init(init_nfsd
)
553 module_exit(exit_nfsd
)