blob: 4e042105fb6e3dc81595649bdfeff51d2d16a65c [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,
Jeff Laytona2f999a2013-03-27 10:15:38 -040038 NFSD_Reply_Cache_Stats,
NeilBrown70c3b762005-11-07 01:00:25 -080039 NFSD_Versions,
NeilBrown80212d52006-10-02 02:17:47 -070040 NFSD_Ports,
NeilBrown596bbe52006-10-04 02:15:48 -070041 NFSD_MaxBlkSize,
Jeff Layton5b8db002014-07-02 16:11:22 -040042 NFSD_MaxConnections,
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -050043 NFSD_SupportedEnctypes,
NeilBrown70c3b762005-11-07 01:00:25 -080044 /*
45 * The below MUST come last. Otherwise we leave a hole in nfsd_files[]
46 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops
47 */
48#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 NFSD_Leasetime,
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050050 NFSD_Gracetime,
NeilBrown0964a3d2005-06-23 22:04:32 -070051 NFSD_RecoveryDir,
NeilBrown70c3b762005-11-07 01:00:25 -080052#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
55/*
56 * write() for these nodes.
57 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static ssize_t write_filehandle(struct file *file, char *buf, size_t size);
Chuck Leverb046ccd2008-12-12 16:57:13 -050059static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size);
60static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static ssize_t write_threads(struct file *file, char *buf, size_t size);
Greg Bankseed29652006-10-02 02:18:02 -070062static ssize_t write_pool_threads(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080063static ssize_t write_versions(struct file *file, char *buf, size_t size);
NeilBrown80212d52006-10-02 02:17:47 -070064static ssize_t write_ports(struct file *file, char *buf, size_t size);
NeilBrown596bbe52006-10-04 02:15:48 -070065static ssize_t write_maxblksize(struct file *file, char *buf, size_t size);
Jeff Layton5b8db002014-07-02 16:11:22 -040066static ssize_t write_maxconn(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080067#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static ssize_t write_leasetime(struct file *file, char *buf, size_t size);
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050069static ssize_t write_gracetime(struct file *file, char *buf, size_t size);
NeilBrown0964a3d2005-06-23 22:04:32 -070070static ssize_t write_recoverydir(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080071#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static ssize_t (*write_op[])(struct file *, char *, size_t) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 [NFSD_Fh] = write_filehandle,
Chuck Leverb046ccd2008-12-12 16:57:13 -050075 [NFSD_FO_UnlockIP] = write_unlock_ip,
76 [NFSD_FO_UnlockFS] = write_unlock_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 [NFSD_Threads] = write_threads,
Greg Bankseed29652006-10-02 02:18:02 -070078 [NFSD_Pool_Threads] = write_pool_threads,
NeilBrown70c3b762005-11-07 01:00:25 -080079 [NFSD_Versions] = write_versions,
NeilBrown80212d52006-10-02 02:17:47 -070080 [NFSD_Ports] = write_ports,
NeilBrown596bbe52006-10-04 02:15:48 -070081 [NFSD_MaxBlkSize] = write_maxblksize,
Jeff Layton5b8db002014-07-02 16:11:22 -040082 [NFSD_MaxConnections] = write_maxconn,
NeilBrown70c3b762005-11-07 01:00:25 -080083#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 [NFSD_Leasetime] = write_leasetime,
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050085 [NFSD_Gracetime] = write_gracetime,
NeilBrown0964a3d2005-06-23 22:04:32 -070086 [NFSD_RecoveryDir] = write_recoverydir,
NeilBrown70c3b762005-11-07 01:00:25 -080087#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
90static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
91{
Al Viro496ad9a2013-01-23 17:07:38 -050092 ino_t ino = file_inode(file)->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 char *data;
94 ssize_t rv;
95
Tobias Klausere8c96f82006-03-24 03:15:34 -080096 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return -EINVAL;
98
99 data = simple_transaction_get(file, buf, size);
100 if (IS_ERR(data))
101 return PTR_ERR(data);
102
103 rv = write_op[ino](file, data, size);
NeilBrown8971a102007-02-14 00:33:11 -0800104 if (rv >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 simple_transaction_set(file, rv);
106 rv = size;
107 }
108 return rv;
109}
110
NeilBrown73900222005-11-07 01:00:24 -0800111static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
112{
113 if (! file->private_data) {
114 /* An attempt to read a transaction file without writing
115 * causes a 0-byte write so that the file can return
116 * state information
117 */
118 ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos);
119 if (rv < 0)
120 return rv;
121 }
122 return simple_transaction_read(file, buf, size, pos);
123}
124
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800125static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .write = nfsctl_transaction_write,
NeilBrown73900222005-11-07 01:00:24 -0800127 .read = nfsctl_transaction_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .release = simple_transaction_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200129 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300132static int exports_net_open(struct net *net, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400134 int err;
135 struct seq_file *seq;
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300136 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400137
138 err = seq_open(file, &nfs_exports_op);
139 if (err)
140 return err;
141
142 seq = file->private_data;
Stanislav Kinsburskye5f06f72012-04-11 15:13:28 +0400143 seq->private = nn->svc_export_cache;
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400144 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300147static int exports_proc_open(struct inode *inode, struct file *file)
148{
149 return exports_net_open(current->nsproxy->net_ns, file);
150}
151
152static const struct file_operations exports_proc_operations = {
153 .open = exports_proc_open,
154 .read = seq_read,
155 .llseek = seq_lseek,
156 .release = seq_release,
157 .owner = THIS_MODULE,
158};
159
160static int exports_nfsd_open(struct inode *inode, struct file *file)
161{
162 return exports_net_open(inode->i_sb->s_fs_info, file);
163}
164
165static const struct file_operations exports_nfsd_operations = {
166 .open = exports_nfsd_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .read = seq_read,
168 .llseek = seq_lseek,
169 .release = seq_release,
Denis V. Lunev9ef2db22008-04-29 01:02:04 -0700170 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
J. Bruce Fieldse8e87532009-12-14 12:53:32 -0500173static int export_features_show(struct seq_file *m, void *v)
174{
175 seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS);
176 return 0;
177}
178
179static int export_features_open(struct inode *inode, struct file *file)
180{
181 return single_open(file, export_features_show, NULL);
182}
183
Al Viro75ef9de2013-04-04 19:09:41 -0400184static const struct file_operations export_features_operations = {
J. Bruce Fieldse8e87532009-12-14 12:53:32 -0500185 .open = export_features_open,
186 .read = seq_read,
187 .llseek = seq_lseek,
188 .release = single_release,
189};
190
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400191#if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500192static int supported_enctypes_show(struct seq_file *m, void *v)
193{
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400194 seq_printf(m, KRB5_SUPPORTED_ENCTYPES);
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500195 return 0;
196}
197
198static int supported_enctypes_open(struct inode *inode, struct file *file)
199{
200 return single_open(file, supported_enctypes_show, NULL);
201}
202
Al Viro75ef9de2013-04-04 19:09:41 -0400203static const struct file_operations supported_enctypes_ops = {
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500204 .open = supported_enctypes_open,
205 .read = seq_read,
206 .llseek = seq_lseek,
207 .release = single_release,
208};
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400209#endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500210
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700211static const struct file_operations pool_stats_operations = {
Greg Banks03cf6c92009-01-13 21:26:36 +1100212 .open = nfsd_pool_stats_open,
213 .read = seq_read,
214 .llseek = seq_lseek,
Ryusei Yamaguchied2d8ae2009-08-16 00:54:41 +0900215 .release = nfsd_pool_stats_release,
Greg Banks03cf6c92009-01-13 21:26:36 +1100216 .owner = THIS_MODULE,
217};
218
Jeff Laytona2f999a2013-03-27 10:15:38 -0400219static struct file_operations reply_cache_stats_operations = {
220 .open = nfsd_reply_cache_stats_open,
221 .read = seq_read,
222 .llseek = seq_lseek,
223 .release = single_release,
224};
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226/*----------------------------------------------------------------------------*/
227/*
228 * payload - write methods
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 */
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Chuck Lever262a0982008-12-12 16:57:35 -0500232/**
233 * write_unlock_ip - Release all locks used by a client
234 *
235 * Experimental.
236 *
237 * Input:
238 * buf: '\n'-terminated C string containing a
Chuck Lever41160922009-08-09 15:09:40 -0400239 * presentation format IP address
Chuck Lever262a0982008-12-12 16:57:35 -0500240 * size: length of C string in @buf
241 * Output:
242 * On success: returns zero if all specified locks were released;
243 * returns one if one or more locks were not released
244 * On error: return code is negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500245 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500246static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500247{
Chuck Lever41160922009-08-09 15:09:40 -0400248 struct sockaddr_storage address;
249 struct sockaddr *sap = (struct sockaddr *)&address;
250 size_t salen = sizeof(address);
Chuck Lever367c8c72008-06-30 18:58:14 -0400251 char *fo_path;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300252 struct net *net = file->f_dentry->d_sb->s_fs_info;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500253
254 /* sanity check */
255 if (size == 0)
256 return -EINVAL;
257
258 if (buf[size-1] != '\n')
259 return -EINVAL;
260
261 fo_path = buf;
262 if (qword_get(&buf, fo_path, size) < 0)
263 return -EINVAL;
264
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300265 if (rpc_pton(net, fo_path, size, sap, salen) == 0)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500266 return -EINVAL;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500267
Chuck Lever41160922009-08-09 15:09:40 -0400268 return nlmsvc_unlock_all_by_ip(sap);
Wendy Cheng4373ea82008-01-17 11:10:12 -0500269}
270
Chuck Lever262a0982008-12-12 16:57:35 -0500271/**
272 * write_unlock_fs - Release all locks on a local file system
273 *
274 * Experimental.
275 *
276 * Input:
277 * buf: '\n'-terminated C string containing the
278 * absolute pathname of a local file system
279 * size: length of C string in @buf
280 * Output:
281 * On success: returns zero if all specified locks were released;
282 * returns one if one or more locks were not released
283 * On error: return code is negative errno value
284 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500285static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
Wendy Cheng17efa372008-01-17 11:10:12 -0500286{
Al Viroa63bb992008-08-02 01:03:36 -0400287 struct path path;
Wendy Cheng17efa372008-01-17 11:10:12 -0500288 char *fo_path;
289 int error;
290
291 /* sanity check */
292 if (size == 0)
293 return -EINVAL;
294
295 if (buf[size-1] != '\n')
296 return -EINVAL;
297
298 fo_path = buf;
299 if (qword_get(&buf, fo_path, size) < 0)
300 return -EINVAL;
301
Al Viroa63bb992008-08-02 01:03:36 -0400302 error = kern_path(fo_path, 0, &path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500303 if (error)
304 return error;
305
Chuck Lever262a0982008-12-12 16:57:35 -0500306 /*
307 * XXX: Needs better sanity checking. Otherwise we could end up
308 * releasing locks on the wrong file system.
309 *
310 * For example:
311 * 1. Does the path refer to a directory?
312 * 2. Is that directory a mount point, or
313 * 3. Is that directory the root of an exported file system?
314 */
Al Virod8c95842011-12-07 18:16:57 -0500315 error = nlmsvc_unlock_all_by_sb(path.dentry->d_sb);
Wendy Cheng17efa372008-01-17 11:10:12 -0500316
Al Viroa63bb992008-08-02 01:03:36 -0400317 path_put(&path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500318 return error;
319}
320
Chuck Lever262a0982008-12-12 16:57:35 -0500321/**
322 * write_filehandle - Get a variable-length NFS file handle by path
323 *
324 * On input, the buffer contains a '\n'-terminated C string comprised of
325 * three alphanumeric words separated by whitespace. The string may
326 * contain escape sequences.
327 *
328 * Input:
329 * buf:
330 * domain: client domain name
331 * path: export pathname
332 * maxsize: numeric maximum size of
333 * @buf
334 * size: length of C string in @buf
335 * Output:
336 * On success: passed-in buffer filled with '\n'-terminated C
337 * string containing a ASCII hex text version
338 * of the NFS file handle;
339 * return code is the size in bytes of the string
340 * On error: return code is negative errno value
341 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
343{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 char *dname, *path;
Andrew Morton246d95b2007-08-09 00:53:50 -0700345 int uninitialized_var(maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 char *mesg = buf;
347 int len;
348 struct auth_domain *dom;
349 struct knfsd_fh fh;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300350 struct net *net = file->f_dentry->d_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
J. Bruce Fields87d26ea2008-01-22 17:40:42 -0500352 if (size == 0)
353 return -EINVAL;
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (buf[size-1] != '\n')
356 return -EINVAL;
357 buf[size-1] = 0;
358
359 dname = mesg;
360 len = qword_get(&mesg, dname, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500361 if (len <= 0)
362 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 path = dname+len+1;
365 len = qword_get(&mesg, path, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500366 if (len <= 0)
367 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 len = get_int(&mesg, &maxsize);
370 if (len)
371 return len;
372
373 if (maxsize < NFS_FHSIZE)
374 return -EINVAL;
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800375 maxsize = min(maxsize, NFS3_FHSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (qword_get(&mesg, mesg, size)>0)
378 return -EINVAL;
379
380 /* we have all the words, they are in buf.. */
381 dom = unix_domain_find(dname);
382 if (!dom)
383 return -ENOMEM;
384
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300385 len = exp_rootfh(net, dom, path, &fh, maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 auth_domain_put(dom);
387 if (len)
388 return len;
389
Chuck Lever54224f02008-12-12 16:57:20 -0500390 mesg = buf;
391 len = SIMPLE_TRANSACTION_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 qword_addhex(&mesg, &len, (char*)&fh.fh_base, fh.fh_size);
393 mesg[-1] = '\n';
394 return mesg - buf;
395}
396
Chuck Lever262a0982008-12-12 16:57:35 -0500397/**
398 * write_threads - Start NFSD, or report the current number of running threads
399 *
400 * Input:
401 * buf: ignored
402 * size: zero
403 * Output:
404 * On success: passed-in buffer filled with '\n'-terminated C
405 * string numeric value representing the number of
406 * running NFSD threads;
407 * return code is the size in bytes of the string
408 * On error: return code is zero
409 *
410 * OR
411 *
412 * Input:
413 * buf: C string containing an unsigned
414 * integer value representing the
415 * number of NFSD threads to start
416 * size: non-zero length of C string in @buf
417 * Output:
418 * On success: NFS service is started;
419 * passed-in buffer filled with '\n'-terminated C
420 * string numeric value representing the number of
421 * running NFSD threads;
422 * return code is the size in bytes of the string
423 * On error: return code is zero or a negative errno value
424 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425static ssize_t write_threads(struct file *file, char *buf, size_t size)
426{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 char *mesg = buf;
428 int rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300429 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsburskyd41a9412012-12-10 12:19:25 +0300430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (size > 0) {
432 int newthreads;
433 rv = get_int(&mesg, &newthreads);
434 if (rv)
435 return rv;
Chuck Lever9e074852008-12-12 16:57:27 -0500436 if (newthreads < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return -EINVAL;
Stanislav Kinsburskyd41a9412012-12-10 12:19:25 +0300438 rv = nfsd_svc(newthreads, net);
NeilBrown82e12fe2009-06-16 11:03:07 +1000439 if (rv < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return rv;
NeilBrown82e12fe2009-06-16 11:03:07 +1000441 } else
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300442 rv = nfsd_nrthreads(net);
Chuck Levere06b6402009-04-23 19:33:25 -0400443
NeilBrown82e12fe2009-06-16 11:03:07 +1000444 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Chuck Lever262a0982008-12-12 16:57:35 -0500447/**
448 * write_pool_threads - Set or report the current number of threads per pool
449 *
450 * Input:
451 * buf: ignored
452 * size: zero
453 *
454 * OR
455 *
456 * Input:
457 * buf: C string containing whitespace-
458 * separated unsigned integer values
459 * representing the number of NFSD
460 * threads to start in each pool
461 * size: non-zero length of C string in @buf
462 * Output:
463 * On success: passed-in buffer filled with '\n'-terminated C
464 * string containing integer values representing the
465 * number of NFSD threads in each pool;
466 * return code is the size in bytes of the string
467 * On error: return code is zero or a negative errno value
468 */
Greg Bankseed29652006-10-02 02:18:02 -0700469static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
470{
471 /* if size > 0, look for an array of number of threads per node
472 * and apply them then write out number of threads per node as reply
473 */
474 char *mesg = buf;
475 int i;
476 int rv;
477 int len;
Neil Brownbedbdd82008-06-10 08:40:35 -0400478 int npools;
Greg Bankseed29652006-10-02 02:18:02 -0700479 int *nthreads;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300480 struct net *net = file->f_dentry->d_sb->s_fs_info;
Greg Bankseed29652006-10-02 02:18:02 -0700481
Neil Brownbedbdd82008-06-10 08:40:35 -0400482 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300483 npools = nfsd_nrpools(net);
Greg Bankseed29652006-10-02 02:18:02 -0700484 if (npools == 0) {
485 /*
486 * NFS is shut down. The admin can start it by
487 * writing to the threads file but NOT the pool_threads
488 * file, sorry. Report zero threads.
489 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400490 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700491 strcpy(buf, "0\n");
492 return strlen(buf);
493 }
494
495 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
Neil Brownbedbdd82008-06-10 08:40:35 -0400496 rv = -ENOMEM;
Greg Bankseed29652006-10-02 02:18:02 -0700497 if (nthreads == NULL)
Neil Brownbedbdd82008-06-10 08:40:35 -0400498 goto out_free;
Greg Bankseed29652006-10-02 02:18:02 -0700499
500 if (size > 0) {
501 for (i = 0; i < npools; i++) {
502 rv = get_int(&mesg, &nthreads[i]);
503 if (rv == -ENOENT)
504 break; /* fewer numbers than pools */
505 if (rv)
506 goto out_free; /* syntax error */
507 rv = -EINVAL;
508 if (nthreads[i] < 0)
509 goto out_free;
510 }
Stanislav Kinsbursky3938a0d2012-12-10 12:19:30 +0300511 rv = nfsd_set_nrthreads(i, nthreads, net);
Greg Bankseed29652006-10-02 02:18:02 -0700512 if (rv)
513 goto out_free;
514 }
515
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300516 rv = nfsd_get_nrthreads(npools, nthreads, net);
Greg Bankseed29652006-10-02 02:18:02 -0700517 if (rv)
518 goto out_free;
519
520 mesg = buf;
521 size = SIMPLE_TRANSACTION_LIMIT;
522 for (i = 0; i < npools && size > 0; i++) {
523 snprintf(mesg, size, "%d%c", nthreads[i], (i == npools-1 ? '\n' : ' '));
524 len = strlen(mesg);
525 size -= len;
526 mesg += len;
527 }
J. Bruce Fields413d63d7102009-07-28 11:37:25 -0400528 rv = mesg - buf;
Greg Bankseed29652006-10-02 02:18:02 -0700529out_free:
530 kfree(nthreads);
Neil Brownbedbdd82008-06-10 08:40:35 -0400531 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700532 return rv;
533}
534
Jeff Layton3dd98a32008-06-10 08:40:36 -0400535static ssize_t __write_versions(struct file *file, char *buf, size_t size)
NeilBrown70c3b762005-11-07 01:00:25 -0800536{
NeilBrown70c3b762005-11-07 01:00:25 -0800537 char *mesg = buf;
Benny Halevy8daf2202009-04-03 08:28:59 +0300538 char *vers, *minorp, sign;
Chuck Lever261758b2009-04-23 19:33:18 -0400539 int len, num, remaining;
Benny Halevy8daf2202009-04-03 08:28:59 +0300540 unsigned minor;
NeilBrown70c3b762005-11-07 01:00:25 -0800541 ssize_t tlen = 0;
542 char *sep;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300543 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300544 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
NeilBrown70c3b762005-11-07 01:00:25 -0800545
546 if (size>0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300547 if (nn->nfsd_serv)
NeilBrown6658d3a2006-10-02 02:17:46 -0700548 /* Cannot change versions without updating
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300549 * nn->nfsd_serv->sv_xdrsize, and reallocing
NeilBrown6658d3a2006-10-02 02:17:46 -0700550 * rq_argp and rq_resp
551 */
NeilBrown70c3b762005-11-07 01:00:25 -0800552 return -EBUSY;
553 if (buf[size-1] != '\n')
554 return -EINVAL;
555 buf[size-1] = 0;
556
557 vers = mesg;
558 len = qword_get(&mesg, vers, size);
559 if (len <= 0) return -EINVAL;
560 do {
561 sign = *vers;
562 if (sign == '+' || sign == '-')
Benny Halevy8daf2202009-04-03 08:28:59 +0300563 num = simple_strtol((vers+1), &minorp, 0);
NeilBrown70c3b762005-11-07 01:00:25 -0800564 else
Benny Halevy8daf2202009-04-03 08:28:59 +0300565 num = simple_strtol(vers, &minorp, 0);
566 if (*minorp == '.') {
J. Bruce Fieldsff89be82013-01-23 18:25:01 -0500567 if (num != 4)
Benny Halevy8daf2202009-04-03 08:28:59 +0300568 return -EINVAL;
569 minor = simple_strtoul(minorp+1, NULL, 0);
570 if (minor == 0)
571 return -EINVAL;
572 if (nfsd_minorversion(minor, sign == '-' ?
573 NFSD_CLEAR : NFSD_SET) < 0)
574 return -EINVAL;
575 goto next;
576 }
NeilBrown70c3b762005-11-07 01:00:25 -0800577 switch(num) {
578 case 2:
579 case 3:
580 case 4:
NeilBrown6658d3a2006-10-02 02:17:46 -0700581 nfsd_vers(num, sign == '-' ? NFSD_CLEAR : NFSD_SET);
NeilBrown70c3b762005-11-07 01:00:25 -0800582 break;
583 default:
584 return -EINVAL;
585 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300586 next:
NeilBrown70c3b762005-11-07 01:00:25 -0800587 vers += len + 1;
NeilBrown70c3b762005-11-07 01:00:25 -0800588 } while ((len = qword_get(&mesg, vers, size)) > 0);
589 /* If all get turned off, turn them back on, as
590 * having no versions is BAD
591 */
NeilBrown6658d3a2006-10-02 02:17:46 -0700592 nfsd_reset_versions();
NeilBrown70c3b762005-11-07 01:00:25 -0800593 }
Chuck Lever261758b2009-04-23 19:33:18 -0400594
NeilBrown70c3b762005-11-07 01:00:25 -0800595 /* Now write current state into reply buffer */
596 len = 0;
597 sep = "";
Chuck Lever261758b2009-04-23 19:33:18 -0400598 remaining = SIMPLE_TRANSACTION_LIMIT;
NeilBrown70c3b762005-11-07 01:00:25 -0800599 for (num=2 ; num <= 4 ; num++)
NeilBrown6658d3a2006-10-02 02:17:46 -0700600 if (nfsd_vers(num, NFSD_AVAIL)) {
Chuck Lever261758b2009-04-23 19:33:18 -0400601 len = snprintf(buf, remaining, "%s%c%d", sep,
NeilBrown6658d3a2006-10-02 02:17:46 -0700602 nfsd_vers(num, NFSD_TEST)?'+':'-',
NeilBrown70c3b762005-11-07 01:00:25 -0800603 num);
604 sep = " ";
Chuck Lever261758b2009-04-23 19:33:18 -0400605
606 if (len > remaining)
607 break;
608 remaining -= len;
609 buf += len;
610 tlen += len;
NeilBrown70c3b762005-11-07 01:00:25 -0800611 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300612 if (nfsd_vers(4, NFSD_AVAIL))
Chuck Lever261758b2009-04-23 19:33:18 -0400613 for (minor = 1; minor <= NFSD_SUPPORTED_MINOR_VERSION;
614 minor++) {
615 len = snprintf(buf, remaining, " %c4.%u",
Benny Halevy8daf2202009-04-03 08:28:59 +0300616 (nfsd_vers(4, NFSD_TEST) &&
617 nfsd_minorversion(minor, NFSD_TEST)) ?
618 '+' : '-',
619 minor);
Chuck Lever261758b2009-04-23 19:33:18 -0400620
621 if (len > remaining)
622 break;
623 remaining -= len;
624 buf += len;
625 tlen += len;
626 }
627
628 len = snprintf(buf, remaining, "\n");
629 if (len > remaining)
630 return -EINVAL;
631 return tlen + len;
NeilBrown70c3b762005-11-07 01:00:25 -0800632}
633
Chuck Lever262a0982008-12-12 16:57:35 -0500634/**
635 * write_versions - Set or report the available NFS protocol versions
636 *
637 * Input:
638 * buf: ignored
639 * size: zero
640 * Output:
641 * On success: passed-in buffer filled with '\n'-terminated C
642 * string containing positive or negative integer
643 * values representing the current status of each
644 * protocol version;
645 * return code is the size in bytes of the string
646 * On error: return code is zero or a negative errno value
647 *
648 * OR
649 *
650 * Input:
651 * buf: C string containing whitespace-
652 * separated positive or negative
653 * integer values representing NFS
654 * protocol versions to enable ("+n")
655 * or disable ("-n")
656 * size: non-zero length of C string in @buf
657 * Output:
658 * On success: status of zero or more protocol versions has
659 * been updated; passed-in buffer filled with
660 * '\n'-terminated C string containing positive
661 * or negative integer values representing the
662 * current status of each protocol version;
663 * return code is the size in bytes of the string
664 * On error: return code is zero or a negative errno value
665 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400666static ssize_t write_versions(struct file *file, char *buf, size_t size)
667{
668 ssize_t rv;
669
670 mutex_lock(&nfsd_mutex);
671 rv = __write_versions(file, buf, size);
672 mutex_unlock(&nfsd_mutex);
673 return rv;
674}
675
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400676/*
Chuck Lever0a5372d2009-04-23 19:32:10 -0400677 * Zero-length write. Return a list of NFSD's current listener
678 * transports.
679 */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300680static ssize_t __write_ports_names(char *buf, struct net *net)
Chuck Lever0a5372d2009-04-23 19:32:10 -0400681{
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300682 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
683
684 if (nn->nfsd_serv == NULL)
Chuck Lever0a5372d2009-04-23 19:32:10 -0400685 return 0;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300686 return svc_xprt_names(nn->nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
Chuck Lever0a5372d2009-04-23 19:32:10 -0400687}
688
689/*
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400690 * A single 'fd' number was written, in which case it must be for
691 * a socket of a supported family/protocol, and we use it as an
692 * nfsd listener.
693 */
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300694static ssize_t __write_ports_addfd(char *buf, struct net *net)
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400695{
696 char *mesg = buf;
697 int fd, err;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300698 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400699
700 err = get_int(&mesg, &fd);
701 if (err != 0 || fd < 0)
702 return -EINVAL;
703
Stanislav Kinsbursky30646392014-02-26 16:50:01 +0300704 if (svc_alien_sock(net, fd)) {
705 printk(KERN_ERR "%s: socket net is different to NFSd's one\n", __func__);
706 return -EINVAL;
707 }
708
Stanislav Kinsbursky67774362012-12-10 12:19:20 +0300709 err = nfsd_create_serv(net);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400710 if (err != 0)
711 return err;
712
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300713 err = svc_addsock(nn->nfsd_serv, fd, buf, SIMPLE_TRANSACTION_LIMIT);
Jeff Layton78a8d7c2010-07-19 16:50:05 -0400714 if (err < 0) {
Stanislav Kinsbursky19f7e2c2012-07-03 16:46:41 +0400715 nfsd_destroy(net);
Jeff Layton78a8d7c2010-07-19 16:50:05 -0400716 return err;
717 }
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400718
Chuck Leverea068ba2009-04-23 19:32:18 -0400719 /* Decrease the count, but don't shut down the service */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300720 nn->nfsd_serv->sv_nrthreads--;
Chuck Leverea068ba2009-04-23 19:32:18 -0400721 return err;
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400722}
723
724/*
Chuck Lever4eb68c22009-04-23 19:31:40 -0400725 * A transport listener is added by writing it's transport name and
726 * a port number.
727 */
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300728static ssize_t __write_ports_addxprt(char *buf, struct net *net)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400729{
730 char transport[16];
Chuck Lever37498292010-01-26 14:04:22 -0500731 struct svc_xprt *xprt;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400732 int port, err;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300733 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Lever4eb68c22009-04-23 19:31:40 -0400734
J. Bruce Fieldsa10fded2012-08-14 17:48:39 -0400735 if (sscanf(buf, "%15s %5u", transport, &port) != 2)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400736 return -EINVAL;
737
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700738 if (port < 1 || port > USHRT_MAX)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400739 return -EINVAL;
740
Stanislav Kinsbursky67774362012-12-10 12:19:20 +0300741 err = nfsd_create_serv(net);
Chuck Lever4eb68c22009-04-23 19:31:40 -0400742 if (err != 0)
743 return err;
744
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300745 err = svc_create_xprt(nn->nfsd_serv, transport, net,
Chuck Lever4eb68c22009-04-23 19:31:40 -0400746 PF_INET, port, SVC_SOCK_ANONYMOUS);
Chuck Lever68717902010-01-26 14:04:13 -0500747 if (err < 0)
Chuck Lever37498292010-01-26 14:04:22 -0500748 goto out_err;
749
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300750 err = svc_create_xprt(nn->nfsd_serv, transport, net,
Chuck Lever37498292010-01-26 14:04:22 -0500751 PF_INET6, port, SVC_SOCK_ANONYMOUS);
752 if (err < 0 && err != -EAFNOSUPPORT)
753 goto out_close;
Jeff Layton0cd14a02010-07-19 16:50:06 -0400754
755 /* Decrease the count, but don't shut down the service */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300756 nn->nfsd_serv->sv_nrthreads--;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400757 return 0;
Chuck Lever37498292010-01-26 14:04:22 -0500758out_close:
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300759 xprt = svc_find_xprt(nn->nfsd_serv, transport, net, PF_INET, port);
Chuck Lever37498292010-01-26 14:04:22 -0500760 if (xprt != NULL) {
761 svc_close_xprt(xprt);
762 svc_xprt_put(xprt);
763 }
764out_err:
Stanislav Kinsbursky19f7e2c2012-07-03 16:46:41 +0400765 nfsd_destroy(net);
Chuck Lever37498292010-01-26 14:04:22 -0500766 return err;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400767}
768
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300769static ssize_t __write_ports(struct file *file, char *buf, size_t size,
770 struct net *net)
NeilBrown80212d52006-10-02 02:17:47 -0700771{
Chuck Lever0a5372d2009-04-23 19:32:10 -0400772 if (size == 0)
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300773 return __write_ports_names(buf, net);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400774
775 if (isdigit(buf[0]))
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300776 return __write_ports_addfd(buf, net);
Chuck Lever82d56592009-04-23 19:31:48 -0400777
Chuck Lever4eb68c22009-04-23 19:31:40 -0400778 if (isalpha(buf[0]))
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300779 return __write_ports_addxprt(buf, net);
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400780
NeilBrownb41b66d2006-10-02 02:17:48 -0700781 return -EINVAL;
NeilBrown80212d52006-10-02 02:17:47 -0700782}
783
Chuck Lever262a0982008-12-12 16:57:35 -0500784/**
785 * write_ports - Pass a socket file descriptor or transport name to listen on
786 *
787 * Input:
788 * buf: ignored
789 * size: zero
790 * Output:
791 * On success: passed-in buffer filled with a '\n'-terminated C
792 * string containing a whitespace-separated list of
793 * named NFSD listeners;
794 * return code is the size in bytes of the string
795 * On error: return code is zero or a negative errno value
796 *
797 * OR
798 *
799 * Input:
800 * buf: C string containing an unsigned
801 * integer value representing a bound
802 * but unconnected socket that is to be
Chuck Leverc71206a2009-04-23 19:32:03 -0400803 * used as an NFSD listener; listen(3)
804 * must be called for a SOCK_STREAM
805 * socket, otherwise it is ignored
Chuck Lever262a0982008-12-12 16:57:35 -0500806 * size: non-zero length of C string in @buf
807 * Output:
808 * On success: NFS service is started;
809 * passed-in buffer filled with a '\n'-terminated C
810 * string containing a unique alphanumeric name of
811 * the listener;
812 * return code is the size in bytes of the string
813 * On error: return code is a negative errno value
814 *
815 * OR
816 *
817 * Input:
Chuck Lever262a0982008-12-12 16:57:35 -0500818 * buf: C string containing a transport
819 * name and an unsigned integer value
820 * representing the port to listen on,
821 * separated by whitespace
822 * size: non-zero length of C string in @buf
823 * Output:
824 * On success: returns zero; NFS service is started
825 * On error: return code is a negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500826 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400827static ssize_t write_ports(struct file *file, char *buf, size_t size)
828{
829 ssize_t rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300830 struct net *net = file->f_dentry->d_sb->s_fs_info;
Jeff Layton3dd98a32008-06-10 08:40:36 -0400831
Neil Brownbedbdd82008-06-10 08:40:35 -0400832 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300833 rv = __write_ports(file, buf, size, net);
Neil Brownbedbdd82008-06-10 08:40:35 -0400834 mutex_unlock(&nfsd_mutex);
835 return rv;
836}
837
838
NeilBrown596bbe52006-10-04 02:15:48 -0700839int nfsd_max_blksize;
840
Chuck Lever262a0982008-12-12 16:57:35 -0500841/**
842 * write_maxblksize - Set or report the current NFS blksize
843 *
844 * Input:
845 * buf: ignored
846 * size: zero
847 *
848 * OR
849 *
850 * Input:
851 * buf: C string containing an unsigned
852 * integer value representing the new
853 * NFS blksize
854 * size: non-zero length of C string in @buf
855 * Output:
856 * On success: passed-in buffer filled with '\n'-terminated C string
857 * containing numeric value of the current NFS blksize
858 * setting;
859 * return code is the size in bytes of the string
860 * On error: return code is zero or a negative errno value
861 */
NeilBrown596bbe52006-10-04 02:15:48 -0700862static ssize_t write_maxblksize(struct file *file, char *buf, size_t size)
863{
864 char *mesg = buf;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300865 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300866 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
867
NeilBrown596bbe52006-10-04 02:15:48 -0700868 if (size > 0) {
869 int bsize;
870 int rv = get_int(&mesg, &bsize);
871 if (rv)
872 return rv;
873 /* force bsize into allowed range and
874 * required alignment.
875 */
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800876 bsize = max_t(int, bsize, 1024);
877 bsize = min_t(int, bsize, NFSSVC_MAXBLKSIZE);
NeilBrown596bbe52006-10-04 02:15:48 -0700878 bsize &= ~(1024-1);
Neil Brownbedbdd82008-06-10 08:40:35 -0400879 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300880 if (nn->nfsd_serv) {
Neil Brownbedbdd82008-06-10 08:40:35 -0400881 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -0700882 return -EBUSY;
883 }
884 nfsd_max_blksize = bsize;
Neil Brownbedbdd82008-06-10 08:40:35 -0400885 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -0700886 }
Chuck Levere06b6402009-04-23 19:33:25 -0400887
888 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
889 nfsd_max_blksize);
NeilBrown596bbe52006-10-04 02:15:48 -0700890}
891
Jeff Layton5b8db002014-07-02 16:11:22 -0400892/**
893 * write_maxconn - Set or report the current max number of connections
894 *
895 * Input:
896 * buf: ignored
897 * size: zero
898 * OR
899 *
900 * Input:
901 * buf: C string containing an unsigned
902 * integer value representing the new
903 * number of max connections
904 * size: non-zero length of C string in @buf
905 * Output:
906 * On success: passed-in buffer filled with '\n'-terminated C string
907 * containing numeric value of max_connections setting
908 * for this net namespace;
909 * return code is the size in bytes of the string
910 * On error: return code is zero or a negative errno value
911 */
912static ssize_t write_maxconn(struct file *file, char *buf, size_t size)
913{
914 char *mesg = buf;
915 struct net *net = file->f_dentry->d_sb->s_fs_info;
916 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
917 unsigned int maxconn = nn->max_connections;
918
919 if (size > 0) {
920 int rv = get_uint(&mesg, &maxconn);
921
922 if (rv)
923 return rv;
924 nn->max_connections = maxconn;
925 }
926
927 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%u\n", maxconn);
928}
929
NeilBrown70c3b762005-11-07 01:00:25 -0800930#ifdef CONFIG_NFSD_V4
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300931static ssize_t __nfsd4_write_time(struct file *file, char *buf, size_t size,
932 time_t *time, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 char *mesg = buf;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500935 int rv, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 if (size > 0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300938 if (nn->nfsd_serv)
Jeff Layton3dd98a32008-06-10 08:40:36 -0400939 return -EBUSY;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500940 rv = get_int(&mesg, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (rv)
942 return rv;
J. Bruce Fieldse7b184f2010-03-02 11:18:40 -0500943 /*
944 * Some sanity checking. We don't have a reason for
945 * these particular numbers, but problems with the
946 * extremes are:
947 * - Too short: the briefest network outage may
948 * cause clients to lose all their locks. Also,
949 * the frequent polling may be wasteful.
950 * - Too long: do you really want reboot recovery
951 * to take more than an hour? Or to make other
952 * clients wait an hour before being able to
953 * revoke a dead client's locks?
954 */
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500955 if (i < 10 || i > 3600)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return -EINVAL;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500957 *time = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
Chuck Levere06b6402009-04-23 19:33:25 -0400959
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500960 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%ld\n", *time);
961}
962
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300963static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size,
964 time_t *time, struct nfsd_net *nn)
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500965{
966 ssize_t rv;
967
968 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300969 rv = __nfsd4_write_time(file, buf, size, time, nn);
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500970 mutex_unlock(&nfsd_mutex);
971 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972}
973
Chuck Lever262a0982008-12-12 16:57:35 -0500974/**
975 * write_leasetime - Set or report the current NFSv4 lease time
976 *
977 * Input:
978 * buf: ignored
979 * size: zero
980 *
981 * OR
982 *
983 * Input:
984 * buf: C string containing an unsigned
985 * integer value representing the new
986 * NFSv4 lease expiry time
987 * size: non-zero length of C string in @buf
988 * Output:
989 * On success: passed-in buffer filled with '\n'-terminated C
990 * string containing unsigned integer value of the
991 * current lease expiry time;
992 * return code is the size in bytes of the string
993 * On error: return code is zero or a negative errno value
994 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400995static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
996{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300997 struct net *net = file->f_dentry->d_sb->s_fs_info;
998 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300999 return nfsd4_write_time(file, buf, size, &nn->nfsd4_lease, nn);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001000}
1001
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001002/**
1003 * write_gracetime - Set or report current NFSv4 grace period time
1004 *
1005 * As above, but sets the time of the NFSv4 grace period.
1006 *
1007 * Note this should never be set to less than the *previous*
1008 * lease-period time, but we don't try to enforce this. (In the common
1009 * case (a new boot), we don't know what the previous lease time was
1010 * anyway.)
1011 */
1012static ssize_t write_gracetime(struct file *file, char *buf, size_t size)
1013{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001014 struct net *net = file->f_dentry->d_sb->s_fs_info;
1015 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +03001016 return nfsd4_write_time(file, buf, size, &nn->nfsd4_grace, nn);
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001017}
1018
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +03001019static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size,
1020 struct nfsd_net *nn)
NeilBrown0964a3d2005-06-23 22:04:32 -07001021{
1022 char *mesg = buf;
1023 char *recdir;
1024 int len, status;
1025
Jeff Layton3dd98a32008-06-10 08:40:36 -04001026 if (size > 0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +03001027 if (nn->nfsd_serv)
Jeff Layton3dd98a32008-06-10 08:40:36 -04001028 return -EBUSY;
1029 if (size > PATH_MAX || buf[size-1] != '\n')
1030 return -EINVAL;
1031 buf[size-1] = 0;
NeilBrown0964a3d2005-06-23 22:04:32 -07001032
Jeff Layton3dd98a32008-06-10 08:40:36 -04001033 recdir = mesg;
1034 len = qword_get(&mesg, recdir, size);
1035 if (len <= 0)
1036 return -EINVAL;
NeilBrown0964a3d2005-06-23 22:04:32 -07001037
Jeff Layton3dd98a32008-06-10 08:40:36 -04001038 status = nfs4_reset_recoverydir(recdir);
Andi Kleen69049962010-07-20 15:24:27 -07001039 if (status)
1040 return status;
Jeff Layton3dd98a32008-06-10 08:40:36 -04001041 }
Chuck Lever3d72ab82009-04-23 19:33:10 -04001042
1043 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n",
1044 nfs4_recoverydir());
NeilBrown0964a3d2005-06-23 22:04:32 -07001045}
Jeff Layton3dd98a32008-06-10 08:40:36 -04001046
Chuck Lever262a0982008-12-12 16:57:35 -05001047/**
1048 * write_recoverydir - Set or report the pathname of the recovery directory
1049 *
1050 * Input:
1051 * buf: ignored
1052 * size: zero
1053 *
1054 * OR
1055 *
1056 * Input:
1057 * buf: C string containing the pathname
1058 * of the directory on a local file
1059 * system containing permanent NFSv4
1060 * recovery data
1061 * size: non-zero length of C string in @buf
1062 * Output:
1063 * On success: passed-in buffer filled with '\n'-terminated C string
1064 * containing the current recovery pathname setting;
1065 * return code is the size in bytes of the string
1066 * On error: return code is zero or a negative errno value
1067 */
Jeff Layton3dd98a32008-06-10 08:40:36 -04001068static ssize_t write_recoverydir(struct file *file, char *buf, size_t size)
1069{
1070 ssize_t rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001071 struct net *net = file->f_dentry->d_sb->s_fs_info;
1072 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001073
1074 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +03001075 rv = __write_recoverydir(file, buf, size, nn);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001076 mutex_unlock(&nfsd_mutex);
1077 return rv;
1078}
1079
NeilBrown70c3b762005-11-07 01:00:25 -08001080#endif
NeilBrown0964a3d2005-06-23 22:04:32 -07001081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082/*----------------------------------------------------------------------------*/
1083/*
1084 * populating the filesystem.
1085 */
1086
1087static int nfsd_fill_super(struct super_block * sb, void * data, int silent)
1088{
1089 static struct tree_descr nfsd_files[] = {
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +03001090 [NFSD_List] = {"exports", &exports_nfsd_operations, S_IRUGO},
J. Bruce Fieldse8e87532009-12-14 12:53:32 -05001091 [NFSD_Export_features] = {"export_features",
1092 &export_features_operations, S_IRUGO},
Wendy Cheng4373ea82008-01-17 11:10:12 -05001093 [NFSD_FO_UnlockIP] = {"unlock_ip",
1094 &transaction_ops, S_IWUSR|S_IRUSR},
Wendy Cheng17efa372008-01-17 11:10:12 -05001095 [NFSD_FO_UnlockFS] = {"unlock_filesystem",
1096 &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1098 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Bankseed29652006-10-02 02:18:02 -07001099 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Banks03cf6c92009-01-13 21:26:36 +11001100 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
Jeff Laytona2f999a2013-03-27 10:15:38 -04001101 [NFSD_Reply_Cache_Stats] = {"reply_cache_stats", &reply_cache_stats_operations, S_IRUGO},
NeilBrown70c3b762005-11-07 01:00:25 -08001102 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown80212d52006-10-02 02:17:47 -07001103 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
NeilBrown596bbe52006-10-04 02:15:48 -07001104 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
Jeff Layton5b8db002014-07-02 16:11:22 -04001105 [NFSD_MaxConnections] = {"max_connections", &transaction_ops, S_IWUSR|S_IRUGO},
J. Bruce Fieldsb084f592011-05-31 12:24:58 -04001106#if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -05001107 [NFSD_SupportedEnctypes] = {"supported_krb5_enctypes", &supported_enctypes_ops, S_IRUGO},
J. Bruce Fieldsb084f592011-05-31 12:24:58 -04001108#endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109#ifdef CONFIG_NFSD_V4
1110 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001111 [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown0964a3d2005-06-23 22:04:32 -07001112 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113#endif
1114 /* last one */ {""}
1115 };
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001116 struct net *net = data;
1117 int ret;
1118
1119 ret = simple_fill_super(sb, 0x6e667364, nfsd_files);
1120 if (ret)
1121 return ret;
1122 sb->s_fs_info = get_net(net);
1123 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
Al Virofc14f2f2010-07-25 01:48:30 +04001126static struct dentry *nfsd_mount(struct file_system_type *fs_type,
1127 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001129 return mount_ns(fs_type, flags, current->nsproxy->net_ns, nfsd_fill_super);
1130}
1131
1132static void nfsd_umount(struct super_block *sb)
1133{
1134 struct net *net = sb->s_fs_info;
1135
1136 kill_litter_super(sb);
1137 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140static struct file_system_type nfsd_fs_type = {
1141 .owner = THIS_MODULE,
1142 .name = "nfsd",
Al Virofc14f2f2010-07-25 01:48:30 +04001143 .mount = nfsd_mount,
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001144 .kill_sb = nfsd_umount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001146MODULE_ALIAS_FS("nfsd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001148#ifdef CONFIG_PROC_FS
1149static int create_proc_exports_entry(void)
1150{
1151 struct proc_dir_entry *entry;
1152
1153 entry = proc_mkdir("fs/nfs", NULL);
1154 if (!entry)
1155 return -ENOMEM;
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +03001156 entry = proc_create("exports", 0, entry,
1157 &exports_proc_operations);
fanchaotingff7c4b32013-03-27 16:31:18 +08001158 if (!entry) {
1159 remove_proc_entry("fs/nfs", NULL);
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001160 return -ENOMEM;
fanchaotingff7c4b32013-03-27 16:31:18 +08001161 }
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001162 return 0;
1163}
1164#else /* CONFIG_PROC_FS */
1165static int create_proc_exports_entry(void)
1166{
1167 return 0;
1168}
1169#endif
1170
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001171int nfsd_net_id;
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001172
1173static __net_init int nfsd_init_net(struct net *net)
1174{
1175 int retval;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03001176 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001177
1178 retval = nfsd_export_init(net);
1179 if (retval)
1180 goto out_export_error;
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001181 retval = nfsd_idmap_init(net);
1182 if (retval)
1183 goto out_idmap_error;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03001184 nn->nfsd4_lease = 90; /* default lease time */
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03001185 nn->nfsd4_grace = 90;
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001186 return 0;
1187
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001188out_idmap_error:
1189 nfsd_export_shutdown(net);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001190out_export_error:
1191 return retval;
1192}
1193
1194static __net_exit void nfsd_exit_net(struct net *net)
1195{
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001196 nfsd_idmap_shutdown(net);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001197 nfsd_export_shutdown(net);
1198}
1199
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001200static struct pernet_operations nfsd_net_ops = {
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001201 .init = nfsd_init_net,
1202 .exit = nfsd_exit_net,
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001203 .id = &nfsd_net_id,
1204 .size = sizeof(struct nfsd_net),
1205};
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207static int __init init_nfsd(void)
1208{
1209 int retval;
1210 printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
1211
Jeff Layton797a9d72012-03-29 07:52:49 -04001212 retval = register_cld_notifier();
Jeff Layton813fd322012-03-21 09:52:08 -04001213 if (retval)
1214 return retval;
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001215 retval = register_pernet_subsys(&nfsd_net_ops);
1216 if (retval < 0)
Jeff Layton813fd322012-03-21 09:52:08 -04001217 goto out_unregister_notifier;
Bryan Schumaker72083392011-11-01 15:24:59 -04001218 retval = nfsd4_init_slabs();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001219 if (retval)
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001220 goto out_unregister_pernet;
Bryan Schumaker65178db2011-11-01 13:35:21 -04001221 retval = nfsd_fault_inject_init(); /* nfsd fault injection controls */
1222 if (retval)
1223 goto out_free_slabs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 nfsd_stat_init(); /* Statistics */
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001225 retval = nfsd_reply_cache_init();
1226 if (retval)
1227 goto out_free_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 nfsd_lockd_init(); /* lockd->nfsd callbacks */
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001229 retval = create_proc_exports_entry();
1230 if (retval)
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001231 goto out_free_lockd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 retval = register_filesystem(&nfsd_fs_type);
J. Bruce Fields26808d32007-11-09 13:44:06 -05001233 if (retval)
1234 goto out_free_all;
1235 return 0;
1236out_free_all:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001237 remove_proc_entry("fs/nfs/exports", NULL);
1238 remove_proc_entry("fs/nfs", NULL);
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001239out_free_lockd:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001240 nfsd_lockd_shutdown();
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001241 nfsd_reply_cache_shutdown();
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001242out_free_stat:
1243 nfsd_stat_shutdown();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001244 nfsd_fault_inject_cleanup();
1245out_free_slabs:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001246 nfsd4_free_slabs();
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001247out_unregister_pernet:
1248 unregister_pernet_subsys(&nfsd_net_ops);
Jeff Layton813fd322012-03-21 09:52:08 -04001249out_unregister_notifier:
Jeff Layton797a9d72012-03-29 07:52:49 -04001250 unregister_cld_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 return retval;
1252}
1253
1254static void __exit exit_nfsd(void)
1255{
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001256 nfsd_reply_cache_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 remove_proc_entry("fs/nfs/exports", NULL);
1258 remove_proc_entry("fs/nfs", NULL);
1259 nfsd_stat_shutdown();
1260 nfsd_lockd_shutdown();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001261 nfsd4_free_slabs();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001262 nfsd_fault_inject_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 unregister_filesystem(&nfsd_fs_type);
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001264 unregister_pernet_subsys(&nfsd_net_ops);
Jeff Layton797a9d72012-03-29 07:52:49 -04001265 unregister_cld_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
1268MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1269MODULE_LICENSE("GPL");
1270module_init(init_nfsd)
1271module_exit(exit_nfsd)