blob: 5bee0313dffd718d557bd3b01cdb0a2321d59f02 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Syscall interface to knfsd.
3 *
4 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
5 */
6
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Al Viro3f8206d2008-07-26 03:46:43 -04008#include <linux/namei.h>
NeilBrownb41b66d2006-10-02 02:17:48 -07009#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
NeilBrown80212d52006-10-02 02:17:47 -070011#include <linux/sunrpc/svcsock.h>
Wendy Cheng4373ea82008-01-17 11:10:12 -050012#include <linux/lockd/lockd.h>
Jeff Layton59766872013-02-04 12:50:00 -050013#include <linux/sunrpc/addr.h>
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -050014#include <linux/sunrpc/gss_api.h>
J. Bruce Fieldsb084f592011-05-31 12:24:58 -040015#include <linux/sunrpc/gss_krb5_enctypes.h>
Jeff Layton813fd322012-03-21 09:52:08 -040016#include <linux/sunrpc/rpc_pipe_fs.h>
Paul Gortmaker143cb492011-07-01 14:23:34 -040017#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050019#include "idmap.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020020#include "nfsd.h"
21#include "cache.h"
Bryan Schumakerf3c75212012-11-27 09:35:10 -050022#include "state.h"
Jeff Layton7ea34ac2012-03-21 09:52:05 -040023#include "netns.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +020024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -050026 * We have a single directory with several nodes in it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
28enum {
29 NFSD_Root = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 NFSD_List,
J. Bruce Fieldse8e87532009-12-14 12:53:32 -050031 NFSD_Export_features,
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 NFSD_Fh,
Wendy Cheng4373ea82008-01-17 11:10:12 -050033 NFSD_FO_UnlockIP,
Wendy Cheng17efa372008-01-17 11:10:12 -050034 NFSD_FO_UnlockFS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 NFSD_Threads,
Greg Bankseed29652006-10-02 02:18:02 -070036 NFSD_Pool_Threads,
Greg Banks03cf6c92009-01-13 21:26:36 +110037 NFSD_Pool_Stats,
NeilBrown70c3b762005-11-07 01:00:25 -080038 NFSD_Versions,
NeilBrown80212d52006-10-02 02:17:47 -070039 NFSD_Ports,
NeilBrown596bbe52006-10-04 02:15:48 -070040 NFSD_MaxBlkSize,
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -050041 NFSD_SupportedEnctypes,
NeilBrown70c3b762005-11-07 01:00:25 -080042 /*
43 * The below MUST come last. Otherwise we leave a hole in nfsd_files[]
44 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops
45 */
46#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 NFSD_Leasetime,
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050048 NFSD_Gracetime,
NeilBrown0964a3d2005-06-23 22:04:32 -070049 NFSD_RecoveryDir,
NeilBrown70c3b762005-11-07 01:00:25 -080050#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
53/*
54 * write() for these nodes.
55 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static ssize_t write_filehandle(struct file *file, char *buf, size_t size);
Chuck Leverb046ccd2008-12-12 16:57:13 -050057static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size);
58static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static ssize_t write_threads(struct file *file, char *buf, size_t size);
Greg Bankseed29652006-10-02 02:18:02 -070060static ssize_t write_pool_threads(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080061static ssize_t write_versions(struct file *file, char *buf, size_t size);
NeilBrown80212d52006-10-02 02:17:47 -070062static ssize_t write_ports(struct file *file, char *buf, size_t size);
NeilBrown596bbe52006-10-04 02:15:48 -070063static ssize_t write_maxblksize(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080064#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static ssize_t write_leasetime(struct file *file, char *buf, size_t size);
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050066static ssize_t write_gracetime(struct file *file, char *buf, size_t size);
NeilBrown0964a3d2005-06-23 22:04:32 -070067static ssize_t write_recoverydir(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080068#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70static ssize_t (*write_op[])(struct file *, char *, size_t) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 [NFSD_Fh] = write_filehandle,
Chuck Leverb046ccd2008-12-12 16:57:13 -050072 [NFSD_FO_UnlockIP] = write_unlock_ip,
73 [NFSD_FO_UnlockFS] = write_unlock_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 [NFSD_Threads] = write_threads,
Greg Bankseed29652006-10-02 02:18:02 -070075 [NFSD_Pool_Threads] = write_pool_threads,
NeilBrown70c3b762005-11-07 01:00:25 -080076 [NFSD_Versions] = write_versions,
NeilBrown80212d52006-10-02 02:17:47 -070077 [NFSD_Ports] = write_ports,
NeilBrown596bbe52006-10-04 02:15:48 -070078 [NFSD_MaxBlkSize] = write_maxblksize,
NeilBrown70c3b762005-11-07 01:00:25 -080079#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 [NFSD_Leasetime] = write_leasetime,
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050081 [NFSD_Gracetime] = write_gracetime,
NeilBrown0964a3d2005-06-23 22:04:32 -070082 [NFSD_RecoveryDir] = write_recoverydir,
NeilBrown70c3b762005-11-07 01:00:25 -080083#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
86static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
87{
Al Viro496ad9a2013-01-23 17:07:38 -050088 ino_t ino = file_inode(file)->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 char *data;
90 ssize_t rv;
91
Tobias Klausere8c96f82006-03-24 03:15:34 -080092 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return -EINVAL;
94
95 data = simple_transaction_get(file, buf, size);
96 if (IS_ERR(data))
97 return PTR_ERR(data);
98
99 rv = write_op[ino](file, data, size);
NeilBrown8971a102007-02-14 00:33:11 -0800100 if (rv >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 simple_transaction_set(file, rv);
102 rv = size;
103 }
104 return rv;
105}
106
NeilBrown73900222005-11-07 01:00:24 -0800107static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
108{
109 if (! file->private_data) {
110 /* An attempt to read a transaction file without writing
111 * causes a 0-byte write so that the file can return
112 * state information
113 */
114 ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos);
115 if (rv < 0)
116 return rv;
117 }
118 return simple_transaction_read(file, buf, size, pos);
119}
120
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800121static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .write = nfsctl_transaction_write,
NeilBrown73900222005-11-07 01:00:24 -0800123 .read = nfsctl_transaction_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 .release = simple_transaction_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200125 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300128static int exports_net_open(struct net *net, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400130 int err;
131 struct seq_file *seq;
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300132 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400133
134 err = seq_open(file, &nfs_exports_op);
135 if (err)
136 return err;
137
138 seq = file->private_data;
Stanislav Kinsburskye5f06f72012-04-11 15:13:28 +0400139 seq->private = nn->svc_export_cache;
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300143static int exports_proc_open(struct inode *inode, struct file *file)
144{
145 return exports_net_open(current->nsproxy->net_ns, file);
146}
147
148static const struct file_operations exports_proc_operations = {
149 .open = exports_proc_open,
150 .read = seq_read,
151 .llseek = seq_lseek,
152 .release = seq_release,
153 .owner = THIS_MODULE,
154};
155
156static int exports_nfsd_open(struct inode *inode, struct file *file)
157{
158 return exports_net_open(inode->i_sb->s_fs_info, file);
159}
160
161static const struct file_operations exports_nfsd_operations = {
162 .open = exports_nfsd_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 .read = seq_read,
164 .llseek = seq_lseek,
165 .release = seq_release,
Denis V. Lunev9ef2db22008-04-29 01:02:04 -0700166 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167};
168
J. Bruce Fieldse8e87532009-12-14 12:53:32 -0500169static int export_features_show(struct seq_file *m, void *v)
170{
171 seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS);
172 return 0;
173}
174
175static int export_features_open(struct inode *inode, struct file *file)
176{
177 return single_open(file, export_features_show, NULL);
178}
179
Al Viro75ef9de2013-04-04 19:09:41 -0400180static const struct file_operations export_features_operations = {
J. Bruce Fieldse8e87532009-12-14 12:53:32 -0500181 .open = export_features_open,
182 .read = seq_read,
183 .llseek = seq_lseek,
184 .release = single_release,
185};
186
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400187#if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500188static int supported_enctypes_show(struct seq_file *m, void *v)
189{
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400190 seq_printf(m, KRB5_SUPPORTED_ENCTYPES);
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500191 return 0;
192}
193
194static int supported_enctypes_open(struct inode *inode, struct file *file)
195{
196 return single_open(file, supported_enctypes_show, NULL);
197}
198
Al Viro75ef9de2013-04-04 19:09:41 -0400199static const struct file_operations supported_enctypes_ops = {
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500200 .open = supported_enctypes_open,
201 .read = seq_read,
202 .llseek = seq_lseek,
203 .release = single_release,
204};
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400205#endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500206
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700207static const struct file_operations pool_stats_operations = {
Greg Banks03cf6c92009-01-13 21:26:36 +1100208 .open = nfsd_pool_stats_open,
209 .read = seq_read,
210 .llseek = seq_lseek,
Ryusei Yamaguchied2d8ae2009-08-16 00:54:41 +0900211 .release = nfsd_pool_stats_release,
Greg Banks03cf6c92009-01-13 21:26:36 +1100212 .owner = THIS_MODULE,
213};
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*----------------------------------------------------------------------------*/
216/*
217 * payload - write methods
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Chuck Lever262a0982008-12-12 16:57:35 -0500221/**
222 * write_unlock_ip - Release all locks used by a client
223 *
224 * Experimental.
225 *
226 * Input:
227 * buf: '\n'-terminated C string containing a
Chuck Lever41160922009-08-09 15:09:40 -0400228 * presentation format IP address
Chuck Lever262a0982008-12-12 16:57:35 -0500229 * size: length of C string in @buf
230 * Output:
231 * On success: returns zero if all specified locks were released;
232 * returns one if one or more locks were not released
233 * On error: return code is negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500234 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500235static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500236{
Chuck Lever41160922009-08-09 15:09:40 -0400237 struct sockaddr_storage address;
238 struct sockaddr *sap = (struct sockaddr *)&address;
239 size_t salen = sizeof(address);
Chuck Lever367c8c72008-06-30 18:58:14 -0400240 char *fo_path;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300241 struct net *net = file->f_dentry->d_sb->s_fs_info;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500242
243 /* sanity check */
244 if (size == 0)
245 return -EINVAL;
246
247 if (buf[size-1] != '\n')
248 return -EINVAL;
249
250 fo_path = buf;
251 if (qword_get(&buf, fo_path, size) < 0)
252 return -EINVAL;
253
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300254 if (rpc_pton(net, fo_path, size, sap, salen) == 0)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500255 return -EINVAL;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500256
Chuck Lever41160922009-08-09 15:09:40 -0400257 return nlmsvc_unlock_all_by_ip(sap);
Wendy Cheng4373ea82008-01-17 11:10:12 -0500258}
259
Chuck Lever262a0982008-12-12 16:57:35 -0500260/**
261 * write_unlock_fs - Release all locks on a local file system
262 *
263 * Experimental.
264 *
265 * Input:
266 * buf: '\n'-terminated C string containing the
267 * absolute pathname of a local file system
268 * size: length of C string in @buf
269 * Output:
270 * On success: returns zero if all specified locks were released;
271 * returns one if one or more locks were not released
272 * On error: return code is negative errno value
273 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500274static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
Wendy Cheng17efa372008-01-17 11:10:12 -0500275{
Al Viroa63bb992008-08-02 01:03:36 -0400276 struct path path;
Wendy Cheng17efa372008-01-17 11:10:12 -0500277 char *fo_path;
278 int error;
279
280 /* sanity check */
281 if (size == 0)
282 return -EINVAL;
283
284 if (buf[size-1] != '\n')
285 return -EINVAL;
286
287 fo_path = buf;
288 if (qword_get(&buf, fo_path, size) < 0)
289 return -EINVAL;
290
Al Viroa63bb992008-08-02 01:03:36 -0400291 error = kern_path(fo_path, 0, &path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500292 if (error)
293 return error;
294
Chuck Lever262a0982008-12-12 16:57:35 -0500295 /*
296 * XXX: Needs better sanity checking. Otherwise we could end up
297 * releasing locks on the wrong file system.
298 *
299 * For example:
300 * 1. Does the path refer to a directory?
301 * 2. Is that directory a mount point, or
302 * 3. Is that directory the root of an exported file system?
303 */
Al Virod8c95842011-12-07 18:16:57 -0500304 error = nlmsvc_unlock_all_by_sb(path.dentry->d_sb);
Wendy Cheng17efa372008-01-17 11:10:12 -0500305
Al Viroa63bb992008-08-02 01:03:36 -0400306 path_put(&path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500307 return error;
308}
309
Chuck Lever262a0982008-12-12 16:57:35 -0500310/**
311 * write_filehandle - Get a variable-length NFS file handle by path
312 *
313 * On input, the buffer contains a '\n'-terminated C string comprised of
314 * three alphanumeric words separated by whitespace. The string may
315 * contain escape sequences.
316 *
317 * Input:
318 * buf:
319 * domain: client domain name
320 * path: export pathname
321 * maxsize: numeric maximum size of
322 * @buf
323 * size: length of C string in @buf
324 * Output:
325 * On success: passed-in buffer filled with '\n'-terminated C
326 * string containing a ASCII hex text version
327 * of the NFS file handle;
328 * return code is the size in bytes of the string
329 * On error: return code is negative errno value
330 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
332{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 char *dname, *path;
Andrew Morton246d95b2007-08-09 00:53:50 -0700334 int uninitialized_var(maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 char *mesg = buf;
336 int len;
337 struct auth_domain *dom;
338 struct knfsd_fh fh;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300339 struct net *net = file->f_dentry->d_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
J. Bruce Fields87d26ea2008-01-22 17:40:42 -0500341 if (size == 0)
342 return -EINVAL;
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (buf[size-1] != '\n')
345 return -EINVAL;
346 buf[size-1] = 0;
347
348 dname = mesg;
349 len = qword_get(&mesg, dname, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500350 if (len <= 0)
351 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 path = dname+len+1;
354 len = qword_get(&mesg, path, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500355 if (len <= 0)
356 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 len = get_int(&mesg, &maxsize);
359 if (len)
360 return len;
361
362 if (maxsize < NFS_FHSIZE)
363 return -EINVAL;
364 if (maxsize > NFS3_FHSIZE)
365 maxsize = NFS3_FHSIZE;
366
367 if (qword_get(&mesg, mesg, size)>0)
368 return -EINVAL;
369
370 /* we have all the words, they are in buf.. */
371 dom = unix_domain_find(dname);
372 if (!dom)
373 return -ENOMEM;
374
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300375 len = exp_rootfh(net, dom, path, &fh, maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 auth_domain_put(dom);
377 if (len)
378 return len;
379
Chuck Lever54224f02008-12-12 16:57:20 -0500380 mesg = buf;
381 len = SIMPLE_TRANSACTION_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 qword_addhex(&mesg, &len, (char*)&fh.fh_base, fh.fh_size);
383 mesg[-1] = '\n';
384 return mesg - buf;
385}
386
Chuck Lever262a0982008-12-12 16:57:35 -0500387/**
388 * write_threads - Start NFSD, or report the current number of running threads
389 *
390 * Input:
391 * buf: ignored
392 * size: zero
393 * Output:
394 * On success: passed-in buffer filled with '\n'-terminated C
395 * string numeric value representing the number of
396 * running NFSD threads;
397 * return code is the size in bytes of the string
398 * On error: return code is zero
399 *
400 * OR
401 *
402 * Input:
403 * buf: C string containing an unsigned
404 * integer value representing the
405 * number of NFSD threads to start
406 * size: non-zero length of C string in @buf
407 * Output:
408 * On success: NFS service is started;
409 * passed-in buffer filled with '\n'-terminated C
410 * string numeric value representing the number of
411 * running NFSD threads;
412 * return code is the size in bytes of the string
413 * On error: return code is zero or a negative errno value
414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static ssize_t write_threads(struct file *file, char *buf, size_t size)
416{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 char *mesg = buf;
418 int rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300419 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsburskyd41a9412012-12-10 12:19:25 +0300420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (size > 0) {
422 int newthreads;
423 rv = get_int(&mesg, &newthreads);
424 if (rv)
425 return rv;
Chuck Lever9e074852008-12-12 16:57:27 -0500426 if (newthreads < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -EINVAL;
Stanislav Kinsburskyd41a9412012-12-10 12:19:25 +0300428 rv = nfsd_svc(newthreads, net);
NeilBrown82e12fe2009-06-16 11:03:07 +1000429 if (rv < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return rv;
NeilBrown82e12fe2009-06-16 11:03:07 +1000431 } else
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300432 rv = nfsd_nrthreads(net);
Chuck Levere06b6402009-04-23 19:33:25 -0400433
NeilBrown82e12fe2009-06-16 11:03:07 +1000434 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Chuck Lever262a0982008-12-12 16:57:35 -0500437/**
438 * write_pool_threads - Set or report the current number of threads per pool
439 *
440 * Input:
441 * buf: ignored
442 * size: zero
443 *
444 * OR
445 *
446 * Input:
447 * buf: C string containing whitespace-
448 * separated unsigned integer values
449 * representing the number of NFSD
450 * threads to start in each pool
451 * size: non-zero length of C string in @buf
452 * Output:
453 * On success: passed-in buffer filled with '\n'-terminated C
454 * string containing integer values representing the
455 * number of NFSD threads in each pool;
456 * return code is the size in bytes of the string
457 * On error: return code is zero or a negative errno value
458 */
Greg Bankseed29652006-10-02 02:18:02 -0700459static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
460{
461 /* if size > 0, look for an array of number of threads per node
462 * and apply them then write out number of threads per node as reply
463 */
464 char *mesg = buf;
465 int i;
466 int rv;
467 int len;
Neil Brownbedbdd82008-06-10 08:40:35 -0400468 int npools;
Greg Bankseed29652006-10-02 02:18:02 -0700469 int *nthreads;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300470 struct net *net = file->f_dentry->d_sb->s_fs_info;
Greg Bankseed29652006-10-02 02:18:02 -0700471
Neil Brownbedbdd82008-06-10 08:40:35 -0400472 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300473 npools = nfsd_nrpools(net);
Greg Bankseed29652006-10-02 02:18:02 -0700474 if (npools == 0) {
475 /*
476 * NFS is shut down. The admin can start it by
477 * writing to the threads file but NOT the pool_threads
478 * file, sorry. Report zero threads.
479 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400480 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700481 strcpy(buf, "0\n");
482 return strlen(buf);
483 }
484
485 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
Neil Brownbedbdd82008-06-10 08:40:35 -0400486 rv = -ENOMEM;
Greg Bankseed29652006-10-02 02:18:02 -0700487 if (nthreads == NULL)
Neil Brownbedbdd82008-06-10 08:40:35 -0400488 goto out_free;
Greg Bankseed29652006-10-02 02:18:02 -0700489
490 if (size > 0) {
491 for (i = 0; i < npools; i++) {
492 rv = get_int(&mesg, &nthreads[i]);
493 if (rv == -ENOENT)
494 break; /* fewer numbers than pools */
495 if (rv)
496 goto out_free; /* syntax error */
497 rv = -EINVAL;
498 if (nthreads[i] < 0)
499 goto out_free;
500 }
Stanislav Kinsbursky3938a0d2012-12-10 12:19:30 +0300501 rv = nfsd_set_nrthreads(i, nthreads, net);
Greg Bankseed29652006-10-02 02:18:02 -0700502 if (rv)
503 goto out_free;
504 }
505
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300506 rv = nfsd_get_nrthreads(npools, nthreads, net);
Greg Bankseed29652006-10-02 02:18:02 -0700507 if (rv)
508 goto out_free;
509
510 mesg = buf;
511 size = SIMPLE_TRANSACTION_LIMIT;
512 for (i = 0; i < npools && size > 0; i++) {
513 snprintf(mesg, size, "%d%c", nthreads[i], (i == npools-1 ? '\n' : ' '));
514 len = strlen(mesg);
515 size -= len;
516 mesg += len;
517 }
J. Bruce Fields413d63d7102009-07-28 11:37:25 -0400518 rv = mesg - buf;
Greg Bankseed29652006-10-02 02:18:02 -0700519out_free:
520 kfree(nthreads);
Neil Brownbedbdd82008-06-10 08:40:35 -0400521 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700522 return rv;
523}
524
Jeff Layton3dd98a32008-06-10 08:40:36 -0400525static ssize_t __write_versions(struct file *file, char *buf, size_t size)
NeilBrown70c3b762005-11-07 01:00:25 -0800526{
NeilBrown70c3b762005-11-07 01:00:25 -0800527 char *mesg = buf;
Benny Halevy8daf2202009-04-03 08:28:59 +0300528 char *vers, *minorp, sign;
Chuck Lever261758b2009-04-23 19:33:18 -0400529 int len, num, remaining;
Benny Halevy8daf2202009-04-03 08:28:59 +0300530 unsigned minor;
NeilBrown70c3b762005-11-07 01:00:25 -0800531 ssize_t tlen = 0;
532 char *sep;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300533 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300534 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
NeilBrown70c3b762005-11-07 01:00:25 -0800535
536 if (size>0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300537 if (nn->nfsd_serv)
NeilBrown6658d3a2006-10-02 02:17:46 -0700538 /* Cannot change versions without updating
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300539 * nn->nfsd_serv->sv_xdrsize, and reallocing
NeilBrown6658d3a2006-10-02 02:17:46 -0700540 * rq_argp and rq_resp
541 */
NeilBrown70c3b762005-11-07 01:00:25 -0800542 return -EBUSY;
543 if (buf[size-1] != '\n')
544 return -EINVAL;
545 buf[size-1] = 0;
546
547 vers = mesg;
548 len = qword_get(&mesg, vers, size);
549 if (len <= 0) return -EINVAL;
550 do {
551 sign = *vers;
552 if (sign == '+' || sign == '-')
Benny Halevy8daf2202009-04-03 08:28:59 +0300553 num = simple_strtol((vers+1), &minorp, 0);
NeilBrown70c3b762005-11-07 01:00:25 -0800554 else
Benny Halevy8daf2202009-04-03 08:28:59 +0300555 num = simple_strtol(vers, &minorp, 0);
556 if (*minorp == '.') {
J. Bruce Fieldsff89be82013-01-23 18:25:01 -0500557 if (num != 4)
Benny Halevy8daf2202009-04-03 08:28:59 +0300558 return -EINVAL;
559 minor = simple_strtoul(minorp+1, NULL, 0);
560 if (minor == 0)
561 return -EINVAL;
562 if (nfsd_minorversion(minor, sign == '-' ?
563 NFSD_CLEAR : NFSD_SET) < 0)
564 return -EINVAL;
565 goto next;
566 }
NeilBrown70c3b762005-11-07 01:00:25 -0800567 switch(num) {
568 case 2:
569 case 3:
570 case 4:
NeilBrown6658d3a2006-10-02 02:17:46 -0700571 nfsd_vers(num, sign == '-' ? NFSD_CLEAR : NFSD_SET);
NeilBrown70c3b762005-11-07 01:00:25 -0800572 break;
573 default:
574 return -EINVAL;
575 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300576 next:
NeilBrown70c3b762005-11-07 01:00:25 -0800577 vers += len + 1;
NeilBrown70c3b762005-11-07 01:00:25 -0800578 } while ((len = qword_get(&mesg, vers, size)) > 0);
579 /* If all get turned off, turn them back on, as
580 * having no versions is BAD
581 */
NeilBrown6658d3a2006-10-02 02:17:46 -0700582 nfsd_reset_versions();
NeilBrown70c3b762005-11-07 01:00:25 -0800583 }
Chuck Lever261758b2009-04-23 19:33:18 -0400584
NeilBrown70c3b762005-11-07 01:00:25 -0800585 /* Now write current state into reply buffer */
586 len = 0;
587 sep = "";
Chuck Lever261758b2009-04-23 19:33:18 -0400588 remaining = SIMPLE_TRANSACTION_LIMIT;
NeilBrown70c3b762005-11-07 01:00:25 -0800589 for (num=2 ; num <= 4 ; num++)
NeilBrown6658d3a2006-10-02 02:17:46 -0700590 if (nfsd_vers(num, NFSD_AVAIL)) {
Chuck Lever261758b2009-04-23 19:33:18 -0400591 len = snprintf(buf, remaining, "%s%c%d", sep,
NeilBrown6658d3a2006-10-02 02:17:46 -0700592 nfsd_vers(num, NFSD_TEST)?'+':'-',
NeilBrown70c3b762005-11-07 01:00:25 -0800593 num);
594 sep = " ";
Chuck Lever261758b2009-04-23 19:33:18 -0400595
596 if (len > remaining)
597 break;
598 remaining -= len;
599 buf += len;
600 tlen += len;
NeilBrown70c3b762005-11-07 01:00:25 -0800601 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300602 if (nfsd_vers(4, NFSD_AVAIL))
Chuck Lever261758b2009-04-23 19:33:18 -0400603 for (minor = 1; minor <= NFSD_SUPPORTED_MINOR_VERSION;
604 minor++) {
605 len = snprintf(buf, remaining, " %c4.%u",
Benny Halevy8daf2202009-04-03 08:28:59 +0300606 (nfsd_vers(4, NFSD_TEST) &&
607 nfsd_minorversion(minor, NFSD_TEST)) ?
608 '+' : '-',
609 minor);
Chuck Lever261758b2009-04-23 19:33:18 -0400610
611 if (len > remaining)
612 break;
613 remaining -= len;
614 buf += len;
615 tlen += len;
616 }
617
618 len = snprintf(buf, remaining, "\n");
619 if (len > remaining)
620 return -EINVAL;
621 return tlen + len;
NeilBrown70c3b762005-11-07 01:00:25 -0800622}
623
Chuck Lever262a0982008-12-12 16:57:35 -0500624/**
625 * write_versions - Set or report the available NFS protocol versions
626 *
627 * Input:
628 * buf: ignored
629 * size: zero
630 * Output:
631 * On success: passed-in buffer filled with '\n'-terminated C
632 * string containing positive or negative integer
633 * values representing the current status of each
634 * protocol version;
635 * return code is the size in bytes of the string
636 * On error: return code is zero or a negative errno value
637 *
638 * OR
639 *
640 * Input:
641 * buf: C string containing whitespace-
642 * separated positive or negative
643 * integer values representing NFS
644 * protocol versions to enable ("+n")
645 * or disable ("-n")
646 * size: non-zero length of C string in @buf
647 * Output:
648 * On success: status of zero or more protocol versions has
649 * been updated; passed-in buffer filled with
650 * '\n'-terminated C string containing positive
651 * or negative integer values representing the
652 * current status of each protocol version;
653 * return code is the size in bytes of the string
654 * On error: return code is zero or a negative errno value
655 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400656static ssize_t write_versions(struct file *file, char *buf, size_t size)
657{
658 ssize_t rv;
659
660 mutex_lock(&nfsd_mutex);
661 rv = __write_versions(file, buf, size);
662 mutex_unlock(&nfsd_mutex);
663 return rv;
664}
665
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400666/*
Chuck Lever0a5372d2009-04-23 19:32:10 -0400667 * Zero-length write. Return a list of NFSD's current listener
668 * transports.
669 */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300670static ssize_t __write_ports_names(char *buf, struct net *net)
Chuck Lever0a5372d2009-04-23 19:32:10 -0400671{
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300672 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
673
674 if (nn->nfsd_serv == NULL)
Chuck Lever0a5372d2009-04-23 19:32:10 -0400675 return 0;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300676 return svc_xprt_names(nn->nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
Chuck Lever0a5372d2009-04-23 19:32:10 -0400677}
678
679/*
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400680 * A single 'fd' number was written, in which case it must be for
681 * a socket of a supported family/protocol, and we use it as an
682 * nfsd listener.
683 */
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300684static ssize_t __write_ports_addfd(char *buf, struct net *net)
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400685{
686 char *mesg = buf;
687 int fd, err;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300688 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400689
690 err = get_int(&mesg, &fd);
691 if (err != 0 || fd < 0)
692 return -EINVAL;
693
Stanislav Kinsbursky67774362012-12-10 12:19:20 +0300694 err = nfsd_create_serv(net);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400695 if (err != 0)
696 return err;
697
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300698 err = svc_addsock(nn->nfsd_serv, fd, buf, SIMPLE_TRANSACTION_LIMIT);
Jeff Layton78a8d7c2010-07-19 16:50:05 -0400699 if (err < 0) {
Stanislav Kinsbursky19f7e2c2012-07-03 16:46:41 +0400700 nfsd_destroy(net);
Jeff Layton78a8d7c2010-07-19 16:50:05 -0400701 return err;
702 }
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400703
Chuck Leverea068ba2009-04-23 19:32:18 -0400704 /* Decrease the count, but don't shut down the service */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300705 nn->nfsd_serv->sv_nrthreads--;
Chuck Leverea068ba2009-04-23 19:32:18 -0400706 return err;
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400707}
708
709/*
Chuck Lever4eb68c22009-04-23 19:31:40 -0400710 * A transport listener is added by writing it's transport name and
711 * a port number.
712 */
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300713static ssize_t __write_ports_addxprt(char *buf, struct net *net)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400714{
715 char transport[16];
Chuck Lever37498292010-01-26 14:04:22 -0500716 struct svc_xprt *xprt;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400717 int port, err;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300718 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Lever4eb68c22009-04-23 19:31:40 -0400719
J. Bruce Fieldsa10fded2012-08-14 17:48:39 -0400720 if (sscanf(buf, "%15s %5u", transport, &port) != 2)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400721 return -EINVAL;
722
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700723 if (port < 1 || port > USHRT_MAX)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400724 return -EINVAL;
725
Stanislav Kinsbursky67774362012-12-10 12:19:20 +0300726 err = nfsd_create_serv(net);
Chuck Lever4eb68c22009-04-23 19:31:40 -0400727 if (err != 0)
728 return err;
729
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300730 err = svc_create_xprt(nn->nfsd_serv, transport, net,
Chuck Lever4eb68c22009-04-23 19:31:40 -0400731 PF_INET, port, SVC_SOCK_ANONYMOUS);
Chuck Lever68717902010-01-26 14:04:13 -0500732 if (err < 0)
Chuck Lever37498292010-01-26 14:04:22 -0500733 goto out_err;
734
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300735 err = svc_create_xprt(nn->nfsd_serv, transport, net,
Chuck Lever37498292010-01-26 14:04:22 -0500736 PF_INET6, port, SVC_SOCK_ANONYMOUS);
737 if (err < 0 && err != -EAFNOSUPPORT)
738 goto out_close;
Jeff Layton0cd14a02010-07-19 16:50:06 -0400739
740 /* Decrease the count, but don't shut down the service */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300741 nn->nfsd_serv->sv_nrthreads--;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400742 return 0;
Chuck Lever37498292010-01-26 14:04:22 -0500743out_close:
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300744 xprt = svc_find_xprt(nn->nfsd_serv, transport, net, PF_INET, port);
Chuck Lever37498292010-01-26 14:04:22 -0500745 if (xprt != NULL) {
746 svc_close_xprt(xprt);
747 svc_xprt_put(xprt);
748 }
749out_err:
Stanislav Kinsbursky19f7e2c2012-07-03 16:46:41 +0400750 nfsd_destroy(net);
Chuck Lever37498292010-01-26 14:04:22 -0500751 return err;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400752}
753
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300754static ssize_t __write_ports(struct file *file, char *buf, size_t size,
755 struct net *net)
NeilBrown80212d52006-10-02 02:17:47 -0700756{
Chuck Lever0a5372d2009-04-23 19:32:10 -0400757 if (size == 0)
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300758 return __write_ports_names(buf, net);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400759
760 if (isdigit(buf[0]))
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300761 return __write_ports_addfd(buf, net);
Chuck Lever82d56592009-04-23 19:31:48 -0400762
Chuck Lever4eb68c22009-04-23 19:31:40 -0400763 if (isalpha(buf[0]))
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300764 return __write_ports_addxprt(buf, net);
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400765
NeilBrownb41b66d2006-10-02 02:17:48 -0700766 return -EINVAL;
NeilBrown80212d52006-10-02 02:17:47 -0700767}
768
Chuck Lever262a0982008-12-12 16:57:35 -0500769/**
770 * write_ports - Pass a socket file descriptor or transport name to listen on
771 *
772 * Input:
773 * buf: ignored
774 * size: zero
775 * Output:
776 * On success: passed-in buffer filled with a '\n'-terminated C
777 * string containing a whitespace-separated list of
778 * named NFSD listeners;
779 * return code is the size in bytes of the string
780 * On error: return code is zero or a negative errno value
781 *
782 * OR
783 *
784 * Input:
785 * buf: C string containing an unsigned
786 * integer value representing a bound
787 * but unconnected socket that is to be
Chuck Leverc71206a2009-04-23 19:32:03 -0400788 * used as an NFSD listener; listen(3)
789 * must be called for a SOCK_STREAM
790 * socket, otherwise it is ignored
Chuck Lever262a0982008-12-12 16:57:35 -0500791 * size: non-zero length of C string in @buf
792 * Output:
793 * On success: NFS service is started;
794 * passed-in buffer filled with a '\n'-terminated C
795 * string containing a unique alphanumeric name of
796 * the listener;
797 * return code is the size in bytes of the string
798 * On error: return code is a negative errno value
799 *
800 * OR
801 *
802 * Input:
Chuck Lever262a0982008-12-12 16:57:35 -0500803 * buf: C string containing a transport
804 * name and an unsigned integer value
805 * representing the port to listen on,
806 * separated by whitespace
807 * size: non-zero length of C string in @buf
808 * Output:
809 * On success: returns zero; NFS service is started
810 * On error: return code is a negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500811 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400812static ssize_t write_ports(struct file *file, char *buf, size_t size)
813{
814 ssize_t rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300815 struct net *net = file->f_dentry->d_sb->s_fs_info;
Jeff Layton3dd98a32008-06-10 08:40:36 -0400816
Neil Brownbedbdd82008-06-10 08:40:35 -0400817 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300818 rv = __write_ports(file, buf, size, net);
Neil Brownbedbdd82008-06-10 08:40:35 -0400819 mutex_unlock(&nfsd_mutex);
820 return rv;
821}
822
823
NeilBrown596bbe52006-10-04 02:15:48 -0700824int nfsd_max_blksize;
825
Chuck Lever262a0982008-12-12 16:57:35 -0500826/**
827 * write_maxblksize - Set or report the current NFS blksize
828 *
829 * Input:
830 * buf: ignored
831 * size: zero
832 *
833 * OR
834 *
835 * Input:
836 * buf: C string containing an unsigned
837 * integer value representing the new
838 * NFS blksize
839 * size: non-zero length of C string in @buf
840 * Output:
841 * On success: passed-in buffer filled with '\n'-terminated C string
842 * containing numeric value of the current NFS blksize
843 * setting;
844 * return code is the size in bytes of the string
845 * On error: return code is zero or a negative errno value
846 */
NeilBrown596bbe52006-10-04 02:15:48 -0700847static ssize_t write_maxblksize(struct file *file, char *buf, size_t size)
848{
849 char *mesg = buf;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300850 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300851 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
852
NeilBrown596bbe52006-10-04 02:15:48 -0700853 if (size > 0) {
854 int bsize;
855 int rv = get_int(&mesg, &bsize);
856 if (rv)
857 return rv;
858 /* force bsize into allowed range and
859 * required alignment.
860 */
861 if (bsize < 1024)
862 bsize = 1024;
863 if (bsize > NFSSVC_MAXBLKSIZE)
864 bsize = NFSSVC_MAXBLKSIZE;
865 bsize &= ~(1024-1);
Neil Brownbedbdd82008-06-10 08:40:35 -0400866 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300867 if (nn->nfsd_serv) {
Neil Brownbedbdd82008-06-10 08:40:35 -0400868 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -0700869 return -EBUSY;
870 }
871 nfsd_max_blksize = bsize;
Neil Brownbedbdd82008-06-10 08:40:35 -0400872 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -0700873 }
Chuck Levere06b6402009-04-23 19:33:25 -0400874
875 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
876 nfsd_max_blksize);
NeilBrown596bbe52006-10-04 02:15:48 -0700877}
878
NeilBrown70c3b762005-11-07 01:00:25 -0800879#ifdef CONFIG_NFSD_V4
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300880static ssize_t __nfsd4_write_time(struct file *file, char *buf, size_t size,
881 time_t *time, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 char *mesg = buf;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500884 int rv, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 if (size > 0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300887 if (nn->nfsd_serv)
Jeff Layton3dd98a32008-06-10 08:40:36 -0400888 return -EBUSY;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500889 rv = get_int(&mesg, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (rv)
891 return rv;
J. Bruce Fieldse7b184f2010-03-02 11:18:40 -0500892 /*
893 * Some sanity checking. We don't have a reason for
894 * these particular numbers, but problems with the
895 * extremes are:
896 * - Too short: the briefest network outage may
897 * cause clients to lose all their locks. Also,
898 * the frequent polling may be wasteful.
899 * - Too long: do you really want reboot recovery
900 * to take more than an hour? Or to make other
901 * clients wait an hour before being able to
902 * revoke a dead client's locks?
903 */
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500904 if (i < 10 || i > 3600)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return -EINVAL;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500906 *time = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
Chuck Levere06b6402009-04-23 19:33:25 -0400908
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500909 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%ld\n", *time);
910}
911
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300912static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size,
913 time_t *time, struct nfsd_net *nn)
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500914{
915 ssize_t rv;
916
917 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300918 rv = __nfsd4_write_time(file, buf, size, time, nn);
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500919 mutex_unlock(&nfsd_mutex);
920 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
Chuck Lever262a0982008-12-12 16:57:35 -0500923/**
924 * write_leasetime - Set or report the current NFSv4 lease time
925 *
926 * Input:
927 * buf: ignored
928 * size: zero
929 *
930 * OR
931 *
932 * Input:
933 * buf: C string containing an unsigned
934 * integer value representing the new
935 * NFSv4 lease expiry time
936 * size: non-zero length of C string in @buf
937 * Output:
938 * On success: passed-in buffer filled with '\n'-terminated C
939 * string containing unsigned integer value of the
940 * current lease expiry time;
941 * return code is the size in bytes of the string
942 * On error: return code is zero or a negative errno value
943 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400944static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
945{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300946 struct net *net = file->f_dentry->d_sb->s_fs_info;
947 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300948 return nfsd4_write_time(file, buf, size, &nn->nfsd4_lease, nn);
Jeff Layton3dd98a32008-06-10 08:40:36 -0400949}
950
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -0500951/**
952 * write_gracetime - Set or report current NFSv4 grace period time
953 *
954 * As above, but sets the time of the NFSv4 grace period.
955 *
956 * Note this should never be set to less than the *previous*
957 * lease-period time, but we don't try to enforce this. (In the common
958 * case (a new boot), we don't know what the previous lease time was
959 * anyway.)
960 */
961static ssize_t write_gracetime(struct file *file, char *buf, size_t size)
962{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300963 struct net *net = file->f_dentry->d_sb->s_fs_info;
964 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300965 return nfsd4_write_time(file, buf, size, &nn->nfsd4_grace, nn);
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -0500966}
967
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300968static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size,
969 struct nfsd_net *nn)
NeilBrown0964a3d2005-06-23 22:04:32 -0700970{
971 char *mesg = buf;
972 char *recdir;
973 int len, status;
974
Jeff Layton3dd98a32008-06-10 08:40:36 -0400975 if (size > 0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300976 if (nn->nfsd_serv)
Jeff Layton3dd98a32008-06-10 08:40:36 -0400977 return -EBUSY;
978 if (size > PATH_MAX || buf[size-1] != '\n')
979 return -EINVAL;
980 buf[size-1] = 0;
NeilBrown0964a3d2005-06-23 22:04:32 -0700981
Jeff Layton3dd98a32008-06-10 08:40:36 -0400982 recdir = mesg;
983 len = qword_get(&mesg, recdir, size);
984 if (len <= 0)
985 return -EINVAL;
NeilBrown0964a3d2005-06-23 22:04:32 -0700986
Jeff Layton3dd98a32008-06-10 08:40:36 -0400987 status = nfs4_reset_recoverydir(recdir);
Andi Kleen69049962010-07-20 15:24:27 -0700988 if (status)
989 return status;
Jeff Layton3dd98a32008-06-10 08:40:36 -0400990 }
Chuck Lever3d72ab82009-04-23 19:33:10 -0400991
992 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n",
993 nfs4_recoverydir());
NeilBrown0964a3d2005-06-23 22:04:32 -0700994}
Jeff Layton3dd98a32008-06-10 08:40:36 -0400995
Chuck Lever262a0982008-12-12 16:57:35 -0500996/**
997 * write_recoverydir - Set or report the pathname of the recovery directory
998 *
999 * Input:
1000 * buf: ignored
1001 * size: zero
1002 *
1003 * OR
1004 *
1005 * Input:
1006 * buf: C string containing the pathname
1007 * of the directory on a local file
1008 * system containing permanent NFSv4
1009 * recovery data
1010 * size: non-zero length of C string in @buf
1011 * Output:
1012 * On success: passed-in buffer filled with '\n'-terminated C string
1013 * containing the current recovery pathname setting;
1014 * return code is the size in bytes of the string
1015 * On error: return code is zero or a negative errno value
1016 */
Jeff Layton3dd98a32008-06-10 08:40:36 -04001017static ssize_t write_recoverydir(struct file *file, char *buf, size_t size)
1018{
1019 ssize_t rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001020 struct net *net = file->f_dentry->d_sb->s_fs_info;
1021 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001022
1023 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +03001024 rv = __write_recoverydir(file, buf, size, nn);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001025 mutex_unlock(&nfsd_mutex);
1026 return rv;
1027}
1028
NeilBrown70c3b762005-11-07 01:00:25 -08001029#endif
NeilBrown0964a3d2005-06-23 22:04:32 -07001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031/*----------------------------------------------------------------------------*/
1032/*
1033 * populating the filesystem.
1034 */
1035
1036static int nfsd_fill_super(struct super_block * sb, void * data, int silent)
1037{
1038 static struct tree_descr nfsd_files[] = {
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +03001039 [NFSD_List] = {"exports", &exports_nfsd_operations, S_IRUGO},
J. Bruce Fieldse8e87532009-12-14 12:53:32 -05001040 [NFSD_Export_features] = {"export_features",
1041 &export_features_operations, S_IRUGO},
Wendy Cheng4373ea82008-01-17 11:10:12 -05001042 [NFSD_FO_UnlockIP] = {"unlock_ip",
1043 &transaction_ops, S_IWUSR|S_IRUSR},
Wendy Cheng17efa372008-01-17 11:10:12 -05001044 [NFSD_FO_UnlockFS] = {"unlock_filesystem",
1045 &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1047 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Bankseed29652006-10-02 02:18:02 -07001048 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Banks03cf6c92009-01-13 21:26:36 +11001049 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
NeilBrown70c3b762005-11-07 01:00:25 -08001050 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown80212d52006-10-02 02:17:47 -07001051 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
NeilBrown596bbe52006-10-04 02:15:48 -07001052 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
J. Bruce Fieldsb084f592011-05-31 12:24:58 -04001053#if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -05001054 [NFSD_SupportedEnctypes] = {"supported_krb5_enctypes", &supported_enctypes_ops, S_IRUGO},
J. Bruce Fieldsb084f592011-05-31 12:24:58 -04001055#endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056#ifdef CONFIG_NFSD_V4
1057 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001058 [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown0964a3d2005-06-23 22:04:32 -07001059 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060#endif
1061 /* last one */ {""}
1062 };
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001063 struct net *net = data;
1064 int ret;
1065
1066 ret = simple_fill_super(sb, 0x6e667364, nfsd_files);
1067 if (ret)
1068 return ret;
1069 sb->s_fs_info = get_net(net);
1070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
Al Virofc14f2f2010-07-25 01:48:30 +04001073static struct dentry *nfsd_mount(struct file_system_type *fs_type,
1074 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001076 return mount_ns(fs_type, flags, current->nsproxy->net_ns, nfsd_fill_super);
1077}
1078
1079static void nfsd_umount(struct super_block *sb)
1080{
1081 struct net *net = sb->s_fs_info;
1082
1083 kill_litter_super(sb);
1084 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
1087static struct file_system_type nfsd_fs_type = {
1088 .owner = THIS_MODULE,
1089 .name = "nfsd",
Al Virofc14f2f2010-07-25 01:48:30 +04001090 .mount = nfsd_mount,
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001091 .kill_sb = nfsd_umount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001093MODULE_ALIAS_FS("nfsd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001095#ifdef CONFIG_PROC_FS
1096static int create_proc_exports_entry(void)
1097{
1098 struct proc_dir_entry *entry;
1099
1100 entry = proc_mkdir("fs/nfs", NULL);
1101 if (!entry)
1102 return -ENOMEM;
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +03001103 entry = proc_create("exports", 0, entry,
1104 &exports_proc_operations);
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001105 if (!entry)
1106 return -ENOMEM;
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001107 return 0;
1108}
1109#else /* CONFIG_PROC_FS */
1110static int create_proc_exports_entry(void)
1111{
1112 return 0;
1113}
1114#endif
1115
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001116int nfsd_net_id;
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001117
1118static __net_init int nfsd_init_net(struct net *net)
1119{
1120 int retval;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03001121 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001122
1123 retval = nfsd_export_init(net);
1124 if (retval)
1125 goto out_export_error;
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001126 retval = nfsd_idmap_init(net);
1127 if (retval)
1128 goto out_idmap_error;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03001129 nn->nfsd4_lease = 90; /* default lease time */
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03001130 nn->nfsd4_grace = 90;
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001131 return 0;
1132
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001133out_idmap_error:
1134 nfsd_export_shutdown(net);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001135out_export_error:
1136 return retval;
1137}
1138
1139static __net_exit void nfsd_exit_net(struct net *net)
1140{
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001141 nfsd_idmap_shutdown(net);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001142 nfsd_export_shutdown(net);
1143}
1144
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001145static struct pernet_operations nfsd_net_ops = {
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001146 .init = nfsd_init_net,
1147 .exit = nfsd_exit_net,
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001148 .id = &nfsd_net_id,
1149 .size = sizeof(struct nfsd_net),
1150};
1151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152static int __init init_nfsd(void)
1153{
1154 int retval;
1155 printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
1156
Jeff Layton797a9d72012-03-29 07:52:49 -04001157 retval = register_cld_notifier();
Jeff Layton813fd322012-03-21 09:52:08 -04001158 if (retval)
1159 return retval;
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001160 retval = register_pernet_subsys(&nfsd_net_ops);
1161 if (retval < 0)
Jeff Layton813fd322012-03-21 09:52:08 -04001162 goto out_unregister_notifier;
Bryan Schumaker72083392011-11-01 15:24:59 -04001163 retval = nfsd4_init_slabs();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001164 if (retval)
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001165 goto out_unregister_pernet;
Bryan Schumaker72083392011-11-01 15:24:59 -04001166 nfs4_state_init();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001167 retval = nfsd_fault_inject_init(); /* nfsd fault injection controls */
1168 if (retval)
1169 goto out_free_slabs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 nfsd_stat_init(); /* Statistics */
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001171 retval = nfsd_reply_cache_init();
1172 if (retval)
1173 goto out_free_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 nfsd_lockd_init(); /* lockd->nfsd callbacks */
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001175 retval = create_proc_exports_entry();
1176 if (retval)
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001177 goto out_free_lockd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 retval = register_filesystem(&nfsd_fs_type);
J. Bruce Fields26808d32007-11-09 13:44:06 -05001179 if (retval)
1180 goto out_free_all;
1181 return 0;
1182out_free_all:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001183 remove_proc_entry("fs/nfs/exports", NULL);
1184 remove_proc_entry("fs/nfs", NULL);
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001185out_free_lockd:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001186 nfsd_lockd_shutdown();
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001187 nfsd_reply_cache_shutdown();
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001188out_free_stat:
1189 nfsd_stat_shutdown();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001190 nfsd_fault_inject_cleanup();
1191out_free_slabs:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001192 nfsd4_free_slabs();
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001193out_unregister_pernet:
1194 unregister_pernet_subsys(&nfsd_net_ops);
Jeff Layton813fd322012-03-21 09:52:08 -04001195out_unregister_notifier:
Jeff Layton797a9d72012-03-29 07:52:49 -04001196 unregister_cld_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return retval;
1198}
1199
1200static void __exit exit_nfsd(void)
1201{
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001202 nfsd_reply_cache_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 remove_proc_entry("fs/nfs/exports", NULL);
1204 remove_proc_entry("fs/nfs", NULL);
1205 nfsd_stat_shutdown();
1206 nfsd_lockd_shutdown();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001207 nfsd4_free_slabs();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001208 nfsd_fault_inject_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 unregister_filesystem(&nfsd_fs_type);
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001210 unregister_pernet_subsys(&nfsd_net_ops);
Jeff Layton797a9d72012-03-29 07:52:49 -04001211 unregister_cld_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
1214MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1215MODULE_LICENSE("GPL");
1216module_init(init_nfsd)
1217module_exit(exit_nfsd)