blob: f6d448e6eb2858794a61de3ebe9618852a2bfa09 [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{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -080088 ino_t ino = file->f_path.dentry->d_inode->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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static int exports_open(struct inode *inode, struct file *file)
129{
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400130 int err;
131 struct seq_file *seq;
Stanislav Kinsburskye5f06f72012-04-11 15:13:28 +0400132 struct nfsd_net *nn = net_generic(&init_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
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800143static const struct file_operations exports_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .open = exports_open,
145 .read = seq_read,
146 .llseek = seq_lseek,
147 .release = seq_release,
Denis V. Lunev9ef2db22008-04-29 01:02:04 -0700148 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149};
150
J. Bruce Fieldse8e87532009-12-14 12:53:32 -0500151static int export_features_show(struct seq_file *m, void *v)
152{
153 seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS);
154 return 0;
155}
156
157static int export_features_open(struct inode *inode, struct file *file)
158{
159 return single_open(file, export_features_show, NULL);
160}
161
162static struct file_operations export_features_operations = {
163 .open = export_features_open,
164 .read = seq_read,
165 .llseek = seq_lseek,
166 .release = single_release,
167};
168
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400169#if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500170static int supported_enctypes_show(struct seq_file *m, void *v)
171{
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400172 seq_printf(m, KRB5_SUPPORTED_ENCTYPES);
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500173 return 0;
174}
175
176static int supported_enctypes_open(struct inode *inode, struct file *file)
177{
178 return single_open(file, supported_enctypes_show, NULL);
179}
180
181static struct file_operations supported_enctypes_ops = {
182 .open = supported_enctypes_open,
183 .read = seq_read,
184 .llseek = seq_lseek,
185 .release = single_release,
186};
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400187#endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500188
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700189static const struct file_operations pool_stats_operations = {
Greg Banks03cf6c92009-01-13 21:26:36 +1100190 .open = nfsd_pool_stats_open,
191 .read = seq_read,
192 .llseek = seq_lseek,
Ryusei Yamaguchied2d8ae2009-08-16 00:54:41 +0900193 .release = nfsd_pool_stats_release,
Greg Banks03cf6c92009-01-13 21:26:36 +1100194 .owner = THIS_MODULE,
195};
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/*----------------------------------------------------------------------------*/
198/*
199 * payload - write methods
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 */
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Chuck Lever262a0982008-12-12 16:57:35 -0500203/**
204 * write_unlock_ip - Release all locks used by a client
205 *
206 * Experimental.
207 *
208 * Input:
209 * buf: '\n'-terminated C string containing a
Chuck Lever41160922009-08-09 15:09:40 -0400210 * presentation format IP address
Chuck Lever262a0982008-12-12 16:57:35 -0500211 * size: length of C string in @buf
212 * Output:
213 * On success: returns zero if all specified locks were released;
214 * returns one if one or more locks were not released
215 * On error: return code is negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500216 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500217static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500218{
Chuck Lever41160922009-08-09 15:09:40 -0400219 struct sockaddr_storage address;
220 struct sockaddr *sap = (struct sockaddr *)&address;
221 size_t salen = sizeof(address);
Chuck Lever367c8c72008-06-30 18:58:14 -0400222 char *fo_path;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300223 struct net *net = file->f_dentry->d_sb->s_fs_info;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500224
225 /* sanity check */
226 if (size == 0)
227 return -EINVAL;
228
229 if (buf[size-1] != '\n')
230 return -EINVAL;
231
232 fo_path = buf;
233 if (qword_get(&buf, fo_path, size) < 0)
234 return -EINVAL;
235
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300236 if (rpc_pton(net, fo_path, size, sap, salen) == 0)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500237 return -EINVAL;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500238
Chuck Lever41160922009-08-09 15:09:40 -0400239 return nlmsvc_unlock_all_by_ip(sap);
Wendy Cheng4373ea82008-01-17 11:10:12 -0500240}
241
Chuck Lever262a0982008-12-12 16:57:35 -0500242/**
243 * write_unlock_fs - Release all locks on a local file system
244 *
245 * Experimental.
246 *
247 * Input:
248 * buf: '\n'-terminated C string containing the
249 * absolute pathname of a local file system
250 * size: length of C string in @buf
251 * Output:
252 * On success: returns zero if all specified locks were released;
253 * returns one if one or more locks were not released
254 * On error: return code is negative errno value
255 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500256static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
Wendy Cheng17efa372008-01-17 11:10:12 -0500257{
Al Viroa63bb992008-08-02 01:03:36 -0400258 struct path path;
Wendy Cheng17efa372008-01-17 11:10:12 -0500259 char *fo_path;
260 int error;
261
262 /* sanity check */
263 if (size == 0)
264 return -EINVAL;
265
266 if (buf[size-1] != '\n')
267 return -EINVAL;
268
269 fo_path = buf;
270 if (qword_get(&buf, fo_path, size) < 0)
271 return -EINVAL;
272
Al Viroa63bb992008-08-02 01:03:36 -0400273 error = kern_path(fo_path, 0, &path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500274 if (error)
275 return error;
276
Chuck Lever262a0982008-12-12 16:57:35 -0500277 /*
278 * XXX: Needs better sanity checking. Otherwise we could end up
279 * releasing locks on the wrong file system.
280 *
281 * For example:
282 * 1. Does the path refer to a directory?
283 * 2. Is that directory a mount point, or
284 * 3. Is that directory the root of an exported file system?
285 */
Al Virod8c95842011-12-07 18:16:57 -0500286 error = nlmsvc_unlock_all_by_sb(path.dentry->d_sb);
Wendy Cheng17efa372008-01-17 11:10:12 -0500287
Al Viroa63bb992008-08-02 01:03:36 -0400288 path_put(&path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500289 return error;
290}
291
Chuck Lever262a0982008-12-12 16:57:35 -0500292/**
293 * write_filehandle - Get a variable-length NFS file handle by path
294 *
295 * On input, the buffer contains a '\n'-terminated C string comprised of
296 * three alphanumeric words separated by whitespace. The string may
297 * contain escape sequences.
298 *
299 * Input:
300 * buf:
301 * domain: client domain name
302 * path: export pathname
303 * maxsize: numeric maximum size of
304 * @buf
305 * size: length of C string in @buf
306 * Output:
307 * On success: passed-in buffer filled with '\n'-terminated C
308 * string containing a ASCII hex text version
309 * of the NFS file handle;
310 * return code is the size in bytes of the string
311 * On error: return code is negative errno value
312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
314{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 char *dname, *path;
Andrew Morton246d95b2007-08-09 00:53:50 -0700316 int uninitialized_var(maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 char *mesg = buf;
318 int len;
319 struct auth_domain *dom;
320 struct knfsd_fh fh;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300321 struct net *net = file->f_dentry->d_sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
J. Bruce Fields87d26ea2008-01-22 17:40:42 -0500323 if (size == 0)
324 return -EINVAL;
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (buf[size-1] != '\n')
327 return -EINVAL;
328 buf[size-1] = 0;
329
330 dname = mesg;
331 len = qword_get(&mesg, dname, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500332 if (len <= 0)
333 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 path = dname+len+1;
336 len = qword_get(&mesg, path, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500337 if (len <= 0)
338 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 len = get_int(&mesg, &maxsize);
341 if (len)
342 return len;
343
344 if (maxsize < NFS_FHSIZE)
345 return -EINVAL;
346 if (maxsize > NFS3_FHSIZE)
347 maxsize = NFS3_FHSIZE;
348
349 if (qword_get(&mesg, mesg, size)>0)
350 return -EINVAL;
351
352 /* we have all the words, they are in buf.. */
353 dom = unix_domain_find(dname);
354 if (!dom)
355 return -ENOMEM;
356
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300357 len = exp_rootfh(net, dom, path, &fh, maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 auth_domain_put(dom);
359 if (len)
360 return len;
361
Chuck Lever54224f02008-12-12 16:57:20 -0500362 mesg = buf;
363 len = SIMPLE_TRANSACTION_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 qword_addhex(&mesg, &len, (char*)&fh.fh_base, fh.fh_size);
365 mesg[-1] = '\n';
366 return mesg - buf;
367}
368
Chuck Lever262a0982008-12-12 16:57:35 -0500369/**
370 * write_threads - Start NFSD, or report the current number of running threads
371 *
372 * Input:
373 * buf: ignored
374 * size: zero
375 * Output:
376 * On success: passed-in buffer filled with '\n'-terminated C
377 * string numeric value representing the number of
378 * running NFSD threads;
379 * return code is the size in bytes of the string
380 * On error: return code is zero
381 *
382 * OR
383 *
384 * Input:
385 * buf: C string containing an unsigned
386 * integer value representing the
387 * number of NFSD threads to start
388 * size: non-zero length of C string in @buf
389 * Output:
390 * On success: NFS service is started;
391 * passed-in buffer filled with '\n'-terminated C
392 * string numeric value representing the number of
393 * running NFSD threads;
394 * return code is the size in bytes of the string
395 * On error: return code is zero or a negative errno value
396 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397static ssize_t write_threads(struct file *file, char *buf, size_t size)
398{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 char *mesg = buf;
400 int rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300401 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsburskyd41a9412012-12-10 12:19:25 +0300402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (size > 0) {
404 int newthreads;
405 rv = get_int(&mesg, &newthreads);
406 if (rv)
407 return rv;
Chuck Lever9e074852008-12-12 16:57:27 -0500408 if (newthreads < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return -EINVAL;
Stanislav Kinsburskyd41a9412012-12-10 12:19:25 +0300410 rv = nfsd_svc(newthreads, net);
NeilBrown82e12fe2009-06-16 11:03:07 +1000411 if (rv < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return rv;
NeilBrown82e12fe2009-06-16 11:03:07 +1000413 } else
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300414 rv = nfsd_nrthreads(net);
Chuck Levere06b6402009-04-23 19:33:25 -0400415
NeilBrown82e12fe2009-06-16 11:03:07 +1000416 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Chuck Lever262a0982008-12-12 16:57:35 -0500419/**
420 * write_pool_threads - Set or report the current number of threads per pool
421 *
422 * Input:
423 * buf: ignored
424 * size: zero
425 *
426 * OR
427 *
428 * Input:
429 * buf: C string containing whitespace-
430 * separated unsigned integer values
431 * representing the number of NFSD
432 * threads to start in each pool
433 * size: non-zero length of C string in @buf
434 * Output:
435 * On success: passed-in buffer filled with '\n'-terminated C
436 * string containing integer values representing the
437 * number of NFSD threads in each pool;
438 * return code is the size in bytes of the string
439 * On error: return code is zero or a negative errno value
440 */
Greg Bankseed29652006-10-02 02:18:02 -0700441static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
442{
443 /* if size > 0, look for an array of number of threads per node
444 * and apply them then write out number of threads per node as reply
445 */
446 char *mesg = buf;
447 int i;
448 int rv;
449 int len;
Neil Brownbedbdd82008-06-10 08:40:35 -0400450 int npools;
Greg Bankseed29652006-10-02 02:18:02 -0700451 int *nthreads;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300452 struct net *net = file->f_dentry->d_sb->s_fs_info;
Greg Bankseed29652006-10-02 02:18:02 -0700453
Neil Brownbedbdd82008-06-10 08:40:35 -0400454 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300455 npools = nfsd_nrpools(net);
Greg Bankseed29652006-10-02 02:18:02 -0700456 if (npools == 0) {
457 /*
458 * NFS is shut down. The admin can start it by
459 * writing to the threads file but NOT the pool_threads
460 * file, sorry. Report zero threads.
461 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400462 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700463 strcpy(buf, "0\n");
464 return strlen(buf);
465 }
466
467 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
Neil Brownbedbdd82008-06-10 08:40:35 -0400468 rv = -ENOMEM;
Greg Bankseed29652006-10-02 02:18:02 -0700469 if (nthreads == NULL)
Neil Brownbedbdd82008-06-10 08:40:35 -0400470 goto out_free;
Greg Bankseed29652006-10-02 02:18:02 -0700471
472 if (size > 0) {
473 for (i = 0; i < npools; i++) {
474 rv = get_int(&mesg, &nthreads[i]);
475 if (rv == -ENOENT)
476 break; /* fewer numbers than pools */
477 if (rv)
478 goto out_free; /* syntax error */
479 rv = -EINVAL;
480 if (nthreads[i] < 0)
481 goto out_free;
482 }
Stanislav Kinsbursky3938a0d2012-12-10 12:19:30 +0300483 rv = nfsd_set_nrthreads(i, nthreads, net);
Greg Bankseed29652006-10-02 02:18:02 -0700484 if (rv)
485 goto out_free;
486 }
487
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300488 rv = nfsd_get_nrthreads(npools, nthreads, net);
Greg Bankseed29652006-10-02 02:18:02 -0700489 if (rv)
490 goto out_free;
491
492 mesg = buf;
493 size = SIMPLE_TRANSACTION_LIMIT;
494 for (i = 0; i < npools && size > 0; i++) {
495 snprintf(mesg, size, "%d%c", nthreads[i], (i == npools-1 ? '\n' : ' '));
496 len = strlen(mesg);
497 size -= len;
498 mesg += len;
499 }
J. Bruce Fields413d63d7102009-07-28 11:37:25 -0400500 rv = mesg - buf;
Greg Bankseed29652006-10-02 02:18:02 -0700501out_free:
502 kfree(nthreads);
Neil Brownbedbdd82008-06-10 08:40:35 -0400503 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700504 return rv;
505}
506
Jeff Layton3dd98a32008-06-10 08:40:36 -0400507static ssize_t __write_versions(struct file *file, char *buf, size_t size)
NeilBrown70c3b762005-11-07 01:00:25 -0800508{
NeilBrown70c3b762005-11-07 01:00:25 -0800509 char *mesg = buf;
Benny Halevy8daf2202009-04-03 08:28:59 +0300510 char *vers, *minorp, sign;
Chuck Lever261758b2009-04-23 19:33:18 -0400511 int len, num, remaining;
Benny Halevy8daf2202009-04-03 08:28:59 +0300512 unsigned minor;
NeilBrown70c3b762005-11-07 01:00:25 -0800513 ssize_t tlen = 0;
514 char *sep;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300515 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300516 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
NeilBrown70c3b762005-11-07 01:00:25 -0800517
518 if (size>0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300519 if (nn->nfsd_serv)
NeilBrown6658d3a2006-10-02 02:17:46 -0700520 /* Cannot change versions without updating
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300521 * nn->nfsd_serv->sv_xdrsize, and reallocing
NeilBrown6658d3a2006-10-02 02:17:46 -0700522 * rq_argp and rq_resp
523 */
NeilBrown70c3b762005-11-07 01:00:25 -0800524 return -EBUSY;
525 if (buf[size-1] != '\n')
526 return -EINVAL;
527 buf[size-1] = 0;
528
529 vers = mesg;
530 len = qword_get(&mesg, vers, size);
531 if (len <= 0) return -EINVAL;
532 do {
533 sign = *vers;
534 if (sign == '+' || sign == '-')
Benny Halevy8daf2202009-04-03 08:28:59 +0300535 num = simple_strtol((vers+1), &minorp, 0);
NeilBrown70c3b762005-11-07 01:00:25 -0800536 else
Benny Halevy8daf2202009-04-03 08:28:59 +0300537 num = simple_strtol(vers, &minorp, 0);
538 if (*minorp == '.') {
J. Bruce Fieldsff89be82013-01-23 18:25:01 -0500539 if (num != 4)
Benny Halevy8daf2202009-04-03 08:28:59 +0300540 return -EINVAL;
541 minor = simple_strtoul(minorp+1, NULL, 0);
542 if (minor == 0)
543 return -EINVAL;
544 if (nfsd_minorversion(minor, sign == '-' ?
545 NFSD_CLEAR : NFSD_SET) < 0)
546 return -EINVAL;
547 goto next;
548 }
NeilBrown70c3b762005-11-07 01:00:25 -0800549 switch(num) {
550 case 2:
551 case 3:
552 case 4:
NeilBrown6658d3a2006-10-02 02:17:46 -0700553 nfsd_vers(num, sign == '-' ? NFSD_CLEAR : NFSD_SET);
NeilBrown70c3b762005-11-07 01:00:25 -0800554 break;
555 default:
556 return -EINVAL;
557 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300558 next:
NeilBrown70c3b762005-11-07 01:00:25 -0800559 vers += len + 1;
NeilBrown70c3b762005-11-07 01:00:25 -0800560 } while ((len = qword_get(&mesg, vers, size)) > 0);
561 /* If all get turned off, turn them back on, as
562 * having no versions is BAD
563 */
NeilBrown6658d3a2006-10-02 02:17:46 -0700564 nfsd_reset_versions();
NeilBrown70c3b762005-11-07 01:00:25 -0800565 }
Chuck Lever261758b2009-04-23 19:33:18 -0400566
NeilBrown70c3b762005-11-07 01:00:25 -0800567 /* Now write current state into reply buffer */
568 len = 0;
569 sep = "";
Chuck Lever261758b2009-04-23 19:33:18 -0400570 remaining = SIMPLE_TRANSACTION_LIMIT;
NeilBrown70c3b762005-11-07 01:00:25 -0800571 for (num=2 ; num <= 4 ; num++)
NeilBrown6658d3a2006-10-02 02:17:46 -0700572 if (nfsd_vers(num, NFSD_AVAIL)) {
Chuck Lever261758b2009-04-23 19:33:18 -0400573 len = snprintf(buf, remaining, "%s%c%d", sep,
NeilBrown6658d3a2006-10-02 02:17:46 -0700574 nfsd_vers(num, NFSD_TEST)?'+':'-',
NeilBrown70c3b762005-11-07 01:00:25 -0800575 num);
576 sep = " ";
Chuck Lever261758b2009-04-23 19:33:18 -0400577
578 if (len > remaining)
579 break;
580 remaining -= len;
581 buf += len;
582 tlen += len;
NeilBrown70c3b762005-11-07 01:00:25 -0800583 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300584 if (nfsd_vers(4, NFSD_AVAIL))
Chuck Lever261758b2009-04-23 19:33:18 -0400585 for (minor = 1; minor <= NFSD_SUPPORTED_MINOR_VERSION;
586 minor++) {
587 len = snprintf(buf, remaining, " %c4.%u",
Benny Halevy8daf2202009-04-03 08:28:59 +0300588 (nfsd_vers(4, NFSD_TEST) &&
589 nfsd_minorversion(minor, NFSD_TEST)) ?
590 '+' : '-',
591 minor);
Chuck Lever261758b2009-04-23 19:33:18 -0400592
593 if (len > remaining)
594 break;
595 remaining -= len;
596 buf += len;
597 tlen += len;
598 }
599
600 len = snprintf(buf, remaining, "\n");
601 if (len > remaining)
602 return -EINVAL;
603 return tlen + len;
NeilBrown70c3b762005-11-07 01:00:25 -0800604}
605
Chuck Lever262a0982008-12-12 16:57:35 -0500606/**
607 * write_versions - Set or report the available NFS protocol versions
608 *
609 * Input:
610 * buf: ignored
611 * size: zero
612 * Output:
613 * On success: passed-in buffer filled with '\n'-terminated C
614 * string containing positive or negative integer
615 * values representing the current status of each
616 * protocol version;
617 * return code is the size in bytes of the string
618 * On error: return code is zero or a negative errno value
619 *
620 * OR
621 *
622 * Input:
623 * buf: C string containing whitespace-
624 * separated positive or negative
625 * integer values representing NFS
626 * protocol versions to enable ("+n")
627 * or disable ("-n")
628 * size: non-zero length of C string in @buf
629 * Output:
630 * On success: status of zero or more protocol versions has
631 * been updated; passed-in buffer filled with
632 * '\n'-terminated C string containing positive
633 * or negative integer values representing the
634 * current status of each 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 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400638static ssize_t write_versions(struct file *file, char *buf, size_t size)
639{
640 ssize_t rv;
641
642 mutex_lock(&nfsd_mutex);
643 rv = __write_versions(file, buf, size);
644 mutex_unlock(&nfsd_mutex);
645 return rv;
646}
647
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400648/*
Chuck Lever0a5372d2009-04-23 19:32:10 -0400649 * Zero-length write. Return a list of NFSD's current listener
650 * transports.
651 */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300652static ssize_t __write_ports_names(char *buf, struct net *net)
Chuck Lever0a5372d2009-04-23 19:32:10 -0400653{
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300654 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
655
656 if (nn->nfsd_serv == NULL)
Chuck Lever0a5372d2009-04-23 19:32:10 -0400657 return 0;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300658 return svc_xprt_names(nn->nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
Chuck Lever0a5372d2009-04-23 19:32:10 -0400659}
660
661/*
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400662 * A single 'fd' number was written, in which case it must be for
663 * a socket of a supported family/protocol, and we use it as an
664 * nfsd listener.
665 */
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300666static ssize_t __write_ports_addfd(char *buf, struct net *net)
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400667{
668 char *mesg = buf;
669 int fd, err;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300670 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400671
672 err = get_int(&mesg, &fd);
673 if (err != 0 || fd < 0)
674 return -EINVAL;
675
Stanislav Kinsbursky67774362012-12-10 12:19:20 +0300676 err = nfsd_create_serv(net);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400677 if (err != 0)
678 return err;
679
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300680 err = svc_addsock(nn->nfsd_serv, fd, buf, SIMPLE_TRANSACTION_LIMIT);
Jeff Layton78a8d7c2010-07-19 16:50:05 -0400681 if (err < 0) {
Stanislav Kinsbursky19f7e2c2012-07-03 16:46:41 +0400682 nfsd_destroy(net);
Jeff Layton78a8d7c2010-07-19 16:50:05 -0400683 return err;
684 }
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400685
Chuck Leverea068ba2009-04-23 19:32:18 -0400686 /* Decrease the count, but don't shut down the service */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300687 nn->nfsd_serv->sv_nrthreads--;
Chuck Leverea068ba2009-04-23 19:32:18 -0400688 return err;
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400689}
690
691/*
Chuck Lever4eb68c22009-04-23 19:31:40 -0400692 * A transport listener is added by writing it's transport name and
693 * a port number.
694 */
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300695static ssize_t __write_ports_addxprt(char *buf, struct net *net)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400696{
697 char transport[16];
Chuck Lever37498292010-01-26 14:04:22 -0500698 struct svc_xprt *xprt;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400699 int port, err;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300700 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Lever4eb68c22009-04-23 19:31:40 -0400701
J. Bruce Fieldsa10fded2012-08-14 17:48:39 -0400702 if (sscanf(buf, "%15s %5u", transport, &port) != 2)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400703 return -EINVAL;
704
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700705 if (port < 1 || port > USHRT_MAX)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400706 return -EINVAL;
707
Stanislav Kinsbursky67774362012-12-10 12:19:20 +0300708 err = nfsd_create_serv(net);
Chuck Lever4eb68c22009-04-23 19:31:40 -0400709 if (err != 0)
710 return err;
711
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300712 err = svc_create_xprt(nn->nfsd_serv, transport, net,
Chuck Lever4eb68c22009-04-23 19:31:40 -0400713 PF_INET, port, SVC_SOCK_ANONYMOUS);
Chuck Lever68717902010-01-26 14:04:13 -0500714 if (err < 0)
Chuck Lever37498292010-01-26 14:04:22 -0500715 goto out_err;
716
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300717 err = svc_create_xprt(nn->nfsd_serv, transport, net,
Chuck Lever37498292010-01-26 14:04:22 -0500718 PF_INET6, port, SVC_SOCK_ANONYMOUS);
719 if (err < 0 && err != -EAFNOSUPPORT)
720 goto out_close;
Jeff Layton0cd14a02010-07-19 16:50:06 -0400721
722 /* Decrease the count, but don't shut down the service */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300723 nn->nfsd_serv->sv_nrthreads--;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400724 return 0;
Chuck Lever37498292010-01-26 14:04:22 -0500725out_close:
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300726 xprt = svc_find_xprt(nn->nfsd_serv, transport, net, PF_INET, port);
Chuck Lever37498292010-01-26 14:04:22 -0500727 if (xprt != NULL) {
728 svc_close_xprt(xprt);
729 svc_xprt_put(xprt);
730 }
731out_err:
Stanislav Kinsbursky19f7e2c2012-07-03 16:46:41 +0400732 nfsd_destroy(net);
Chuck Lever37498292010-01-26 14:04:22 -0500733 return err;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400734}
735
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300736static ssize_t __write_ports(struct file *file, char *buf, size_t size,
737 struct net *net)
NeilBrown80212d52006-10-02 02:17:47 -0700738{
Chuck Lever0a5372d2009-04-23 19:32:10 -0400739 if (size == 0)
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300740 return __write_ports_names(buf, net);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400741
742 if (isdigit(buf[0]))
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300743 return __write_ports_addfd(buf, net);
Chuck Lever82d56592009-04-23 19:31:48 -0400744
Chuck Lever4eb68c22009-04-23 19:31:40 -0400745 if (isalpha(buf[0]))
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300746 return __write_ports_addxprt(buf, net);
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400747
NeilBrownb41b66d2006-10-02 02:17:48 -0700748 return -EINVAL;
NeilBrown80212d52006-10-02 02:17:47 -0700749}
750
Chuck Lever262a0982008-12-12 16:57:35 -0500751/**
752 * write_ports - Pass a socket file descriptor or transport name to listen on
753 *
754 * Input:
755 * buf: ignored
756 * size: zero
757 * Output:
758 * On success: passed-in buffer filled with a '\n'-terminated C
759 * string containing a whitespace-separated list of
760 * named NFSD listeners;
761 * return code is the size in bytes of the string
762 * On error: return code is zero or a negative errno value
763 *
764 * OR
765 *
766 * Input:
767 * buf: C string containing an unsigned
768 * integer value representing a bound
769 * but unconnected socket that is to be
Chuck Leverc71206a2009-04-23 19:32:03 -0400770 * used as an NFSD listener; listen(3)
771 * must be called for a SOCK_STREAM
772 * socket, otherwise it is ignored
Chuck Lever262a0982008-12-12 16:57:35 -0500773 * size: non-zero length of C string in @buf
774 * Output:
775 * On success: NFS service is started;
776 * passed-in buffer filled with a '\n'-terminated C
777 * string containing a unique alphanumeric name of
778 * the listener;
779 * return code is the size in bytes of the string
780 * On error: return code is a negative errno value
781 *
782 * OR
783 *
784 * Input:
Chuck Lever262a0982008-12-12 16:57:35 -0500785 * buf: C string containing a transport
786 * name and an unsigned integer value
787 * representing the port to listen on,
788 * separated by whitespace
789 * size: non-zero length of C string in @buf
790 * Output:
791 * On success: returns zero; NFS service is started
792 * On error: return code is a negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500793 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400794static ssize_t write_ports(struct file *file, char *buf, size_t size)
795{
796 ssize_t rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300797 struct net *net = file->f_dentry->d_sb->s_fs_info;
Jeff Layton3dd98a32008-06-10 08:40:36 -0400798
Neil Brownbedbdd82008-06-10 08:40:35 -0400799 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300800 rv = __write_ports(file, buf, size, net);
Neil Brownbedbdd82008-06-10 08:40:35 -0400801 mutex_unlock(&nfsd_mutex);
802 return rv;
803}
804
805
NeilBrown596bbe52006-10-04 02:15:48 -0700806int nfsd_max_blksize;
807
Chuck Lever262a0982008-12-12 16:57:35 -0500808/**
809 * write_maxblksize - Set or report the current NFS blksize
810 *
811 * Input:
812 * buf: ignored
813 * size: zero
814 *
815 * OR
816 *
817 * Input:
818 * buf: C string containing an unsigned
819 * integer value representing the new
820 * NFS blksize
821 * size: non-zero length of C string in @buf
822 * Output:
823 * On success: passed-in buffer filled with '\n'-terminated C string
824 * containing numeric value of the current NFS blksize
825 * setting;
826 * return code is the size in bytes of the string
827 * On error: return code is zero or a negative errno value
828 */
NeilBrown596bbe52006-10-04 02:15:48 -0700829static ssize_t write_maxblksize(struct file *file, char *buf, size_t size)
830{
831 char *mesg = buf;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300832 struct net *net = file->f_dentry->d_sb->s_fs_info;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300833 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
834
NeilBrown596bbe52006-10-04 02:15:48 -0700835 if (size > 0) {
836 int bsize;
837 int rv = get_int(&mesg, &bsize);
838 if (rv)
839 return rv;
840 /* force bsize into allowed range and
841 * required alignment.
842 */
843 if (bsize < 1024)
844 bsize = 1024;
845 if (bsize > NFSSVC_MAXBLKSIZE)
846 bsize = NFSSVC_MAXBLKSIZE;
847 bsize &= ~(1024-1);
Neil Brownbedbdd82008-06-10 08:40:35 -0400848 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300849 if (nn->nfsd_serv) {
Neil Brownbedbdd82008-06-10 08:40:35 -0400850 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -0700851 return -EBUSY;
852 }
853 nfsd_max_blksize = bsize;
Neil Brownbedbdd82008-06-10 08:40:35 -0400854 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -0700855 }
Chuck Levere06b6402009-04-23 19:33:25 -0400856
857 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
858 nfsd_max_blksize);
NeilBrown596bbe52006-10-04 02:15:48 -0700859}
860
NeilBrown70c3b762005-11-07 01:00:25 -0800861#ifdef CONFIG_NFSD_V4
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300862static ssize_t __nfsd4_write_time(struct file *file, char *buf, size_t size,
863 time_t *time, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 char *mesg = buf;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500866 int rv, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 if (size > 0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300869 if (nn->nfsd_serv)
Jeff Layton3dd98a32008-06-10 08:40:36 -0400870 return -EBUSY;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500871 rv = get_int(&mesg, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (rv)
873 return rv;
J. Bruce Fieldse7b184f2010-03-02 11:18:40 -0500874 /*
875 * Some sanity checking. We don't have a reason for
876 * these particular numbers, but problems with the
877 * extremes are:
878 * - Too short: the briefest network outage may
879 * cause clients to lose all their locks. Also,
880 * the frequent polling may be wasteful.
881 * - Too long: do you really want reboot recovery
882 * to take more than an hour? Or to make other
883 * clients wait an hour before being able to
884 * revoke a dead client's locks?
885 */
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500886 if (i < 10 || i > 3600)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 return -EINVAL;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500888 *time = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
Chuck Levere06b6402009-04-23 19:33:25 -0400890
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500891 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%ld\n", *time);
892}
893
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300894static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size,
895 time_t *time, struct nfsd_net *nn)
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500896{
897 ssize_t rv;
898
899 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300900 rv = __nfsd4_write_time(file, buf, size, time, nn);
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500901 mutex_unlock(&nfsd_mutex);
902 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
Chuck Lever262a0982008-12-12 16:57:35 -0500905/**
906 * write_leasetime - Set or report the current NFSv4 lease time
907 *
908 * Input:
909 * buf: ignored
910 * size: zero
911 *
912 * OR
913 *
914 * Input:
915 * buf: C string containing an unsigned
916 * integer value representing the new
917 * NFSv4 lease expiry time
918 * size: non-zero length of C string in @buf
919 * Output:
920 * On success: passed-in buffer filled with '\n'-terminated C
921 * string containing unsigned integer value of the
922 * current lease expiry time;
923 * return code is the size in bytes of the string
924 * On error: return code is zero or a negative errno value
925 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400926static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
927{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300928 struct net *net = file->f_dentry->d_sb->s_fs_info;
929 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300930 return nfsd4_write_time(file, buf, size, &nn->nfsd4_lease, nn);
Jeff Layton3dd98a32008-06-10 08:40:36 -0400931}
932
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -0500933/**
934 * write_gracetime - Set or report current NFSv4 grace period time
935 *
936 * As above, but sets the time of the NFSv4 grace period.
937 *
938 * Note this should never be set to less than the *previous*
939 * lease-period time, but we don't try to enforce this. (In the common
940 * case (a new boot), we don't know what the previous lease time was
941 * anyway.)
942 */
943static ssize_t write_gracetime(struct file *file, char *buf, size_t size)
944{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300945 struct net *net = file->f_dentry->d_sb->s_fs_info;
946 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300947 return nfsd4_write_time(file, buf, size, &nn->nfsd4_grace, nn);
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -0500948}
949
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300950static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size,
951 struct nfsd_net *nn)
NeilBrown0964a3d2005-06-23 22:04:32 -0700952{
953 char *mesg = buf;
954 char *recdir;
955 int len, status;
956
Jeff Layton3dd98a32008-06-10 08:40:36 -0400957 if (size > 0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300958 if (nn->nfsd_serv)
Jeff Layton3dd98a32008-06-10 08:40:36 -0400959 return -EBUSY;
960 if (size > PATH_MAX || buf[size-1] != '\n')
961 return -EINVAL;
962 buf[size-1] = 0;
NeilBrown0964a3d2005-06-23 22:04:32 -0700963
Jeff Layton3dd98a32008-06-10 08:40:36 -0400964 recdir = mesg;
965 len = qword_get(&mesg, recdir, size);
966 if (len <= 0)
967 return -EINVAL;
NeilBrown0964a3d2005-06-23 22:04:32 -0700968
Jeff Layton3dd98a32008-06-10 08:40:36 -0400969 status = nfs4_reset_recoverydir(recdir);
Andi Kleen69049962010-07-20 15:24:27 -0700970 if (status)
971 return status;
Jeff Layton3dd98a32008-06-10 08:40:36 -0400972 }
Chuck Lever3d72ab82009-04-23 19:33:10 -0400973
974 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n",
975 nfs4_recoverydir());
NeilBrown0964a3d2005-06-23 22:04:32 -0700976}
Jeff Layton3dd98a32008-06-10 08:40:36 -0400977
Chuck Lever262a0982008-12-12 16:57:35 -0500978/**
979 * write_recoverydir - Set or report the pathname of the recovery directory
980 *
981 * Input:
982 * buf: ignored
983 * size: zero
984 *
985 * OR
986 *
987 * Input:
988 * buf: C string containing the pathname
989 * of the directory on a local file
990 * system containing permanent NFSv4
991 * recovery data
992 * size: non-zero length of C string in @buf
993 * Output:
994 * On success: passed-in buffer filled with '\n'-terminated C string
995 * containing the current recovery pathname setting;
996 * return code is the size in bytes of the string
997 * On error: return code is zero or a negative errno value
998 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400999static ssize_t write_recoverydir(struct file *file, char *buf, size_t size)
1000{
1001 ssize_t rv;
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001002 struct net *net = file->f_dentry->d_sb->s_fs_info;
1003 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001004
1005 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +03001006 rv = __write_recoverydir(file, buf, size, nn);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001007 mutex_unlock(&nfsd_mutex);
1008 return rv;
1009}
1010
NeilBrown70c3b762005-11-07 01:00:25 -08001011#endif
NeilBrown0964a3d2005-06-23 22:04:32 -07001012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/*----------------------------------------------------------------------------*/
1014/*
1015 * populating the filesystem.
1016 */
1017
1018static int nfsd_fill_super(struct super_block * sb, void * data, int silent)
1019{
1020 static struct tree_descr nfsd_files[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 [NFSD_List] = {"exports", &exports_operations, S_IRUGO},
J. Bruce Fieldse8e87532009-12-14 12:53:32 -05001022 [NFSD_Export_features] = {"export_features",
1023 &export_features_operations, S_IRUGO},
Wendy Cheng4373ea82008-01-17 11:10:12 -05001024 [NFSD_FO_UnlockIP] = {"unlock_ip",
1025 &transaction_ops, S_IWUSR|S_IRUSR},
Wendy Cheng17efa372008-01-17 11:10:12 -05001026 [NFSD_FO_UnlockFS] = {"unlock_filesystem",
1027 &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1029 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Bankseed29652006-10-02 02:18:02 -07001030 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Banks03cf6c92009-01-13 21:26:36 +11001031 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
NeilBrown70c3b762005-11-07 01:00:25 -08001032 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown80212d52006-10-02 02:17:47 -07001033 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
NeilBrown596bbe52006-10-04 02:15:48 -07001034 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
J. Bruce Fieldsb084f592011-05-31 12:24:58 -04001035#if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -05001036 [NFSD_SupportedEnctypes] = {"supported_krb5_enctypes", &supported_enctypes_ops, S_IRUGO},
J. Bruce Fieldsb084f592011-05-31 12:24:58 -04001037#endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038#ifdef CONFIG_NFSD_V4
1039 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001040 [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown0964a3d2005-06-23 22:04:32 -07001041 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042#endif
1043 /* last one */ {""}
1044 };
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001045 struct net *net = data;
1046 int ret;
1047
1048 ret = simple_fill_super(sb, 0x6e667364, nfsd_files);
1049 if (ret)
1050 return ret;
1051 sb->s_fs_info = get_net(net);
1052 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
Al Virofc14f2f2010-07-25 01:48:30 +04001055static struct dentry *nfsd_mount(struct file_system_type *fs_type,
1056 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001058 return mount_ns(fs_type, flags, current->nsproxy->net_ns, nfsd_fill_super);
1059}
1060
1061static void nfsd_umount(struct super_block *sb)
1062{
1063 struct net *net = sb->s_fs_info;
1064
1065 kill_litter_super(sb);
1066 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067}
1068
1069static struct file_system_type nfsd_fs_type = {
1070 .owner = THIS_MODULE,
1071 .name = "nfsd",
Al Virofc14f2f2010-07-25 01:48:30 +04001072 .mount = nfsd_mount,
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001073 .kill_sb = nfsd_umount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074};
1075
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001076#ifdef CONFIG_PROC_FS
1077static int create_proc_exports_entry(void)
1078{
1079 struct proc_dir_entry *entry;
1080
1081 entry = proc_mkdir("fs/nfs", NULL);
1082 if (!entry)
1083 return -ENOMEM;
Denis V. Lunev9ef2db22008-04-29 01:02:04 -07001084 entry = proc_create("exports", 0, entry, &exports_operations);
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001085 if (!entry)
1086 return -ENOMEM;
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001087 return 0;
1088}
1089#else /* CONFIG_PROC_FS */
1090static int create_proc_exports_entry(void)
1091{
1092 return 0;
1093}
1094#endif
1095
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001096int nfsd_net_id;
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001097
1098static __net_init int nfsd_init_net(struct net *net)
1099{
1100 int retval;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03001101 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001102
1103 retval = nfsd_export_init(net);
1104 if (retval)
1105 goto out_export_error;
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001106 retval = nfsd_idmap_init(net);
1107 if (retval)
1108 goto out_idmap_error;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03001109 nn->nfsd4_lease = 90; /* default lease time */
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03001110 nn->nfsd4_grace = 90;
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001111 return 0;
1112
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001113out_idmap_error:
1114 nfsd_export_shutdown(net);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001115out_export_error:
1116 return retval;
1117}
1118
1119static __net_exit void nfsd_exit_net(struct net *net)
1120{
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001121 nfsd_idmap_shutdown(net);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001122 nfsd_export_shutdown(net);
1123}
1124
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001125static struct pernet_operations nfsd_net_ops = {
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001126 .init = nfsd_init_net,
1127 .exit = nfsd_exit_net,
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001128 .id = &nfsd_net_id,
1129 .size = sizeof(struct nfsd_net),
1130};
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132static int __init init_nfsd(void)
1133{
1134 int retval;
1135 printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
1136
Jeff Layton797a9d72012-03-29 07:52:49 -04001137 retval = register_cld_notifier();
Jeff Layton813fd322012-03-21 09:52:08 -04001138 if (retval)
1139 return retval;
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001140 retval = register_pernet_subsys(&nfsd_net_ops);
1141 if (retval < 0)
Jeff Layton813fd322012-03-21 09:52:08 -04001142 goto out_unregister_notifier;
Bryan Schumaker72083392011-11-01 15:24:59 -04001143 retval = nfsd4_init_slabs();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001144 if (retval)
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001145 goto out_unregister_pernet;
Bryan Schumaker72083392011-11-01 15:24:59 -04001146 nfs4_state_init();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001147 retval = nfsd_fault_inject_init(); /* nfsd fault injection controls */
1148 if (retval)
1149 goto out_free_slabs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 nfsd_stat_init(); /* Statistics */
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001151 retval = nfsd_reply_cache_init();
1152 if (retval)
1153 goto out_free_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 nfsd_lockd_init(); /* lockd->nfsd callbacks */
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001155 retval = create_proc_exports_entry();
1156 if (retval)
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001157 goto out_free_lockd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 retval = register_filesystem(&nfsd_fs_type);
J. Bruce Fields26808d32007-11-09 13:44:06 -05001159 if (retval)
1160 goto out_free_all;
1161 return 0;
1162out_free_all:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001163 remove_proc_entry("fs/nfs/exports", NULL);
1164 remove_proc_entry("fs/nfs", NULL);
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001165out_free_lockd:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001166 nfsd_lockd_shutdown();
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001167 nfsd_reply_cache_shutdown();
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001168out_free_stat:
1169 nfsd_stat_shutdown();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001170 nfsd_fault_inject_cleanup();
1171out_free_slabs:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001172 nfsd4_free_slabs();
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001173out_unregister_pernet:
1174 unregister_pernet_subsys(&nfsd_net_ops);
Jeff Layton813fd322012-03-21 09:52:08 -04001175out_unregister_notifier:
Jeff Layton797a9d72012-03-29 07:52:49 -04001176 unregister_cld_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return retval;
1178}
1179
1180static void __exit exit_nfsd(void)
1181{
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001182 nfsd_reply_cache_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 remove_proc_entry("fs/nfs/exports", NULL);
1184 remove_proc_entry("fs/nfs", NULL);
1185 nfsd_stat_shutdown();
1186 nfsd_lockd_shutdown();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001187 nfsd4_free_slabs();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001188 nfsd_fault_inject_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 unregister_filesystem(&nfsd_fs_type);
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001190 unregister_pernet_subsys(&nfsd_net_ops);
Jeff Layton797a9d72012-03-29 07:52:49 -04001191 unregister_cld_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
1194MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1195MODULE_LICENSE("GPL");
1196module_init(init_nfsd)
1197module_exit(exit_nfsd)