blob: 19ace74d35f6f2ac130cc3d31eab766aafcaccff [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,
Jeff Layton7f5ef2e2014-09-12 16:40:21 -040052 NFSD_V4EndGrace,
NeilBrown70c3b762005-11-07 01:00:25 -080053#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
56/*
57 * write() for these nodes.
58 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static ssize_t write_filehandle(struct file *file, char *buf, size_t size);
Chuck Leverb046ccd2008-12-12 16:57:13 -050060static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size);
61static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static ssize_t write_threads(struct file *file, char *buf, size_t size);
Greg Bankseed29652006-10-02 02:18:02 -070063static ssize_t write_pool_threads(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080064static ssize_t write_versions(struct file *file, char *buf, size_t size);
NeilBrown80212d52006-10-02 02:17:47 -070065static ssize_t write_ports(struct file *file, char *buf, size_t size);
NeilBrown596bbe52006-10-04 02:15:48 -070066static ssize_t write_maxblksize(struct file *file, char *buf, size_t size);
Jeff Layton5b8db002014-07-02 16:11:22 -040067static ssize_t write_maxconn(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080068#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static ssize_t write_leasetime(struct file *file, char *buf, size_t size);
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050070static ssize_t write_gracetime(struct file *file, char *buf, size_t size);
NeilBrown0964a3d2005-06-23 22:04:32 -070071static ssize_t write_recoverydir(struct file *file, char *buf, size_t size);
Jeff Layton7f5ef2e2014-09-12 16:40:21 -040072static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080073#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static ssize_t (*write_op[])(struct file *, char *, size_t) = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 [NFSD_Fh] = write_filehandle,
Chuck Leverb046ccd2008-12-12 16:57:13 -050077 [NFSD_FO_UnlockIP] = write_unlock_ip,
78 [NFSD_FO_UnlockFS] = write_unlock_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 [NFSD_Threads] = write_threads,
Greg Bankseed29652006-10-02 02:18:02 -070080 [NFSD_Pool_Threads] = write_pool_threads,
NeilBrown70c3b762005-11-07 01:00:25 -080081 [NFSD_Versions] = write_versions,
NeilBrown80212d52006-10-02 02:17:47 -070082 [NFSD_Ports] = write_ports,
NeilBrown596bbe52006-10-04 02:15:48 -070083 [NFSD_MaxBlkSize] = write_maxblksize,
Jeff Layton5b8db002014-07-02 16:11:22 -040084 [NFSD_MaxConnections] = write_maxconn,
NeilBrown70c3b762005-11-07 01:00:25 -080085#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 [NFSD_Leasetime] = write_leasetime,
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050087 [NFSD_Gracetime] = write_gracetime,
NeilBrown0964a3d2005-06-23 22:04:32 -070088 [NFSD_RecoveryDir] = write_recoverydir,
Jeff Layton7f5ef2e2014-09-12 16:40:21 -040089 [NFSD_V4EndGrace] = write_v4_end_grace,
NeilBrown70c3b762005-11-07 01:00:25 -080090#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070091};
92
93static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
94{
Al Viro496ad9a2013-01-23 17:07:38 -050095 ino_t ino = file_inode(file)->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 char *data;
97 ssize_t rv;
98
Tobias Klausere8c96f82006-03-24 03:15:34 -080099 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return -EINVAL;
101
102 data = simple_transaction_get(file, buf, size);
103 if (IS_ERR(data))
104 return PTR_ERR(data);
105
106 rv = write_op[ino](file, data, size);
NeilBrown8971a102007-02-14 00:33:11 -0800107 if (rv >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 simple_transaction_set(file, rv);
109 rv = size;
110 }
111 return rv;
112}
113
NeilBrown73900222005-11-07 01:00:24 -0800114static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
115{
116 if (! file->private_data) {
117 /* An attempt to read a transaction file without writing
118 * causes a 0-byte write so that the file can return
119 * state information
120 */
121 ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos);
122 if (rv < 0)
123 return rv;
124 }
125 return simple_transaction_read(file, buf, size, pos);
126}
127
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800128static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .write = nfsctl_transaction_write,
NeilBrown73900222005-11-07 01:00:24 -0800130 .read = nfsctl_transaction_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .release = simple_transaction_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200132 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300135static int exports_net_open(struct net *net, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400137 int err;
138 struct seq_file *seq;
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300139 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400140
141 err = seq_open(file, &nfs_exports_op);
142 if (err)
143 return err;
144
145 seq = file->private_data;
Stanislav Kinsburskye5f06f72012-04-11 15:13:28 +0400146 seq->private = nn->svc_export_cache;
Stanislav Kinsburskyf2c7ea12012-03-28 19:09:29 +0400147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +0300150static int exports_proc_open(struct inode *inode, struct file *file)
151{
152 return exports_net_open(current->nsproxy->net_ns, file);
153}
154
155static const struct file_operations exports_proc_operations = {
156 .open = exports_proc_open,
157 .read = seq_read,
158 .llseek = seq_lseek,
159 .release = seq_release,
160 .owner = THIS_MODULE,
161};
162
163static int exports_nfsd_open(struct inode *inode, struct file *file)
164{
165 return exports_net_open(inode->i_sb->s_fs_info, file);
166}
167
168static const struct file_operations exports_nfsd_operations = {
169 .open = exports_nfsd_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 .read = seq_read,
171 .llseek = seq_lseek,
172 .release = seq_release,
Denis V. Lunev9ef2db22008-04-29 01:02:04 -0700173 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
J. Bruce Fieldse8e87532009-12-14 12:53:32 -0500176static int export_features_show(struct seq_file *m, void *v)
177{
178 seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS);
179 return 0;
180}
181
182static int export_features_open(struct inode *inode, struct file *file)
183{
184 return single_open(file, export_features_show, NULL);
185}
186
Al Viro75ef9de2013-04-04 19:09:41 -0400187static const struct file_operations export_features_operations = {
J. Bruce Fieldse8e87532009-12-14 12:53:32 -0500188 .open = export_features_open,
189 .read = seq_read,
190 .llseek = seq_lseek,
191 .release = single_release,
192};
193
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400194#if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500195static int supported_enctypes_show(struct seq_file *m, void *v)
196{
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400197 seq_printf(m, KRB5_SUPPORTED_ENCTYPES);
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500198 return 0;
199}
200
201static int supported_enctypes_open(struct inode *inode, struct file *file)
202{
203 return single_open(file, supported_enctypes_show, NULL);
204}
205
Al Viro75ef9de2013-04-04 19:09:41 -0400206static const struct file_operations supported_enctypes_ops = {
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500207 .open = supported_enctypes_open,
208 .read = seq_read,
209 .llseek = seq_lseek,
210 .release = single_release,
211};
J. Bruce Fieldsb084f592011-05-31 12:24:58 -0400212#endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -0500213
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700214static const struct file_operations pool_stats_operations = {
Greg Banks03cf6c92009-01-13 21:26:36 +1100215 .open = nfsd_pool_stats_open,
216 .read = seq_read,
217 .llseek = seq_lseek,
Ryusei Yamaguchied2d8ae2009-08-16 00:54:41 +0900218 .release = nfsd_pool_stats_release,
Greg Banks03cf6c92009-01-13 21:26:36 +1100219 .owner = THIS_MODULE,
220};
221
Jeff Laytona2f999a2013-03-27 10:15:38 -0400222static struct file_operations reply_cache_stats_operations = {
223 .open = nfsd_reply_cache_stats_open,
224 .read = seq_read,
225 .llseek = seq_lseek,
226 .release = single_release,
227};
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*----------------------------------------------------------------------------*/
230/*
231 * payload - write methods
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
233
Al Viro244c7d42014-10-21 20:19:11 -0400234static inline struct net *netns(struct file *file)
235{
236 return file_inode(file)->i_sb->s_fs_info;
237}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Chuck Lever262a0982008-12-12 16:57:35 -0500239/**
240 * write_unlock_ip - Release all locks used by a client
241 *
242 * Experimental.
243 *
244 * Input:
245 * buf: '\n'-terminated C string containing a
Chuck Lever41160922009-08-09 15:09:40 -0400246 * presentation format IP address
Chuck Lever262a0982008-12-12 16:57:35 -0500247 * size: length of C string in @buf
248 * Output:
249 * On success: returns zero if all specified locks were released;
250 * returns one if one or more locks were not released
251 * On error: return code is negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500252 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500253static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500254{
Chuck Lever41160922009-08-09 15:09:40 -0400255 struct sockaddr_storage address;
256 struct sockaddr *sap = (struct sockaddr *)&address;
257 size_t salen = sizeof(address);
Chuck Lever367c8c72008-06-30 18:58:14 -0400258 char *fo_path;
Al Viro244c7d42014-10-21 20:19:11 -0400259 struct net *net = netns(file);
Wendy Cheng4373ea82008-01-17 11:10:12 -0500260
261 /* sanity check */
262 if (size == 0)
263 return -EINVAL;
264
265 if (buf[size-1] != '\n')
266 return -EINVAL;
267
268 fo_path = buf;
269 if (qword_get(&buf, fo_path, size) < 0)
270 return -EINVAL;
271
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +0300272 if (rpc_pton(net, fo_path, size, sap, salen) == 0)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500273 return -EINVAL;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500274
Chuck Lever41160922009-08-09 15:09:40 -0400275 return nlmsvc_unlock_all_by_ip(sap);
Wendy Cheng4373ea82008-01-17 11:10:12 -0500276}
277
Chuck Lever262a0982008-12-12 16:57:35 -0500278/**
279 * write_unlock_fs - Release all locks on a local file system
280 *
281 * Experimental.
282 *
283 * Input:
284 * buf: '\n'-terminated C string containing the
285 * absolute pathname of a local file system
286 * size: length of C string in @buf
287 * Output:
288 * On success: returns zero if all specified locks were released;
289 * returns one if one or more locks were not released
290 * On error: return code is negative errno value
291 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500292static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
Wendy Cheng17efa372008-01-17 11:10:12 -0500293{
Al Viroa63bb992008-08-02 01:03:36 -0400294 struct path path;
Wendy Cheng17efa372008-01-17 11:10:12 -0500295 char *fo_path;
296 int error;
297
298 /* sanity check */
299 if (size == 0)
300 return -EINVAL;
301
302 if (buf[size-1] != '\n')
303 return -EINVAL;
304
305 fo_path = buf;
306 if (qword_get(&buf, fo_path, size) < 0)
307 return -EINVAL;
308
Al Viroa63bb992008-08-02 01:03:36 -0400309 error = kern_path(fo_path, 0, &path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500310 if (error)
311 return error;
312
Chuck Lever262a0982008-12-12 16:57:35 -0500313 /*
314 * XXX: Needs better sanity checking. Otherwise we could end up
315 * releasing locks on the wrong file system.
316 *
317 * For example:
318 * 1. Does the path refer to a directory?
319 * 2. Is that directory a mount point, or
320 * 3. Is that directory the root of an exported file system?
321 */
Al Virod8c95842011-12-07 18:16:57 -0500322 error = nlmsvc_unlock_all_by_sb(path.dentry->d_sb);
Wendy Cheng17efa372008-01-17 11:10:12 -0500323
Al Viroa63bb992008-08-02 01:03:36 -0400324 path_put(&path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500325 return error;
326}
327
Chuck Lever262a0982008-12-12 16:57:35 -0500328/**
329 * write_filehandle - Get a variable-length NFS file handle by path
330 *
331 * On input, the buffer contains a '\n'-terminated C string comprised of
332 * three alphanumeric words separated by whitespace. The string may
333 * contain escape sequences.
334 *
335 * Input:
336 * buf:
337 * domain: client domain name
338 * path: export pathname
339 * maxsize: numeric maximum size of
340 * @buf
341 * size: length of C string in @buf
342 * Output:
343 * On success: passed-in buffer filled with '\n'-terminated C
344 * string containing a ASCII hex text version
345 * of the NFS file handle;
346 * return code is the size in bytes of the string
347 * On error: return code is negative errno value
348 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
350{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 char *dname, *path;
Andrew Morton246d95b2007-08-09 00:53:50 -0700352 int uninitialized_var(maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 char *mesg = buf;
354 int len;
355 struct auth_domain *dom;
356 struct knfsd_fh fh;
357
J. Bruce Fields87d26ea2008-01-22 17:40:42 -0500358 if (size == 0)
359 return -EINVAL;
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (buf[size-1] != '\n')
362 return -EINVAL;
363 buf[size-1] = 0;
364
365 dname = mesg;
366 len = qword_get(&mesg, dname, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500367 if (len <= 0)
368 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 path = dname+len+1;
371 len = qword_get(&mesg, path, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500372 if (len <= 0)
373 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 len = get_int(&mesg, &maxsize);
376 if (len)
377 return len;
378
379 if (maxsize < NFS_FHSIZE)
380 return -EINVAL;
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800381 maxsize = min(maxsize, NFS3_FHSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 if (qword_get(&mesg, mesg, size)>0)
384 return -EINVAL;
385
386 /* we have all the words, they are in buf.. */
387 dom = unix_domain_find(dname);
388 if (!dom)
389 return -ENOMEM;
390
Al Viro244c7d42014-10-21 20:19:11 -0400391 len = exp_rootfh(netns(file), dom, path, &fh, maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 auth_domain_put(dom);
393 if (len)
394 return len;
395
Chuck Lever54224f02008-12-12 16:57:20 -0500396 mesg = buf;
397 len = SIMPLE_TRANSACTION_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 qword_addhex(&mesg, &len, (char*)&fh.fh_base, fh.fh_size);
399 mesg[-1] = '\n';
400 return mesg - buf;
401}
402
Chuck Lever262a0982008-12-12 16:57:35 -0500403/**
404 * write_threads - Start NFSD, or report the current number of running threads
405 *
406 * Input:
407 * buf: ignored
408 * size: zero
409 * Output:
410 * On success: passed-in buffer filled with '\n'-terminated C
411 * string numeric value representing the number of
412 * running NFSD threads;
413 * return code is the size in bytes of the string
414 * On error: return code is zero
415 *
416 * OR
417 *
418 * Input:
419 * buf: C string containing an unsigned
420 * integer value representing the
421 * number of NFSD threads to start
422 * size: non-zero length of C string in @buf
423 * Output:
424 * On success: NFS service is started;
425 * passed-in buffer filled with '\n'-terminated C
426 * string numeric value representing the number of
427 * running NFSD threads;
428 * return code is the size in bytes of the string
429 * On error: return code is zero or a negative errno value
430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static ssize_t write_threads(struct file *file, char *buf, size_t size)
432{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 char *mesg = buf;
434 int rv;
Al Viro244c7d42014-10-21 20:19:11 -0400435 struct net *net = netns(file);
Stanislav Kinsburskyd41a9412012-12-10 12:19:25 +0300436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (size > 0) {
438 int newthreads;
439 rv = get_int(&mesg, &newthreads);
440 if (rv)
441 return rv;
Chuck Lever9e074852008-12-12 16:57:27 -0500442 if (newthreads < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return -EINVAL;
Stanislav Kinsburskyd41a9412012-12-10 12:19:25 +0300444 rv = nfsd_svc(newthreads, net);
NeilBrown82e12fe2009-06-16 11:03:07 +1000445 if (rv < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return rv;
NeilBrown82e12fe2009-06-16 11:03:07 +1000447 } else
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300448 rv = nfsd_nrthreads(net);
Chuck Levere06b6402009-04-23 19:33:25 -0400449
NeilBrown82e12fe2009-06-16 11:03:07 +1000450 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Chuck Lever262a0982008-12-12 16:57:35 -0500453/**
454 * write_pool_threads - Set or report the current number of threads per pool
455 *
456 * Input:
457 * buf: ignored
458 * size: zero
459 *
460 * OR
461 *
462 * Input:
463 * buf: C string containing whitespace-
464 * separated unsigned integer values
465 * representing the number of NFSD
466 * threads to start in each pool
467 * size: non-zero length of C string in @buf
468 * Output:
469 * On success: passed-in buffer filled with '\n'-terminated C
470 * string containing integer values representing the
471 * number of NFSD threads in each pool;
472 * return code is the size in bytes of the string
473 * On error: return code is zero or a negative errno value
474 */
Greg Bankseed29652006-10-02 02:18:02 -0700475static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
476{
477 /* if size > 0, look for an array of number of threads per node
478 * and apply them then write out number of threads per node as reply
479 */
480 char *mesg = buf;
481 int i;
482 int rv;
483 int len;
Neil Brownbedbdd82008-06-10 08:40:35 -0400484 int npools;
Greg Bankseed29652006-10-02 02:18:02 -0700485 int *nthreads;
Al Viro244c7d42014-10-21 20:19:11 -0400486 struct net *net = netns(file);
Greg Bankseed29652006-10-02 02:18:02 -0700487
Neil Brownbedbdd82008-06-10 08:40:35 -0400488 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300489 npools = nfsd_nrpools(net);
Greg Bankseed29652006-10-02 02:18:02 -0700490 if (npools == 0) {
491 /*
492 * NFS is shut down. The admin can start it by
493 * writing to the threads file but NOT the pool_threads
494 * file, sorry. Report zero threads.
495 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400496 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700497 strcpy(buf, "0\n");
498 return strlen(buf);
499 }
500
501 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
Neil Brownbedbdd82008-06-10 08:40:35 -0400502 rv = -ENOMEM;
Greg Bankseed29652006-10-02 02:18:02 -0700503 if (nthreads == NULL)
Neil Brownbedbdd82008-06-10 08:40:35 -0400504 goto out_free;
Greg Bankseed29652006-10-02 02:18:02 -0700505
506 if (size > 0) {
507 for (i = 0; i < npools; i++) {
508 rv = get_int(&mesg, &nthreads[i]);
509 if (rv == -ENOENT)
510 break; /* fewer numbers than pools */
511 if (rv)
512 goto out_free; /* syntax error */
513 rv = -EINVAL;
514 if (nthreads[i] < 0)
515 goto out_free;
516 }
Stanislav Kinsbursky3938a0d2012-12-10 12:19:30 +0300517 rv = nfsd_set_nrthreads(i, nthreads, net);
Greg Bankseed29652006-10-02 02:18:02 -0700518 if (rv)
519 goto out_free;
520 }
521
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300522 rv = nfsd_get_nrthreads(npools, nthreads, net);
Greg Bankseed29652006-10-02 02:18:02 -0700523 if (rv)
524 goto out_free;
525
526 mesg = buf;
527 size = SIMPLE_TRANSACTION_LIMIT;
528 for (i = 0; i < npools && size > 0; i++) {
529 snprintf(mesg, size, "%d%c", nthreads[i], (i == npools-1 ? '\n' : ' '));
530 len = strlen(mesg);
531 size -= len;
532 mesg += len;
533 }
J. Bruce Fields413d63d7102009-07-28 11:37:25 -0400534 rv = mesg - buf;
Greg Bankseed29652006-10-02 02:18:02 -0700535out_free:
536 kfree(nthreads);
Neil Brownbedbdd82008-06-10 08:40:35 -0400537 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700538 return rv;
539}
540
Jeff Layton3dd98a32008-06-10 08:40:36 -0400541static ssize_t __write_versions(struct file *file, char *buf, size_t size)
NeilBrown70c3b762005-11-07 01:00:25 -0800542{
NeilBrown70c3b762005-11-07 01:00:25 -0800543 char *mesg = buf;
Benny Halevy8daf2202009-04-03 08:28:59 +0300544 char *vers, *minorp, sign;
Chuck Lever261758b2009-04-23 19:33:18 -0400545 int len, num, remaining;
Benny Halevy8daf2202009-04-03 08:28:59 +0300546 unsigned minor;
NeilBrown70c3b762005-11-07 01:00:25 -0800547 ssize_t tlen = 0;
548 char *sep;
Al Viro244c7d42014-10-21 20:19:11 -0400549 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
NeilBrown70c3b762005-11-07 01:00:25 -0800550
551 if (size>0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300552 if (nn->nfsd_serv)
NeilBrown6658d3a2006-10-02 02:17:46 -0700553 /* Cannot change versions without updating
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300554 * nn->nfsd_serv->sv_xdrsize, and reallocing
NeilBrown6658d3a2006-10-02 02:17:46 -0700555 * rq_argp and rq_resp
556 */
NeilBrown70c3b762005-11-07 01:00:25 -0800557 return -EBUSY;
558 if (buf[size-1] != '\n')
559 return -EINVAL;
560 buf[size-1] = 0;
561
562 vers = mesg;
563 len = qword_get(&mesg, vers, size);
564 if (len <= 0) return -EINVAL;
565 do {
566 sign = *vers;
567 if (sign == '+' || sign == '-')
Benny Halevy8daf2202009-04-03 08:28:59 +0300568 num = simple_strtol((vers+1), &minorp, 0);
NeilBrown70c3b762005-11-07 01:00:25 -0800569 else
Benny Halevy8daf2202009-04-03 08:28:59 +0300570 num = simple_strtol(vers, &minorp, 0);
571 if (*minorp == '.') {
J. Bruce Fieldsff89be82013-01-23 18:25:01 -0500572 if (num != 4)
Benny Halevy8daf2202009-04-03 08:28:59 +0300573 return -EINVAL;
574 minor = simple_strtoul(minorp+1, NULL, 0);
575 if (minor == 0)
576 return -EINVAL;
577 if (nfsd_minorversion(minor, sign == '-' ?
578 NFSD_CLEAR : NFSD_SET) < 0)
579 return -EINVAL;
580 goto next;
581 }
NeilBrown70c3b762005-11-07 01:00:25 -0800582 switch(num) {
583 case 2:
584 case 3:
585 case 4:
NeilBrown6658d3a2006-10-02 02:17:46 -0700586 nfsd_vers(num, sign == '-' ? NFSD_CLEAR : NFSD_SET);
NeilBrown70c3b762005-11-07 01:00:25 -0800587 break;
588 default:
589 return -EINVAL;
590 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300591 next:
NeilBrown70c3b762005-11-07 01:00:25 -0800592 vers += len + 1;
NeilBrown70c3b762005-11-07 01:00:25 -0800593 } while ((len = qword_get(&mesg, vers, size)) > 0);
594 /* If all get turned off, turn them back on, as
595 * having no versions is BAD
596 */
NeilBrown6658d3a2006-10-02 02:17:46 -0700597 nfsd_reset_versions();
NeilBrown70c3b762005-11-07 01:00:25 -0800598 }
Chuck Lever261758b2009-04-23 19:33:18 -0400599
NeilBrown70c3b762005-11-07 01:00:25 -0800600 /* Now write current state into reply buffer */
601 len = 0;
602 sep = "";
Chuck Lever261758b2009-04-23 19:33:18 -0400603 remaining = SIMPLE_TRANSACTION_LIMIT;
NeilBrown70c3b762005-11-07 01:00:25 -0800604 for (num=2 ; num <= 4 ; num++)
NeilBrown6658d3a2006-10-02 02:17:46 -0700605 if (nfsd_vers(num, NFSD_AVAIL)) {
Chuck Lever261758b2009-04-23 19:33:18 -0400606 len = snprintf(buf, remaining, "%s%c%d", sep,
NeilBrown6658d3a2006-10-02 02:17:46 -0700607 nfsd_vers(num, NFSD_TEST)?'+':'-',
NeilBrown70c3b762005-11-07 01:00:25 -0800608 num);
609 sep = " ";
Chuck Lever261758b2009-04-23 19:33:18 -0400610
Dan Carpenter818f2f52014-11-27 18:58:54 +0300611 if (len >= remaining)
Chuck Lever261758b2009-04-23 19:33:18 -0400612 break;
613 remaining -= len;
614 buf += len;
615 tlen += len;
NeilBrown70c3b762005-11-07 01:00:25 -0800616 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300617 if (nfsd_vers(4, NFSD_AVAIL))
Chuck Lever261758b2009-04-23 19:33:18 -0400618 for (minor = 1; minor <= NFSD_SUPPORTED_MINOR_VERSION;
619 minor++) {
620 len = snprintf(buf, remaining, " %c4.%u",
Benny Halevy8daf2202009-04-03 08:28:59 +0300621 (nfsd_vers(4, NFSD_TEST) &&
622 nfsd_minorversion(minor, NFSD_TEST)) ?
623 '+' : '-',
624 minor);
Chuck Lever261758b2009-04-23 19:33:18 -0400625
Dan Carpenter818f2f52014-11-27 18:58:54 +0300626 if (len >= remaining)
Chuck Lever261758b2009-04-23 19:33:18 -0400627 break;
628 remaining -= len;
629 buf += len;
630 tlen += len;
631 }
632
633 len = snprintf(buf, remaining, "\n");
Dan Carpenter818f2f52014-11-27 18:58:54 +0300634 if (len >= remaining)
Chuck Lever261758b2009-04-23 19:33:18 -0400635 return -EINVAL;
636 return tlen + len;
NeilBrown70c3b762005-11-07 01:00:25 -0800637}
638
Chuck Lever262a0982008-12-12 16:57:35 -0500639/**
640 * write_versions - Set or report the available NFS protocol versions
641 *
642 * Input:
643 * buf: ignored
644 * size: zero
645 * Output:
646 * On success: passed-in buffer filled with '\n'-terminated C
647 * string containing positive or negative integer
648 * values representing the current status of each
649 * protocol version;
650 * return code is the size in bytes of the string
651 * On error: return code is zero or a negative errno value
652 *
653 * OR
654 *
655 * Input:
656 * buf: C string containing whitespace-
657 * separated positive or negative
658 * integer values representing NFS
659 * protocol versions to enable ("+n")
660 * or disable ("-n")
661 * size: non-zero length of C string in @buf
662 * Output:
663 * On success: status of zero or more protocol versions has
664 * been updated; passed-in buffer filled with
665 * '\n'-terminated C string containing positive
666 * or negative integer values representing the
667 * current status of each protocol version;
668 * return code is the size in bytes of the string
669 * On error: return code is zero or a negative errno value
670 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400671static ssize_t write_versions(struct file *file, char *buf, size_t size)
672{
673 ssize_t rv;
674
675 mutex_lock(&nfsd_mutex);
676 rv = __write_versions(file, buf, size);
677 mutex_unlock(&nfsd_mutex);
678 return rv;
679}
680
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400681/*
Chuck Lever0a5372d2009-04-23 19:32:10 -0400682 * Zero-length write. Return a list of NFSD's current listener
683 * transports.
684 */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300685static ssize_t __write_ports_names(char *buf, struct net *net)
Chuck Lever0a5372d2009-04-23 19:32:10 -0400686{
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300687 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
688
689 if (nn->nfsd_serv == NULL)
Chuck Lever0a5372d2009-04-23 19:32:10 -0400690 return 0;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300691 return svc_xprt_names(nn->nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
Chuck Lever0a5372d2009-04-23 19:32:10 -0400692}
693
694/*
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400695 * A single 'fd' number was written, in which case it must be for
696 * a socket of a supported family/protocol, and we use it as an
697 * nfsd listener.
698 */
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300699static ssize_t __write_ports_addfd(char *buf, struct net *net)
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400700{
701 char *mesg = buf;
702 int fd, err;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300703 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400704
705 err = get_int(&mesg, &fd);
706 if (err != 0 || fd < 0)
707 return -EINVAL;
708
Stanislav Kinsbursky30646392014-02-26 16:50:01 +0300709 if (svc_alien_sock(net, fd)) {
710 printk(KERN_ERR "%s: socket net is different to NFSd's one\n", __func__);
711 return -EINVAL;
712 }
713
Stanislav Kinsbursky67774362012-12-10 12:19:20 +0300714 err = nfsd_create_serv(net);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400715 if (err != 0)
716 return err;
717
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300718 err = svc_addsock(nn->nfsd_serv, fd, buf, SIMPLE_TRANSACTION_LIMIT);
Jeff Layton78a8d7c2010-07-19 16:50:05 -0400719 if (err < 0) {
Stanislav Kinsbursky19f7e2c2012-07-03 16:46:41 +0400720 nfsd_destroy(net);
Jeff Layton78a8d7c2010-07-19 16:50:05 -0400721 return err;
722 }
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400723
Chuck Leverea068ba2009-04-23 19:32:18 -0400724 /* Decrease the count, but don't shut down the service */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300725 nn->nfsd_serv->sv_nrthreads--;
Chuck Leverea068ba2009-04-23 19:32:18 -0400726 return err;
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400727}
728
729/*
Chuck Lever4eb68c22009-04-23 19:31:40 -0400730 * A transport listener is added by writing it's transport name and
731 * a port number.
732 */
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300733static ssize_t __write_ports_addxprt(char *buf, struct net *net)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400734{
735 char transport[16];
Chuck Lever37498292010-01-26 14:04:22 -0500736 struct svc_xprt *xprt;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400737 int port, err;
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300738 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Chuck Lever4eb68c22009-04-23 19:31:40 -0400739
J. Bruce Fieldsa10fded2012-08-14 17:48:39 -0400740 if (sscanf(buf, "%15s %5u", transport, &port) != 2)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400741 return -EINVAL;
742
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700743 if (port < 1 || port > USHRT_MAX)
Chuck Lever4eb68c22009-04-23 19:31:40 -0400744 return -EINVAL;
745
Stanislav Kinsbursky67774362012-12-10 12:19:20 +0300746 err = nfsd_create_serv(net);
Chuck Lever4eb68c22009-04-23 19:31:40 -0400747 if (err != 0)
748 return err;
749
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300750 err = svc_create_xprt(nn->nfsd_serv, transport, net,
Chuck Lever4eb68c22009-04-23 19:31:40 -0400751 PF_INET, port, SVC_SOCK_ANONYMOUS);
Chuck Lever68717902010-01-26 14:04:13 -0500752 if (err < 0)
Chuck Lever37498292010-01-26 14:04:22 -0500753 goto out_err;
754
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300755 err = svc_create_xprt(nn->nfsd_serv, transport, net,
Chuck Lever37498292010-01-26 14:04:22 -0500756 PF_INET6, port, SVC_SOCK_ANONYMOUS);
757 if (err < 0 && err != -EAFNOSUPPORT)
758 goto out_close;
Jeff Layton0cd14a02010-07-19 16:50:06 -0400759
760 /* Decrease the count, but don't shut down the service */
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300761 nn->nfsd_serv->sv_nrthreads--;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400762 return 0;
Chuck Lever37498292010-01-26 14:04:22 -0500763out_close:
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300764 xprt = svc_find_xprt(nn->nfsd_serv, transport, net, PF_INET, port);
Chuck Lever37498292010-01-26 14:04:22 -0500765 if (xprt != NULL) {
766 svc_close_xprt(xprt);
767 svc_xprt_put(xprt);
768 }
769out_err:
Stanislav Kinsbursky19f7e2c2012-07-03 16:46:41 +0400770 nfsd_destroy(net);
Chuck Lever37498292010-01-26 14:04:22 -0500771 return err;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400772}
773
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300774static ssize_t __write_ports(struct file *file, char *buf, size_t size,
775 struct net *net)
NeilBrown80212d52006-10-02 02:17:47 -0700776{
Chuck Lever0a5372d2009-04-23 19:32:10 -0400777 if (size == 0)
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300778 return __write_ports_names(buf, net);
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400779
780 if (isdigit(buf[0]))
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300781 return __write_ports_addfd(buf, net);
Chuck Lever82d56592009-04-23 19:31:48 -0400782
Chuck Lever4eb68c22009-04-23 19:31:40 -0400783 if (isalpha(buf[0]))
Stanislav Kinsbursky08160352012-12-10 12:19:35 +0300784 return __write_ports_addxprt(buf, net);
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400785
NeilBrownb41b66d2006-10-02 02:17:48 -0700786 return -EINVAL;
NeilBrown80212d52006-10-02 02:17:47 -0700787}
788
Chuck Lever262a0982008-12-12 16:57:35 -0500789/**
790 * write_ports - Pass a socket file descriptor or transport name to listen on
791 *
792 * Input:
793 * buf: ignored
794 * size: zero
795 * Output:
796 * On success: passed-in buffer filled with a '\n'-terminated C
797 * string containing a whitespace-separated list of
798 * named NFSD listeners;
799 * return code is the size in bytes of the string
800 * On error: return code is zero or a negative errno value
801 *
802 * OR
803 *
804 * Input:
805 * buf: C string containing an unsigned
806 * integer value representing a bound
807 * but unconnected socket that is to be
Chuck Leverc71206a2009-04-23 19:32:03 -0400808 * used as an NFSD listener; listen(3)
809 * must be called for a SOCK_STREAM
810 * socket, otherwise it is ignored
Chuck Lever262a0982008-12-12 16:57:35 -0500811 * size: non-zero length of C string in @buf
812 * Output:
813 * On success: NFS service is started;
814 * passed-in buffer filled with a '\n'-terminated C
815 * string containing a unique alphanumeric name of
816 * the listener;
817 * return code is the size in bytes of the string
818 * On error: return code is a negative errno value
819 *
820 * OR
821 *
822 * Input:
Chuck Lever262a0982008-12-12 16:57:35 -0500823 * buf: C string containing a transport
824 * name and an unsigned integer value
825 * representing the port to listen on,
826 * separated by whitespace
827 * size: non-zero length of C string in @buf
828 * Output:
829 * On success: returns zero; NFS service is started
830 * On error: return code is a negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500831 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400832static ssize_t write_ports(struct file *file, char *buf, size_t size)
833{
834 ssize_t rv;
Jeff Layton3dd98a32008-06-10 08:40:36 -0400835
Neil Brownbedbdd82008-06-10 08:40:35 -0400836 mutex_lock(&nfsd_mutex);
Al Viro244c7d42014-10-21 20:19:11 -0400837 rv = __write_ports(file, buf, size, netns(file));
Neil Brownbedbdd82008-06-10 08:40:35 -0400838 mutex_unlock(&nfsd_mutex);
839 return rv;
840}
841
842
NeilBrown596bbe52006-10-04 02:15:48 -0700843int nfsd_max_blksize;
844
Chuck Lever262a0982008-12-12 16:57:35 -0500845/**
846 * write_maxblksize - Set or report the current NFS blksize
847 *
848 * Input:
849 * buf: ignored
850 * size: zero
851 *
852 * OR
853 *
854 * Input:
855 * buf: C string containing an unsigned
856 * integer value representing the new
857 * NFS blksize
858 * size: non-zero length of C string in @buf
859 * Output:
860 * On success: passed-in buffer filled with '\n'-terminated C string
861 * containing numeric value of the current NFS blksize
862 * setting;
863 * return code is the size in bytes of the string
864 * On error: return code is zero or a negative errno value
865 */
NeilBrown596bbe52006-10-04 02:15:48 -0700866static ssize_t write_maxblksize(struct file *file, char *buf, size_t size)
867{
868 char *mesg = buf;
Al Viro244c7d42014-10-21 20:19:11 -0400869 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300870
NeilBrown596bbe52006-10-04 02:15:48 -0700871 if (size > 0) {
872 int bsize;
873 int rv = get_int(&mesg, &bsize);
874 if (rv)
875 return rv;
876 /* force bsize into allowed range and
877 * required alignment.
878 */
Kinglong Mee3c7aa152014-06-10 18:08:19 +0800879 bsize = max_t(int, bsize, 1024);
880 bsize = min_t(int, bsize, NFSSVC_MAXBLKSIZE);
NeilBrown596bbe52006-10-04 02:15:48 -0700881 bsize &= ~(1024-1);
Neil Brownbedbdd82008-06-10 08:40:35 -0400882 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300883 if (nn->nfsd_serv) {
Neil Brownbedbdd82008-06-10 08:40:35 -0400884 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -0700885 return -EBUSY;
886 }
887 nfsd_max_blksize = bsize;
Neil Brownbedbdd82008-06-10 08:40:35 -0400888 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -0700889 }
Chuck Levere06b6402009-04-23 19:33:25 -0400890
891 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
892 nfsd_max_blksize);
NeilBrown596bbe52006-10-04 02:15:48 -0700893}
894
Jeff Layton5b8db002014-07-02 16:11:22 -0400895/**
896 * write_maxconn - Set or report the current max number of connections
897 *
898 * Input:
899 * buf: ignored
900 * size: zero
901 * OR
902 *
903 * Input:
904 * buf: C string containing an unsigned
905 * integer value representing the new
906 * number of max connections
907 * size: non-zero length of C string in @buf
908 * Output:
909 * On success: passed-in buffer filled with '\n'-terminated C string
910 * containing numeric value of max_connections setting
911 * for this net namespace;
912 * return code is the size in bytes of the string
913 * On error: return code is zero or a negative errno value
914 */
915static ssize_t write_maxconn(struct file *file, char *buf, size_t size)
916{
917 char *mesg = buf;
Al Viro244c7d42014-10-21 20:19:11 -0400918 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
Jeff Layton5b8db002014-07-02 16:11:22 -0400919 unsigned int maxconn = nn->max_connections;
920
921 if (size > 0) {
922 int rv = get_uint(&mesg, &maxconn);
923
924 if (rv)
925 return rv;
926 nn->max_connections = maxconn;
927 }
928
929 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%u\n", maxconn);
930}
931
NeilBrown70c3b762005-11-07 01:00:25 -0800932#ifdef CONFIG_NFSD_V4
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300933static ssize_t __nfsd4_write_time(struct file *file, char *buf, size_t size,
934 time_t *time, struct nfsd_net *nn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 char *mesg = buf;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500937 int rv, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if (size > 0) {
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300940 if (nn->nfsd_serv)
Jeff Layton3dd98a32008-06-10 08:40:36 -0400941 return -EBUSY;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500942 rv = get_int(&mesg, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (rv)
944 return rv;
J. Bruce Fieldse7b184f2010-03-02 11:18:40 -0500945 /*
946 * Some sanity checking. We don't have a reason for
947 * these particular numbers, but problems with the
948 * extremes are:
949 * - Too short: the briefest network outage may
950 * cause clients to lose all their locks. Also,
951 * the frequent polling may be wasteful.
952 * - Too long: do you really want reboot recovery
953 * to take more than an hour? Or to make other
954 * clients wait an hour before being able to
955 * revoke a dead client's locks?
956 */
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500957 if (i < 10 || i > 3600)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return -EINVAL;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500959 *time = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
Chuck Levere06b6402009-04-23 19:33:25 -0400961
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500962 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%ld\n", *time);
963}
964
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300965static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size,
966 time_t *time, struct nfsd_net *nn)
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500967{
968 ssize_t rv;
969
970 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +0300971 rv = __nfsd4_write_time(file, buf, size, time, nn);
J. Bruce Fieldsf0135742010-03-01 19:32:36 -0500972 mutex_unlock(&nfsd_mutex);
973 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
975
Chuck Lever262a0982008-12-12 16:57:35 -0500976/**
977 * write_leasetime - Set or report the current NFSv4 lease time
978 *
979 * Input:
980 * buf: ignored
981 * size: zero
982 *
983 * OR
984 *
985 * Input:
986 * buf: C string containing an unsigned
987 * integer value representing the new
988 * NFSv4 lease expiry time
989 * size: non-zero length of C string in @buf
990 * Output:
991 * On success: passed-in buffer filled with '\n'-terminated C
992 * string containing unsigned integer value of the
993 * current lease expiry time;
994 * return code is the size in bytes of the string
995 * On error: return code is zero or a negative errno value
996 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400997static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
998{
Al Viro244c7d42014-10-21 20:19:11 -0400999 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +03001000 return nfsd4_write_time(file, buf, size, &nn->nfsd4_lease, nn);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001001}
1002
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001003/**
1004 * write_gracetime - Set or report current NFSv4 grace period time
1005 *
1006 * As above, but sets the time of the NFSv4 grace period.
1007 *
1008 * Note this should never be set to less than the *previous*
1009 * lease-period time, but we don't try to enforce this. (In the common
1010 * case (a new boot), we don't know what the previous lease time was
1011 * anyway.)
1012 */
1013static ssize_t write_gracetime(struct file *file, char *buf, size_t size)
1014{
Al Viro244c7d42014-10-21 20:19:11 -04001015 struct nfsd_net *nn = net_generic(netns(file), 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;
Al Viro244c7d42014-10-21 20:19:11 -04001071 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001072
1073 mutex_lock(&nfsd_mutex);
Stanislav Kinsbursky9dd98452012-12-06 14:23:24 +03001074 rv = __write_recoverydir(file, buf, size, nn);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001075 mutex_unlock(&nfsd_mutex);
1076 return rv;
1077}
1078
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04001079/**
1080 * write_v4_end_grace - release grace period for nfsd's v4.x lock manager
1081 *
1082 * Input:
1083 * buf: ignored
1084 * size: zero
1085 * OR
1086 *
1087 * Input:
1088 * buf: any value
1089 * size: non-zero length of C string in @buf
1090 * Output:
1091 * passed-in buffer filled with "Y" or "N" with a newline
1092 * and NULL-terminated C string. This indicates whether
1093 * the grace period has ended in the current net
1094 * namespace. Return code is the size in bytes of the
1095 * string. Writing a string that starts with 'Y', 'y', or
1096 * '1' to the file will end the grace period for nfsd's v4
1097 * lock manager.
1098 */
1099static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size)
1100{
Al Viro244c7d42014-10-21 20:19:11 -04001101 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04001102
1103 if (size > 0) {
1104 switch(buf[0]) {
1105 case 'Y':
1106 case 'y':
1107 case '1':
1108 nfsd4_end_grace(nn);
1109 break;
1110 default:
1111 return -EINVAL;
1112 }
1113 }
1114
1115 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%c\n",
1116 nn->grace_ended ? 'Y' : 'N');
1117}
1118
NeilBrown70c3b762005-11-07 01:00:25 -08001119#endif
NeilBrown0964a3d2005-06-23 22:04:32 -07001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121/*----------------------------------------------------------------------------*/
1122/*
1123 * populating the filesystem.
1124 */
1125
1126static int nfsd_fill_super(struct super_block * sb, void * data, int silent)
1127{
1128 static struct tree_descr nfsd_files[] = {
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +03001129 [NFSD_List] = {"exports", &exports_nfsd_operations, S_IRUGO},
J. Bruce Fieldse8e87532009-12-14 12:53:32 -05001130 [NFSD_Export_features] = {"export_features",
1131 &export_features_operations, S_IRUGO},
Wendy Cheng4373ea82008-01-17 11:10:12 -05001132 [NFSD_FO_UnlockIP] = {"unlock_ip",
1133 &transaction_ops, S_IWUSR|S_IRUSR},
Wendy Cheng17efa372008-01-17 11:10:12 -05001134 [NFSD_FO_UnlockFS] = {"unlock_filesystem",
1135 &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1137 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Bankseed29652006-10-02 02:18:02 -07001138 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Banks03cf6c92009-01-13 21:26:36 +11001139 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
Jeff Laytona2f999a2013-03-27 10:15:38 -04001140 [NFSD_Reply_Cache_Stats] = {"reply_cache_stats", &reply_cache_stats_operations, S_IRUGO},
NeilBrown70c3b762005-11-07 01:00:25 -08001141 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown80212d52006-10-02 02:17:47 -07001142 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
NeilBrown596bbe52006-10-04 02:15:48 -07001143 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
Jeff Layton5b8db002014-07-02 16:11:22 -04001144 [NFSD_MaxConnections] = {"max_connections", &transaction_ops, S_IWUSR|S_IRUGO},
J. Bruce Fieldsb084f592011-05-31 12:24:58 -04001145#if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
Kevin Coffmanb0b0c0a2011-03-02 19:51:42 -05001146 [NFSD_SupportedEnctypes] = {"supported_krb5_enctypes", &supported_enctypes_ops, S_IRUGO},
J. Bruce Fieldsb084f592011-05-31 12:24:58 -04001147#endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148#ifdef CONFIG_NFSD_V4
1149 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001150 [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown0964a3d2005-06-23 22:04:32 -07001151 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
Jeff Layton7f5ef2e2014-09-12 16:40:21 -04001152 [NFSD_V4EndGrace] = {"v4_end_grace", &transaction_ops, S_IWUSR|S_IRUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153#endif
1154 /* last one */ {""}
1155 };
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001156 struct net *net = data;
1157 int ret;
1158
1159 ret = simple_fill_super(sb, 0x6e667364, nfsd_files);
1160 if (ret)
1161 return ret;
1162 sb->s_fs_info = get_net(net);
1163 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Al Virofc14f2f2010-07-25 01:48:30 +04001166static struct dentry *nfsd_mount(struct file_system_type *fs_type,
1167 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001169 return mount_ns(fs_type, flags, current->nsproxy->net_ns, nfsd_fill_super);
1170}
1171
1172static void nfsd_umount(struct super_block *sb)
1173{
1174 struct net *net = sb->s_fs_info;
1175
1176 kill_litter_super(sb);
1177 put_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178}
1179
1180static struct file_system_type nfsd_fs_type = {
1181 .owner = THIS_MODULE,
1182 .name = "nfsd",
Al Virofc14f2f2010-07-25 01:48:30 +04001183 .mount = nfsd_mount,
Stanislav Kinsbursky11f77942013-02-01 15:56:12 +03001184 .kill_sb = nfsd_umount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001186MODULE_ALIAS_FS("nfsd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001188#ifdef CONFIG_PROC_FS
1189static int create_proc_exports_entry(void)
1190{
1191 struct proc_dir_entry *entry;
1192
1193 entry = proc_mkdir("fs/nfs", NULL);
1194 if (!entry)
1195 return -ENOMEM;
Stanislav Kinsbursky96d851c2013-02-01 15:56:17 +03001196 entry = proc_create("exports", 0, entry,
1197 &exports_proc_operations);
fanchaotingff7c4b32013-03-27 16:31:18 +08001198 if (!entry) {
1199 remove_proc_entry("fs/nfs", NULL);
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001200 return -ENOMEM;
fanchaotingff7c4b32013-03-27 16:31:18 +08001201 }
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001202 return 0;
1203}
1204#else /* CONFIG_PROC_FS */
1205static int create_proc_exports_entry(void)
1206{
1207 return 0;
1208}
1209#endif
1210
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001211int nfsd_net_id;
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001212
1213static __net_init int nfsd_init_net(struct net *net)
1214{
1215 int retval;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03001216 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001217
1218 retval = nfsd_export_init(net);
1219 if (retval)
1220 goto out_export_error;
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001221 retval = nfsd_idmap_init(net);
1222 if (retval)
1223 goto out_idmap_error;
Stanislav Kinsbursky3d733712012-11-27 14:11:44 +03001224 nn->nfsd4_lease = 90; /* default lease time */
Stanislav Kinsbursky5284b442012-11-27 14:11:49 +03001225 nn->nfsd4_grace = 90;
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001226 return 0;
1227
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001228out_idmap_error:
1229 nfsd_export_shutdown(net);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001230out_export_error:
1231 return retval;
1232}
1233
1234static __net_exit void nfsd_exit_net(struct net *net)
1235{
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001236 nfsd_idmap_shutdown(net);
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001237 nfsd_export_shutdown(net);
1238}
1239
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001240static struct pernet_operations nfsd_net_ops = {
Stanislav Kinsbursky5717e012012-04-11 15:13:35 +04001241 .init = nfsd_init_net,
1242 .exit = nfsd_exit_net,
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001243 .id = &nfsd_net_id,
1244 .size = sizeof(struct nfsd_net),
1245};
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247static int __init init_nfsd(void)
1248{
1249 int retval;
1250 printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
1251
Jeff Layton797a9d72012-03-29 07:52:49 -04001252 retval = register_cld_notifier();
Jeff Layton813fd322012-03-21 09:52:08 -04001253 if (retval)
1254 return retval;
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001255 retval = register_pernet_subsys(&nfsd_net_ops);
1256 if (retval < 0)
Jeff Layton813fd322012-03-21 09:52:08 -04001257 goto out_unregister_notifier;
Bryan Schumaker72083392011-11-01 15:24:59 -04001258 retval = nfsd4_init_slabs();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001259 if (retval)
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001260 goto out_unregister_pernet;
Bryan Schumaker65178db2011-11-01 13:35:21 -04001261 retval = nfsd_fault_inject_init(); /* nfsd fault injection controls */
1262 if (retval)
1263 goto out_free_slabs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 nfsd_stat_init(); /* Statistics */
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001265 retval = nfsd_reply_cache_init();
1266 if (retval)
1267 goto out_free_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 nfsd_lockd_init(); /* lockd->nfsd callbacks */
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001269 retval = create_proc_exports_entry();
1270 if (retval)
Stanislav Kinsburskyf69adb22012-04-11 17:33:05 +04001271 goto out_free_lockd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 retval = register_filesystem(&nfsd_fs_type);
J. Bruce Fields26808d32007-11-09 13:44:06 -05001273 if (retval)
1274 goto out_free_all;
1275 return 0;
1276out_free_all:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001277 remove_proc_entry("fs/nfs/exports", NULL);
1278 remove_proc_entry("fs/nfs", NULL);
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001279out_free_lockd:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001280 nfsd_lockd_shutdown();
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001281 nfsd_reply_cache_shutdown();
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001282out_free_stat:
1283 nfsd_stat_shutdown();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001284 nfsd_fault_inject_cleanup();
1285out_free_slabs:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001286 nfsd4_free_slabs();
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001287out_unregister_pernet:
1288 unregister_pernet_subsys(&nfsd_net_ops);
Jeff Layton813fd322012-03-21 09:52:08 -04001289out_unregister_notifier:
Jeff Layton797a9d72012-03-29 07:52:49 -04001290 unregister_cld_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return retval;
1292}
1293
1294static void __exit exit_nfsd(void)
1295{
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001296 nfsd_reply_cache_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 remove_proc_entry("fs/nfs/exports", NULL);
1298 remove_proc_entry("fs/nfs", NULL);
1299 nfsd_stat_shutdown();
1300 nfsd_lockd_shutdown();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001301 nfsd4_free_slabs();
Bryan Schumaker65178db2011-11-01 13:35:21 -04001302 nfsd_fault_inject_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 unregister_filesystem(&nfsd_fs_type);
Jeff Layton7ea34ac2012-03-21 09:52:05 -04001304 unregister_pernet_subsys(&nfsd_net_ops);
Jeff Layton797a9d72012-03-29 07:52:49 -04001305 unregister_cld_notifier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306}
1307
1308MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1309MODULE_LICENSE("GPL");
1310module_init(init_nfsd)
1311module_exit(exit_nfsd)