xref: /openbmc/linux/fs/nfsd/nfsctl.c (revision 97ee19ff491479822eade8a869d49f9ddcd71e75)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Syscall interface to knfsd.
4  *
5  * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
6  */
7 
8 #include <linux/slab.h>
9 #include <linux/namei.h>
10 #include <linux/ctype.h>
11 #include <linux/fs_context.h>
12 
13 #include <linux/sunrpc/svcsock.h>
14 #include <linux/lockd/lockd.h>
15 #include <linux/sunrpc/addr.h>
16 #include <linux/sunrpc/gss_api.h>
17 #include <linux/sunrpc/rpc_pipe_fs.h>
18 #include <linux/module.h>
19 #include <linux/fsnotify.h>
20 
21 #include "idmap.h"
22 #include "nfsd.h"
23 #include "cache.h"
24 #include "state.h"
25 #include "netns.h"
26 #include "pnfs.h"
27 #include "filecache.h"
28 #include "trace.h"
29 
30 /*
31  *	We have a single directory with several nodes in it.
32  */
33 enum {
34 	NFSD_Root = 1,
35 	NFSD_List,
36 	NFSD_Export_Stats,
37 	NFSD_Export_features,
38 	NFSD_Fh,
39 	NFSD_FO_UnlockIP,
40 	NFSD_FO_UnlockFS,
41 	NFSD_Threads,
42 	NFSD_Pool_Threads,
43 	NFSD_Pool_Stats,
44 	NFSD_Reply_Cache_Stats,
45 	NFSD_Versions,
46 	NFSD_Ports,
47 	NFSD_MaxBlkSize,
48 	NFSD_MaxConnections,
49 	NFSD_Filecache,
50 	/*
51 	 * The below MUST come last.  Otherwise we leave a hole in nfsd_files[]
52 	 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops
53 	 */
54 #ifdef CONFIG_NFSD_V4
55 	NFSD_Leasetime,
56 	NFSD_Gracetime,
57 	NFSD_RecoveryDir,
58 	NFSD_V4EndGrace,
59 #endif
60 	NFSD_MaxReserved
61 };
62 
63 /*
64  * write() for these nodes.
65  */
66 static ssize_t write_filehandle(struct file *file, char *buf, size_t size);
67 static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size);
68 static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size);
69 static ssize_t write_threads(struct file *file, char *buf, size_t size);
70 static ssize_t write_pool_threads(struct file *file, char *buf, size_t size);
71 static ssize_t write_versions(struct file *file, char *buf, size_t size);
72 static ssize_t write_ports(struct file *file, char *buf, size_t size);
73 static ssize_t write_maxblksize(struct file *file, char *buf, size_t size);
74 static ssize_t write_maxconn(struct file *file, char *buf, size_t size);
75 #ifdef CONFIG_NFSD_V4
76 static ssize_t write_leasetime(struct file *file, char *buf, size_t size);
77 static ssize_t write_gracetime(struct file *file, char *buf, size_t size);
78 static ssize_t write_recoverydir(struct file *file, char *buf, size_t size);
79 static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size);
80 #endif
81 
82 static ssize_t (*const write_op[])(struct file *, char *, size_t) = {
83 	[NFSD_Fh] = write_filehandle,
84 	[NFSD_FO_UnlockIP] = write_unlock_ip,
85 	[NFSD_FO_UnlockFS] = write_unlock_fs,
86 	[NFSD_Threads] = write_threads,
87 	[NFSD_Pool_Threads] = write_pool_threads,
88 	[NFSD_Versions] = write_versions,
89 	[NFSD_Ports] = write_ports,
90 	[NFSD_MaxBlkSize] = write_maxblksize,
91 	[NFSD_MaxConnections] = write_maxconn,
92 #ifdef CONFIG_NFSD_V4
93 	[NFSD_Leasetime] = write_leasetime,
94 	[NFSD_Gracetime] = write_gracetime,
95 	[NFSD_RecoveryDir] = write_recoverydir,
96 	[NFSD_V4EndGrace] = write_v4_end_grace,
97 #endif
98 };
99 
100 static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
101 {
102 	ino_t ino =  file_inode(file)->i_ino;
103 	char *data;
104 	ssize_t rv;
105 
106 	if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
107 		return -EINVAL;
108 
109 	data = simple_transaction_get(file, buf, size);
110 	if (IS_ERR(data))
111 		return PTR_ERR(data);
112 
113 	rv = write_op[ino](file, data, size);
114 	if (rv < 0)
115 		return rv;
116 
117 	simple_transaction_set(file, rv);
118 	return size;
119 }
120 
121 static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
122 {
123 	if (! file->private_data) {
124 		/* An attempt to read a transaction file without writing
125 		 * causes a 0-byte write so that the file can return
126 		 * state information
127 		 */
128 		ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos);
129 		if (rv < 0)
130 			return rv;
131 	}
132 	return simple_transaction_read(file, buf, size, pos);
133 }
134 
135 static const struct file_operations transaction_ops = {
136 	.write		= nfsctl_transaction_write,
137 	.read		= nfsctl_transaction_read,
138 	.release	= simple_transaction_release,
139 	.llseek		= default_llseek,
140 };
141 
142 static int exports_net_open(struct net *net, struct file *file)
143 {
144 	int err;
145 	struct seq_file *seq;
146 	struct nfsd_net *nn = net_generic(net, nfsd_net_id);
147 
148 	err = seq_open(file, &nfs_exports_op);
149 	if (err)
150 		return err;
151 
152 	seq = file->private_data;
153 	seq->private = nn->svc_export_cache;
154 	return 0;
155 }
156 
157 static int exports_nfsd_open(struct inode *inode, struct file *file)
158 {
159 	return exports_net_open(inode->i_sb->s_fs_info, file);
160 }
161 
162 static const struct file_operations exports_nfsd_operations = {
163 	.open		= exports_nfsd_open,
164 	.read		= seq_read,
165 	.llseek		= seq_lseek,
166 	.release	= seq_release,
167 };
168 
169 static int export_features_show(struct seq_file *m, void *v)
170 {
171 	seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS);
172 	return 0;
173 }
174 
175 DEFINE_SHOW_ATTRIBUTE(export_features);
176 
177 static const struct file_operations pool_stats_operations = {
178 	.open		= nfsd_pool_stats_open,
179 	.read		= seq_read,
180 	.llseek		= seq_lseek,
181 	.release	= nfsd_pool_stats_release,
182 };
183 
184 DEFINE_SHOW_ATTRIBUTE(nfsd_reply_cache_stats);
185 
186 DEFINE_SHOW_ATTRIBUTE(nfsd_file_cache_stats);
187 
188 /*----------------------------------------------------------------------------*/
189 /*
190  * payload - write methods
191  */
192 
193 static inline struct net *netns(struct file *file)
194 {
195 	return file_inode(file)->i_sb->s_fs_info;
196 }
197 
198 /*
199  * write_unlock_ip - Release all locks used by a client
200  *
201  * Experimental.
202  *
203  * Input:
204  *			buf:	'\n'-terminated C string containing a
205  *				presentation format IP address
206  *			size:	length of C string in @buf
207  * Output:
208  *	On success:	returns zero if all specified locks were released;
209  *			returns one if one or more locks were not released
210  *	On error:	return code is negative errno value
211  */
212 static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
213 {
214 	struct sockaddr_storage address;
215 	struct sockaddr *sap = (struct sockaddr *)&address;
216 	size_t salen = sizeof(address);
217 	char *fo_path;
218 	struct net *net = netns(file);
219 
220 	/* sanity check */
221 	if (size == 0)
222 		return -EINVAL;
223 
224 	if (buf[size-1] != '\n')
225 		return -EINVAL;
226 
227 	fo_path = buf;
228 	if (qword_get(&buf, fo_path, size) < 0)
229 		return -EINVAL;
230 
231 	if (rpc_pton(net, fo_path, size, sap, salen) == 0)
232 		return -EINVAL;
233 
234 	trace_nfsd_ctl_unlock_ip(net, buf);
235 	return nlmsvc_unlock_all_by_ip(sap);
236 }
237 
238 /*
239  * write_unlock_fs - Release all locks on a local file system
240  *
241  * Experimental.
242  *
243  * Input:
244  *			buf:	'\n'-terminated C string containing the
245  *				absolute pathname of a local file system
246  *			size:	length of C string in @buf
247  * Output:
248  *	On success:	returns zero if all specified locks were released;
249  *			returns one if one or more locks were not released
250  *	On error:	return code is negative errno value
251  */
252 static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
253 {
254 	struct path path;
255 	char *fo_path;
256 	int error;
257 
258 	/* sanity check */
259 	if (size == 0)
260 		return -EINVAL;
261 
262 	if (buf[size-1] != '\n')
263 		return -EINVAL;
264 
265 	fo_path = buf;
266 	if (qword_get(&buf, fo_path, size) < 0)
267 		return -EINVAL;
268 	trace_nfsd_ctl_unlock_fs(netns(file), fo_path);
269 	error = kern_path(fo_path, 0, &path);
270 	if (error)
271 		return error;
272 
273 	/*
274 	 * XXX: Needs better sanity checking.  Otherwise we could end up
275 	 * releasing locks on the wrong file system.
276 	 *
277 	 * For example:
278 	 * 1.  Does the path refer to a directory?
279 	 * 2.  Is that directory a mount point, or
280 	 * 3.  Is that directory the root of an exported file system?
281 	 */
282 	error = nlmsvc_unlock_all_by_sb(path.dentry->d_sb);
283 
284 	path_put(&path);
285 	return error;
286 }
287 
288 /*
289  * write_filehandle - Get a variable-length NFS file handle by path
290  *
291  * On input, the buffer contains a '\n'-terminated C string comprised of
292  * three alphanumeric words separated by whitespace.  The string may
293  * contain escape sequences.
294  *
295  * Input:
296  *			buf:
297  *				domain:		client domain name
298  *				path:		export pathname
299  *				maxsize:	numeric maximum size of
300  *						@buf
301  *			size:	length of C string in @buf
302  * Output:
303  *	On success:	passed-in buffer filled with '\n'-terminated C
304  *			string containing a ASCII hex text version
305  *			of the NFS file handle;
306  *			return code is the size in bytes of the string
307  *	On error:	return code is negative errno value
308  */
309 static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
310 {
311 	char *dname, *path;
312 	int maxsize;
313 	char *mesg = buf;
314 	int len;
315 	struct auth_domain *dom;
316 	struct knfsd_fh fh;
317 
318 	if (size == 0)
319 		return -EINVAL;
320 
321 	if (buf[size-1] != '\n')
322 		return -EINVAL;
323 	buf[size-1] = 0;
324 
325 	dname = mesg;
326 	len = qword_get(&mesg, dname, size);
327 	if (len <= 0)
328 		return -EINVAL;
329 
330 	path = dname+len+1;
331 	len = qword_get(&mesg, path, size);
332 	if (len <= 0)
333 		return -EINVAL;
334 
335 	len = get_int(&mesg, &maxsize);
336 	if (len)
337 		return len;
338 
339 	if (maxsize < NFS_FHSIZE)
340 		return -EINVAL;
341 	maxsize = min(maxsize, NFS3_FHSIZE);
342 
343 	if (qword_get(&mesg, mesg, size) > 0)
344 		return -EINVAL;
345 
346 	trace_nfsd_ctl_filehandle(netns(file), dname, path, maxsize);
347 
348 	/* we have all the words, they are in buf.. */
349 	dom = unix_domain_find(dname);
350 	if (!dom)
351 		return -ENOMEM;
352 
353 	len = exp_rootfh(netns(file), dom, path, &fh, maxsize);
354 	auth_domain_put(dom);
355 	if (len)
356 		return len;
357 
358 	mesg = buf;
359 	len = SIMPLE_TRANSACTION_LIMIT;
360 	qword_addhex(&mesg, &len, fh.fh_raw, fh.fh_size);
361 	mesg[-1] = '\n';
362 	return mesg - buf;
363 }
364 
365 /*
366  * write_threads - Start NFSD, or report the current number of running threads
367  *
368  * Input:
369  *			buf:		ignored
370  *			size:		zero
371  * Output:
372  *	On success:	passed-in buffer filled with '\n'-terminated C
373  *			string numeric value representing the number of
374  *			running NFSD threads;
375  *			return code is the size in bytes of the string
376  *	On error:	return code is zero
377  *
378  * OR
379  *
380  * Input:
381  *			buf:		C string containing an unsigned
382  *					integer value representing the
383  *					number of NFSD threads to start
384  *			size:		non-zero length of C string in @buf
385  * Output:
386  *	On success:	NFS service is started;
387  *			passed-in buffer filled with '\n'-terminated C
388  *			string numeric value representing the number of
389  *			running NFSD threads;
390  *			return code is the size in bytes of the string
391  *	On error:	return code is zero or a negative errno value
392  */
393 static ssize_t write_threads(struct file *file, char *buf, size_t size)
394 {
395 	char *mesg = buf;
396 	int rv;
397 	struct net *net = netns(file);
398 
399 	if (size > 0) {
400 		int newthreads;
401 		rv = get_int(&mesg, &newthreads);
402 		if (rv)
403 			return rv;
404 		if (newthreads < 0)
405 			return -EINVAL;
406 		trace_nfsd_ctl_threads(net, newthreads);
407 		rv = nfsd_svc(newthreads, net, file->f_cred);
408 		if (rv < 0)
409 			return rv;
410 	} else
411 		rv = nfsd_nrthreads(net);
412 
413 	return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
414 }
415 
416 /*
417  * write_pool_threads - Set or report the current number of threads per pool
418  *
419  * Input:
420  *			buf:		ignored
421  *			size:		zero
422  *
423  * OR
424  *
425  * Input:
426  *			buf:		C string containing whitespace-
427  *					separated unsigned integer values
428  *					representing the number of NFSD
429  *					threads to start in each pool
430  *			size:		non-zero length of C string in @buf
431  * Output:
432  *	On success:	passed-in buffer filled with '\n'-terminated C
433  *			string containing integer values representing the
434  *			number of NFSD threads in each pool;
435  *			return code is the size in bytes of the string
436  *	On error:	return code is zero or a negative errno value
437  */
438 static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
439 {
440 	/* if size > 0, look for an array of number of threads per node
441 	 * and apply them  then write out number of threads per node as reply
442 	 */
443 	char *mesg = buf;
444 	int i;
445 	int rv;
446 	int len;
447 	int npools;
448 	int *nthreads;
449 	struct net *net = netns(file);
450 
451 	mutex_lock(&nfsd_mutex);
452 	npools = nfsd_nrpools(net);
453 	if (npools == 0) {
454 		/*
455 		 * NFS is shut down.  The admin can start it by
456 		 * writing to the threads file but NOT the pool_threads
457 		 * file, sorry.  Report zero threads.
458 		 */
459 		mutex_unlock(&nfsd_mutex);
460 		strcpy(buf, "0\n");
461 		return strlen(buf);
462 	}
463 
464 	nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
465 	rv = -ENOMEM;
466 	if (nthreads == NULL)
467 		goto out_free;
468 
469 	if (size > 0) {
470 		for (i = 0; i < npools; i++) {
471 			rv = get_int(&mesg, &nthreads[i]);
472 			if (rv == -ENOENT)
473 				break;		/* fewer numbers than pools */
474 			if (rv)
475 				goto out_free;	/* syntax error */
476 			rv = -EINVAL;
477 			if (nthreads[i] < 0)
478 				goto out_free;
479 			trace_nfsd_ctl_pool_threads(net, i, nthreads[i]);
480 		}
481 		rv = nfsd_set_nrthreads(i, nthreads, net);
482 		if (rv)
483 			goto out_free;
484 	}
485 
486 	rv = nfsd_get_nrthreads(npools, nthreads, net);
487 	if (rv)
488 		goto out_free;
489 
490 	mesg = buf;
491 	size = SIMPLE_TRANSACTION_LIMIT;
492 	for (i = 0; i < npools && size > 0; i++) {
493 		snprintf(mesg, size, "%d%c", nthreads[i], (i == npools-1 ? '\n' : ' '));
494 		len = strlen(mesg);
495 		size -= len;
496 		mesg += len;
497 	}
498 	rv = mesg - buf;
499 out_free:
500 	kfree(nthreads);
501 	mutex_unlock(&nfsd_mutex);
502 	return rv;
503 }
504 
505 static ssize_t
506 nfsd_print_version_support(struct nfsd_net *nn, char *buf, int remaining,
507 		const char *sep, unsigned vers, int minor)
508 {
509 	const char *format = minor < 0 ? "%s%c%u" : "%s%c%u.%u";
510 	bool supported = !!nfsd_vers(nn, vers, NFSD_TEST);
511 
512 	if (vers == 4 && minor >= 0 &&
513 	    !nfsd_minorversion(nn, minor, NFSD_TEST))
514 		supported = false;
515 	if (minor == 0 && supported)
516 		/*
517 		 * special case for backward compatability.
518 		 * +4.0 is never reported, it is implied by
519 		 * +4, unless -4.0 is present.
520 		 */
521 		return 0;
522 	return snprintf(buf, remaining, format, sep,
523 			supported ? '+' : '-', vers, minor);
524 }
525 
526 static ssize_t __write_versions(struct file *file, char *buf, size_t size)
527 {
528 	char *mesg = buf;
529 	char *vers, *minorp, sign;
530 	int len, num, remaining;
531 	ssize_t tlen = 0;
532 	char *sep;
533 	struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
534 
535 	if (size > 0) {
536 		if (nn->nfsd_serv)
537 			/* Cannot change versions without updating
538 			 * nn->nfsd_serv->sv_xdrsize, and reallocing
539 			 * rq_argp and rq_resp
540 			 */
541 			return -EBUSY;
542 		if (buf[size-1] != '\n')
543 			return -EINVAL;
544 		buf[size-1] = 0;
545 		trace_nfsd_ctl_version(netns(file), buf);
546 
547 		vers = mesg;
548 		len = qword_get(&mesg, vers, size);
549 		if (len <= 0) return -EINVAL;
550 		do {
551 			enum vers_op cmd;
552 			unsigned minor;
553 			sign = *vers;
554 			if (sign == '+' || sign == '-')
555 				num = simple_strtol((vers+1), &minorp, 0);
556 			else
557 				num = simple_strtol(vers, &minorp, 0);
558 			if (*minorp == '.') {
559 				if (num != 4)
560 					return -EINVAL;
561 				if (kstrtouint(minorp+1, 0, &minor) < 0)
562 					return -EINVAL;
563 			}
564 
565 			cmd = sign == '-' ? NFSD_CLEAR : NFSD_SET;
566 			switch(num) {
567 #ifdef CONFIG_NFSD_V2
568 			case 2:
569 #endif
570 			case 3:
571 				nfsd_vers(nn, num, cmd);
572 				break;
573 			case 4:
574 				if (*minorp == '.') {
575 					if (nfsd_minorversion(nn, minor, cmd) < 0)
576 						return -EINVAL;
577 				} else if ((cmd == NFSD_SET) != nfsd_vers(nn, num, NFSD_TEST)) {
578 					/*
579 					 * Either we have +4 and no minors are enabled,
580 					 * or we have -4 and at least one minor is enabled.
581 					 * In either case, propagate 'cmd' to all minors.
582 					 */
583 					minor = 0;
584 					while (nfsd_minorversion(nn, minor, cmd) >= 0)
585 						minor++;
586 				}
587 				break;
588 			default:
589 				/* Ignore requests to disable non-existent versions */
590 				if (cmd == NFSD_SET)
591 					return -EINVAL;
592 			}
593 			vers += len + 1;
594 		} while ((len = qword_get(&mesg, vers, size)) > 0);
595 		/* If all get turned off, turn them back on, as
596 		 * having no versions is BAD
597 		 */
598 		nfsd_reset_versions(nn);
599 	}
600 
601 	/* Now write current state into reply buffer */
602 	sep = "";
603 	remaining = SIMPLE_TRANSACTION_LIMIT;
604 	for (num=2 ; num <= 4 ; num++) {
605 		int minor;
606 		if (!nfsd_vers(nn, num, NFSD_AVAIL))
607 			continue;
608 
609 		minor = -1;
610 		do {
611 			len = nfsd_print_version_support(nn, buf, remaining,
612 					sep, num, minor);
613 			if (len >= remaining)
614 				goto out;
615 			remaining -= len;
616 			buf += len;
617 			tlen += len;
618 			minor++;
619 			if (len)
620 				sep = " ";
621 		} while (num == 4 && minor <= NFSD_SUPPORTED_MINOR_VERSION);
622 	}
623 out:
624 	len = snprintf(buf, remaining, "\n");
625 	if (len >= remaining)
626 		return -EINVAL;
627 	return tlen + len;
628 }
629 
630 /*
631  * write_versions - Set or report the available NFS protocol versions
632  *
633  * Input:
634  *			buf:		ignored
635  *			size:		zero
636  * Output:
637  *	On success:	passed-in buffer filled with '\n'-terminated C
638  *			string containing positive or negative integer
639  *			values representing the current status of each
640  *			protocol version;
641  *			return code is the size in bytes of the string
642  *	On error:	return code is zero or a negative errno value
643  *
644  * OR
645  *
646  * Input:
647  *			buf:		C string containing whitespace-
648  *					separated positive or negative
649  *					integer values representing NFS
650  *					protocol versions to enable ("+n")
651  *					or disable ("-n")
652  *			size:		non-zero length of C string in @buf
653  * Output:
654  *	On success:	status of zero or more protocol versions has
655  *			been updated; passed-in buffer filled with
656  *			'\n'-terminated C string containing positive
657  *			or negative integer values representing the
658  *			current status of each protocol version;
659  *			return code is the size in bytes of the string
660  *	On error:	return code is zero or a negative errno value
661  */
662 static ssize_t write_versions(struct file *file, char *buf, size_t size)
663 {
664 	ssize_t rv;
665 
666 	mutex_lock(&nfsd_mutex);
667 	rv = __write_versions(file, buf, size);
668 	mutex_unlock(&nfsd_mutex);
669 	return rv;
670 }
671 
672 /*
673  * Zero-length write.  Return a list of NFSD's current listener
674  * transports.
675  */
676 static ssize_t __write_ports_names(char *buf, struct net *net)
677 {
678 	struct nfsd_net *nn = net_generic(net, nfsd_net_id);
679 
680 	if (nn->nfsd_serv == NULL)
681 		return 0;
682 	return svc_xprt_names(nn->nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
683 }
684 
685 /*
686  * A single 'fd' number was written, in which case it must be for
687  * a socket of a supported family/protocol, and we use it as an
688  * nfsd listener.
689  */
690 static ssize_t __write_ports_addfd(char *buf, struct net *net, const struct cred *cred)
691 {
692 	char *mesg = buf;
693 	int fd, err;
694 	struct nfsd_net *nn = net_generic(net, nfsd_net_id);
695 
696 	err = get_int(&mesg, &fd);
697 	if (err != 0 || fd < 0)
698 		return -EINVAL;
699 	trace_nfsd_ctl_ports_addfd(net, fd);
700 
701 	err = nfsd_create_serv(net);
702 	if (err != 0)
703 		return err;
704 
705 	err = svc_addsock(nn->nfsd_serv, net, fd, buf, SIMPLE_TRANSACTION_LIMIT, cred);
706 
707 	if (err < 0 && !nn->nfsd_serv->sv_nrthreads && !nn->keep_active)
708 		nfsd_last_thread(net);
709 	else if (err >= 0 &&
710 		 !nn->nfsd_serv->sv_nrthreads && !xchg(&nn->keep_active, 1))
711 		svc_get(nn->nfsd_serv);
712 
713 	nfsd_put(net);
714 	return err;
715 }
716 
717 /*
718  * A transport listener is added by writing its transport name and
719  * a port number.
720  */
721 static ssize_t __write_ports_addxprt(char *buf, struct net *net, const struct cred *cred)
722 {
723 	char transport[16];
724 	struct svc_xprt *xprt;
725 	int port, err;
726 	struct nfsd_net *nn = net_generic(net, nfsd_net_id);
727 
728 	if (sscanf(buf, "%15s %5u", transport, &port) != 2)
729 		return -EINVAL;
730 
731 	if (port < 1 || port > USHRT_MAX)
732 		return -EINVAL;
733 	trace_nfsd_ctl_ports_addxprt(net, transport, port);
734 
735 	err = nfsd_create_serv(net);
736 	if (err != 0)
737 		return err;
738 
739 	err = svc_xprt_create(nn->nfsd_serv, transport, net,
740 			      PF_INET, port, SVC_SOCK_ANONYMOUS, cred);
741 	if (err < 0)
742 		goto out_err;
743 
744 	err = svc_xprt_create(nn->nfsd_serv, transport, net,
745 			      PF_INET6, port, SVC_SOCK_ANONYMOUS, cred);
746 	if (err < 0 && err != -EAFNOSUPPORT)
747 		goto out_close;
748 
749 	if (!nn->nfsd_serv->sv_nrthreads && !xchg(&nn->keep_active, 1))
750 		svc_get(nn->nfsd_serv);
751 
752 	nfsd_put(net);
753 	return 0;
754 out_close:
755 	xprt = svc_find_xprt(nn->nfsd_serv, transport, net, PF_INET, port);
756 	if (xprt != NULL) {
757 		svc_xprt_close(xprt);
758 		svc_xprt_put(xprt);
759 	}
760 out_err:
761 	if (!nn->nfsd_serv->sv_nrthreads && !nn->keep_active)
762 		nfsd_last_thread(net);
763 
764 	nfsd_put(net);
765 	return err;
766 }
767 
768 static ssize_t __write_ports(struct file *file, char *buf, size_t size,
769 			     struct net *net)
770 {
771 	if (size == 0)
772 		return __write_ports_names(buf, net);
773 
774 	if (isdigit(buf[0]))
775 		return __write_ports_addfd(buf, net, file->f_cred);
776 
777 	if (isalpha(buf[0]))
778 		return __write_ports_addxprt(buf, net, file->f_cred);
779 
780 	return -EINVAL;
781 }
782 
783 /*
784  * write_ports - Pass a socket file descriptor or transport name to listen on
785  *
786  * Input:
787  *			buf:		ignored
788  *			size:		zero
789  * Output:
790  *	On success:	passed-in buffer filled with a '\n'-terminated C
791  *			string containing a whitespace-separated list of
792  *			named NFSD listeners;
793  *			return code is the size in bytes of the string
794  *	On error:	return code is zero or a negative errno value
795  *
796  * OR
797  *
798  * Input:
799  *			buf:		C string containing an unsigned
800  *					integer value representing a bound
801  *					but unconnected socket that is to be
802  *					used as an NFSD listener; listen(3)
803  *					must be called for a SOCK_STREAM
804  *					socket, otherwise it is ignored
805  *			size:		non-zero length of C string in @buf
806  * Output:
807  *	On success:	NFS service is started;
808  *			passed-in buffer filled with a '\n'-terminated C
809  *			string containing a unique alphanumeric name of
810  *			the listener;
811  *			return code is the size in bytes of the string
812  *	On error:	return code is a negative errno value
813  *
814  * OR
815  *
816  * Input:
817  *			buf:		C string containing a transport
818  *					name and an unsigned integer value
819  *					representing the port to listen on,
820  *					separated by whitespace
821  *			size:		non-zero length of C string in @buf
822  * Output:
823  *	On success:	returns zero; NFS service is started
824  *	On error:	return code is a negative errno value
825  */
826 static ssize_t write_ports(struct file *file, char *buf, size_t size)
827 {
828 	ssize_t rv;
829 
830 	mutex_lock(&nfsd_mutex);
831 	rv = __write_ports(file, buf, size, netns(file));
832 	mutex_unlock(&nfsd_mutex);
833 	return rv;
834 }
835 
836 
837 int nfsd_max_blksize;
838 
839 /*
840  * write_maxblksize - Set or report the current NFS blksize
841  *
842  * Input:
843  *			buf:		ignored
844  *			size:		zero
845  *
846  * OR
847  *
848  * Input:
849  *			buf:		C string containing an unsigned
850  *					integer value representing the new
851  *					NFS blksize
852  *			size:		non-zero length of C string in @buf
853  * Output:
854  *	On success:	passed-in buffer filled with '\n'-terminated C string
855  *			containing numeric value of the current NFS blksize
856  *			setting;
857  *			return code is the size in bytes of the string
858  *	On error:	return code is zero or a negative errno value
859  */
860 static ssize_t write_maxblksize(struct file *file, char *buf, size_t size)
861 {
862 	char *mesg = buf;
863 	struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
864 
865 	if (size > 0) {
866 		int bsize;
867 		int rv = get_int(&mesg, &bsize);
868 		if (rv)
869 			return rv;
870 		trace_nfsd_ctl_maxblksize(netns(file), bsize);
871 
872 		/* force bsize into allowed range and
873 		 * required alignment.
874 		 */
875 		bsize = max_t(int, bsize, 1024);
876 		bsize = min_t(int, bsize, NFSSVC_MAXBLKSIZE);
877 		bsize &= ~(1024-1);
878 		mutex_lock(&nfsd_mutex);
879 		if (nn->nfsd_serv) {
880 			mutex_unlock(&nfsd_mutex);
881 			return -EBUSY;
882 		}
883 		nfsd_max_blksize = bsize;
884 		mutex_unlock(&nfsd_mutex);
885 	}
886 
887 	return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
888 							nfsd_max_blksize);
889 }
890 
891 /*
892  * write_maxconn - Set or report the current max number of connections
893  *
894  * Input:
895  *			buf:		ignored
896  *			size:		zero
897  * OR
898  *
899  * Input:
900  *			buf:		C string containing an unsigned
901  *					integer value representing the new
902  *					number of max connections
903  *			size:		non-zero length of C string in @buf
904  * Output:
905  *	On success:	passed-in buffer filled with '\n'-terminated C string
906  *			containing numeric value of max_connections setting
907  *			for this net namespace;
908  *			return code is the size in bytes of the string
909  *	On error:	return code is zero or a negative errno value
910  */
911 static ssize_t write_maxconn(struct file *file, char *buf, size_t size)
912 {
913 	char *mesg = buf;
914 	struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
915 	unsigned int maxconn = nn->max_connections;
916 
917 	if (size > 0) {
918 		int rv = get_uint(&mesg, &maxconn);
919 
920 		if (rv)
921 			return rv;
922 		trace_nfsd_ctl_maxconn(netns(file), maxconn);
923 		nn->max_connections = maxconn;
924 	}
925 
926 	return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%u\n", maxconn);
927 }
928 
929 #ifdef CONFIG_NFSD_V4
930 static ssize_t __nfsd4_write_time(struct file *file, char *buf, size_t size,
931 				  time64_t *time, struct nfsd_net *nn)
932 {
933 	struct dentry *dentry = file_dentry(file);
934 	char *mesg = buf;
935 	int rv, i;
936 
937 	if (size > 0) {
938 		if (nn->nfsd_serv)
939 			return -EBUSY;
940 		rv = get_int(&mesg, &i);
941 		if (rv)
942 			return rv;
943 		trace_nfsd_ctl_time(netns(file), dentry->d_name.name,
944 				    dentry->d_name.len, i);
945 
946 		/*
947 		 * Some sanity checking.  We don't have a reason for
948 		 * these particular numbers, but problems with the
949 		 * extremes are:
950 		 *	- Too short: the briefest network outage may
951 		 *	  cause clients to lose all their locks.  Also,
952 		 *	  the frequent polling may be wasteful.
953 		 *	- Too long: do you really want reboot recovery
954 		 *	  to take more than an hour?  Or to make other
955 		 *	  clients wait an hour before being able to
956 		 *	  revoke a dead client's locks?
957 		 */
958 		if (i < 10 || i > 3600)
959 			return -EINVAL;
960 		*time = i;
961 	}
962 
963 	return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%lld\n", *time);
964 }
965 
966 static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size,
967 				time64_t *time, struct nfsd_net *nn)
968 {
969 	ssize_t rv;
970 
971 	mutex_lock(&nfsd_mutex);
972 	rv = __nfsd4_write_time(file, buf, size, time, nn);
973 	mutex_unlock(&nfsd_mutex);
974 	return rv;
975 }
976 
977 /*
978  * write_leasetime - Set or report the current NFSv4 lease time
979  *
980  * Input:
981  *			buf:		ignored
982  *			size:		zero
983  *
984  * OR
985  *
986  * Input:
987  *			buf:		C string containing an unsigned
988  *					integer value representing the new
989  *					NFSv4 lease expiry time
990  *			size:		non-zero length of C string in @buf
991  * Output:
992  *	On success:	passed-in buffer filled with '\n'-terminated C
993  *			string containing unsigned integer value of the
994  *			current lease expiry time;
995  *			return code is the size in bytes of the string
996  *	On error:	return code is zero or a negative errno value
997  */
998 static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
999 {
1000 	struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1001 	return nfsd4_write_time(file, buf, size, &nn->nfsd4_lease, nn);
1002 }
1003 
1004 /*
1005  * write_gracetime - Set or report current NFSv4 grace period time
1006  *
1007  * As above, but sets the time of the NFSv4 grace period.
1008  *
1009  * Note this should never be set to less than the *previous*
1010  * lease-period time, but we don't try to enforce this.  (In the common
1011  * case (a new boot), we don't know what the previous lease time was
1012  * anyway.)
1013  */
1014 static ssize_t write_gracetime(struct file *file, char *buf, size_t size)
1015 {
1016 	struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1017 	return nfsd4_write_time(file, buf, size, &nn->nfsd4_grace, nn);
1018 }
1019 
1020 static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size,
1021 				   struct nfsd_net *nn)
1022 {
1023 	char *mesg = buf;
1024 	char *recdir;
1025 	int len, status;
1026 
1027 	if (size > 0) {
1028 		if (nn->nfsd_serv)
1029 			return -EBUSY;
1030 		if (size > PATH_MAX || buf[size-1] != '\n')
1031 			return -EINVAL;
1032 		buf[size-1] = 0;
1033 
1034 		recdir = mesg;
1035 		len = qword_get(&mesg, recdir, size);
1036 		if (len <= 0)
1037 			return -EINVAL;
1038 		trace_nfsd_ctl_recoverydir(netns(file), recdir);
1039 
1040 		status = nfs4_reset_recoverydir(recdir);
1041 		if (status)
1042 			return status;
1043 	}
1044 
1045 	return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n",
1046 							nfs4_recoverydir());
1047 }
1048 
1049 /*
1050  * write_recoverydir - Set or report the pathname of the recovery directory
1051  *
1052  * Input:
1053  *			buf:		ignored
1054  *			size:		zero
1055  *
1056  * OR
1057  *
1058  * Input:
1059  *			buf:		C string containing the pathname
1060  *					of the directory on a local file
1061  *					system containing permanent NFSv4
1062  *					recovery data
1063  *			size:		non-zero length of C string in @buf
1064  * Output:
1065  *	On success:	passed-in buffer filled with '\n'-terminated C string
1066  *			containing the current recovery pathname setting;
1067  *			return code is the size in bytes of the string
1068  *	On error:	return code is zero or a negative errno value
1069  */
1070 static ssize_t write_recoverydir(struct file *file, char *buf, size_t size)
1071 {
1072 	ssize_t rv;
1073 	struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1074 
1075 	mutex_lock(&nfsd_mutex);
1076 	rv = __write_recoverydir(file, buf, size, nn);
1077 	mutex_unlock(&nfsd_mutex);
1078 	return rv;
1079 }
1080 
1081 /*
1082  * write_v4_end_grace - release grace period for nfsd's v4.x lock manager
1083  *
1084  * Input:
1085  *			buf:		ignored
1086  *			size:		zero
1087  * OR
1088  *
1089  * Input:
1090  *			buf:		any value
1091  *			size:		non-zero length of C string in @buf
1092  * Output:
1093  *			passed-in buffer filled with "Y" or "N" with a newline
1094  *			and NULL-terminated C string. This indicates whether
1095  *			the grace period has ended in the current net
1096  *			namespace. Return code is the size in bytes of the
1097  *			string. Writing a string that starts with 'Y', 'y', or
1098  *			'1' to the file will end the grace period for nfsd's v4
1099  *			lock manager.
1100  */
1101 static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size)
1102 {
1103 	struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1104 
1105 	if (size > 0) {
1106 		switch(buf[0]) {
1107 		case 'Y':
1108 		case 'y':
1109 		case '1':
1110 			if (!nn->nfsd_serv)
1111 				return -EBUSY;
1112 			trace_nfsd_end_grace(netns(file));
1113 			nfsd4_end_grace(nn);
1114 			break;
1115 		default:
1116 			return -EINVAL;
1117 		}
1118 	}
1119 
1120 	return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%c\n",
1121 			 nn->grace_ended ? 'Y' : 'N');
1122 }
1123 
1124 #endif
1125 
1126 /*----------------------------------------------------------------------------*/
1127 /*
1128  *	populating the filesystem.
1129  */
1130 
1131 /* Basically copying rpc_get_inode. */
1132 static struct inode *nfsd_get_inode(struct super_block *sb, umode_t mode)
1133 {
1134 	struct inode *inode = new_inode(sb);
1135 	if (!inode)
1136 		return NULL;
1137 	/* Following advice from simple_fill_super documentation: */
1138 	inode->i_ino = iunique(sb, NFSD_MaxReserved);
1139 	inode->i_mode = mode;
1140 	inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode);
1141 	switch (mode & S_IFMT) {
1142 	case S_IFDIR:
1143 		inode->i_fop = &simple_dir_operations;
1144 		inode->i_op = &simple_dir_inode_operations;
1145 		inc_nlink(inode);
1146 		break;
1147 	case S_IFLNK:
1148 		inode->i_op = &simple_symlink_inode_operations;
1149 		break;
1150 	default:
1151 		break;
1152 	}
1153 	return inode;
1154 }
1155 
1156 static int __nfsd_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode, struct nfsdfs_client *ncl)
1157 {
1158 	struct inode *inode;
1159 
1160 	inode = nfsd_get_inode(dir->i_sb, mode);
1161 	if (!inode)
1162 		return -ENOMEM;
1163 	if (ncl) {
1164 		inode->i_private = ncl;
1165 		kref_get(&ncl->cl_ref);
1166 	}
1167 	d_add(dentry, inode);
1168 	inc_nlink(dir);
1169 	fsnotify_mkdir(dir, dentry);
1170 	return 0;
1171 }
1172 
1173 static struct dentry *nfsd_mkdir(struct dentry *parent, struct nfsdfs_client *ncl, char *name)
1174 {
1175 	struct inode *dir = parent->d_inode;
1176 	struct dentry *dentry;
1177 	int ret = -ENOMEM;
1178 
1179 	inode_lock(dir);
1180 	dentry = d_alloc_name(parent, name);
1181 	if (!dentry)
1182 		goto out_err;
1183 	ret = __nfsd_mkdir(d_inode(parent), dentry, S_IFDIR | 0600, ncl);
1184 	if (ret)
1185 		goto out_err;
1186 out:
1187 	inode_unlock(dir);
1188 	return dentry;
1189 out_err:
1190 	dput(dentry);
1191 	dentry = ERR_PTR(ret);
1192 	goto out;
1193 }
1194 
1195 #if IS_ENABLED(CONFIG_SUNRPC_GSS)
1196 static int __nfsd_symlink(struct inode *dir, struct dentry *dentry,
1197 			  umode_t mode, const char *content)
1198 {
1199 	struct inode *inode;
1200 
1201 	inode = nfsd_get_inode(dir->i_sb, mode);
1202 	if (!inode)
1203 		return -ENOMEM;
1204 
1205 	inode->i_link = (char *)content;
1206 	inode->i_size = strlen(content);
1207 
1208 	d_add(dentry, inode);
1209 	inc_nlink(dir);
1210 	fsnotify_create(dir, dentry);
1211 	return 0;
1212 }
1213 
1214 /*
1215  * @content is assumed to be a NUL-terminated string that lives
1216  * longer than the symlink itself.
1217  */
1218 static void _nfsd_symlink(struct dentry *parent, const char *name,
1219 			  const char *content)
1220 {
1221 	struct inode *dir = parent->d_inode;
1222 	struct dentry *dentry;
1223 	int ret;
1224 
1225 	inode_lock(dir);
1226 	dentry = d_alloc_name(parent, name);
1227 	if (!dentry)
1228 		goto out;
1229 	ret = __nfsd_symlink(d_inode(parent), dentry, S_IFLNK | 0777, content);
1230 	if (ret)
1231 		dput(dentry);
1232 out:
1233 	inode_unlock(dir);
1234 }
1235 #else
1236 static inline void _nfsd_symlink(struct dentry *parent, const char *name,
1237 				 const char *content)
1238 {
1239 }
1240 
1241 #endif
1242 
1243 static void clear_ncl(struct inode *inode)
1244 {
1245 	struct nfsdfs_client *ncl = inode->i_private;
1246 
1247 	inode->i_private = NULL;
1248 	kref_put(&ncl->cl_ref, ncl->cl_release);
1249 }
1250 
1251 static struct nfsdfs_client *__get_nfsdfs_client(struct inode *inode)
1252 {
1253 	struct nfsdfs_client *nc = inode->i_private;
1254 
1255 	if (nc)
1256 		kref_get(&nc->cl_ref);
1257 	return nc;
1258 }
1259 
1260 struct nfsdfs_client *get_nfsdfs_client(struct inode *inode)
1261 {
1262 	struct nfsdfs_client *nc;
1263 
1264 	inode_lock_shared(inode);
1265 	nc = __get_nfsdfs_client(inode);
1266 	inode_unlock_shared(inode);
1267 	return nc;
1268 }
1269 /* from __rpc_unlink */
1270 static void nfsdfs_remove_file(struct inode *dir, struct dentry *dentry)
1271 {
1272 	int ret;
1273 
1274 	clear_ncl(d_inode(dentry));
1275 	dget(dentry);
1276 	ret = simple_unlink(dir, dentry);
1277 	d_drop(dentry);
1278 	fsnotify_unlink(dir, dentry);
1279 	dput(dentry);
1280 	WARN_ON_ONCE(ret);
1281 }
1282 
1283 static void nfsdfs_remove_files(struct dentry *root)
1284 {
1285 	struct dentry *dentry, *tmp;
1286 
1287 	list_for_each_entry_safe(dentry, tmp, &root->d_subdirs, d_child) {
1288 		if (!simple_positive(dentry)) {
1289 			WARN_ON_ONCE(1); /* I think this can't happen? */
1290 			continue;
1291 		}
1292 		nfsdfs_remove_file(d_inode(root), dentry);
1293 	}
1294 }
1295 
1296 /* XXX: cut'n'paste from simple_fill_super; figure out if we could share
1297  * code instead. */
1298 static  int nfsdfs_create_files(struct dentry *root,
1299 				const struct tree_descr *files,
1300 				struct dentry **fdentries)
1301 {
1302 	struct inode *dir = d_inode(root);
1303 	struct inode *inode;
1304 	struct dentry *dentry;
1305 	int i;
1306 
1307 	inode_lock(dir);
1308 	for (i = 0; files->name && files->name[0]; i++, files++) {
1309 		dentry = d_alloc_name(root, files->name);
1310 		if (!dentry)
1311 			goto out;
1312 		inode = nfsd_get_inode(d_inode(root)->i_sb,
1313 					S_IFREG | files->mode);
1314 		if (!inode) {
1315 			dput(dentry);
1316 			goto out;
1317 		}
1318 		inode->i_fop = files->ops;
1319 		inode->i_private = __get_nfsdfs_client(dir);
1320 		d_add(dentry, inode);
1321 		fsnotify_create(dir, dentry);
1322 		if (fdentries)
1323 			fdentries[i] = dentry;
1324 	}
1325 	inode_unlock(dir);
1326 	return 0;
1327 out:
1328 	nfsdfs_remove_files(root);
1329 	inode_unlock(dir);
1330 	return -ENOMEM;
1331 }
1332 
1333 /* on success, returns positive number unique to that client. */
1334 struct dentry *nfsd_client_mkdir(struct nfsd_net *nn,
1335 				 struct nfsdfs_client *ncl, u32 id,
1336 				 const struct tree_descr *files,
1337 				 struct dentry **fdentries)
1338 {
1339 	struct dentry *dentry;
1340 	char name[11];
1341 	int ret;
1342 
1343 	sprintf(name, "%u", id);
1344 
1345 	dentry = nfsd_mkdir(nn->nfsd_client_dir, ncl, name);
1346 	if (IS_ERR(dentry)) /* XXX: tossing errors? */
1347 		return NULL;
1348 	ret = nfsdfs_create_files(dentry, files, fdentries);
1349 	if (ret) {
1350 		nfsd_client_rmdir(dentry);
1351 		return NULL;
1352 	}
1353 	return dentry;
1354 }
1355 
1356 /* Taken from __rpc_rmdir: */
1357 void nfsd_client_rmdir(struct dentry *dentry)
1358 {
1359 	struct inode *dir = d_inode(dentry->d_parent);
1360 	struct inode *inode = d_inode(dentry);
1361 	int ret;
1362 
1363 	inode_lock(dir);
1364 	nfsdfs_remove_files(dentry);
1365 	clear_ncl(inode);
1366 	dget(dentry);
1367 	ret = simple_rmdir(dir, dentry);
1368 	WARN_ON_ONCE(ret);
1369 	d_drop(dentry);
1370 	fsnotify_rmdir(dir, dentry);
1371 	dput(dentry);
1372 	inode_unlock(dir);
1373 }
1374 
1375 static int nfsd_fill_super(struct super_block *sb, struct fs_context *fc)
1376 {
1377 	struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
1378 							nfsd_net_id);
1379 	struct dentry *dentry;
1380 	int ret;
1381 
1382 	static const struct tree_descr nfsd_files[] = {
1383 		[NFSD_List] = {"exports", &exports_nfsd_operations, S_IRUGO},
1384 		/* Per-export io stats use same ops as exports file */
1385 		[NFSD_Export_Stats] = {"export_stats", &exports_nfsd_operations, S_IRUGO},
1386 		[NFSD_Export_features] = {"export_features",
1387 					&export_features_fops, S_IRUGO},
1388 		[NFSD_FO_UnlockIP] = {"unlock_ip",
1389 					&transaction_ops, S_IWUSR|S_IRUSR},
1390 		[NFSD_FO_UnlockFS] = {"unlock_filesystem",
1391 					&transaction_ops, S_IWUSR|S_IRUSR},
1392 		[NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1393 		[NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
1394 		[NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
1395 		[NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
1396 		[NFSD_Reply_Cache_Stats] = {"reply_cache_stats",
1397 					&nfsd_reply_cache_stats_fops, S_IRUGO},
1398 		[NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
1399 		[NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
1400 		[NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
1401 		[NFSD_MaxConnections] = {"max_connections", &transaction_ops, S_IWUSR|S_IRUGO},
1402 		[NFSD_Filecache] = {"filecache", &nfsd_file_cache_stats_fops, S_IRUGO},
1403 #ifdef CONFIG_NFSD_V4
1404 		[NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
1405 		[NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR},
1406 		[NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
1407 		[NFSD_V4EndGrace] = {"v4_end_grace", &transaction_ops, S_IWUSR|S_IRUGO},
1408 #endif
1409 		/* last one */ {""}
1410 	};
1411 
1412 	ret = simple_fill_super(sb, 0x6e667364, nfsd_files);
1413 	if (ret)
1414 		return ret;
1415 	_nfsd_symlink(sb->s_root, "supported_krb5_enctypes",
1416 		      "/proc/net/rpc/gss_krb5_enctypes");
1417 	dentry = nfsd_mkdir(sb->s_root, NULL, "clients");
1418 	if (IS_ERR(dentry))
1419 		return PTR_ERR(dentry);
1420 	nn->nfsd_client_dir = dentry;
1421 	return 0;
1422 }
1423 
1424 static int nfsd_fs_get_tree(struct fs_context *fc)
1425 {
1426 	return get_tree_keyed(fc, nfsd_fill_super, get_net(fc->net_ns));
1427 }
1428 
1429 static void nfsd_fs_free_fc(struct fs_context *fc)
1430 {
1431 	if (fc->s_fs_info)
1432 		put_net(fc->s_fs_info);
1433 }
1434 
1435 static const struct fs_context_operations nfsd_fs_context_ops = {
1436 	.free		= nfsd_fs_free_fc,
1437 	.get_tree	= nfsd_fs_get_tree,
1438 };
1439 
1440 static int nfsd_init_fs_context(struct fs_context *fc)
1441 {
1442 	put_user_ns(fc->user_ns);
1443 	fc->user_ns = get_user_ns(fc->net_ns->user_ns);
1444 	fc->ops = &nfsd_fs_context_ops;
1445 	return 0;
1446 }
1447 
1448 static void nfsd_umount(struct super_block *sb)
1449 {
1450 	struct net *net = sb->s_fs_info;
1451 
1452 	nfsd_shutdown_threads(net);
1453 
1454 	kill_litter_super(sb);
1455 	put_net(net);
1456 }
1457 
1458 static struct file_system_type nfsd_fs_type = {
1459 	.owner		= THIS_MODULE,
1460 	.name		= "nfsd",
1461 	.init_fs_context = nfsd_init_fs_context,
1462 	.kill_sb	= nfsd_umount,
1463 };
1464 MODULE_ALIAS_FS("nfsd");
1465 
1466 #ifdef CONFIG_PROC_FS
1467 
1468 static int exports_proc_open(struct inode *inode, struct file *file)
1469 {
1470 	return exports_net_open(current->nsproxy->net_ns, file);
1471 }
1472 
1473 static const struct proc_ops exports_proc_ops = {
1474 	.proc_open	= exports_proc_open,
1475 	.proc_read	= seq_read,
1476 	.proc_lseek	= seq_lseek,
1477 	.proc_release	= seq_release,
1478 };
1479 
1480 static int create_proc_exports_entry(void)
1481 {
1482 	struct proc_dir_entry *entry;
1483 
1484 	entry = proc_mkdir("fs/nfs", NULL);
1485 	if (!entry)
1486 		return -ENOMEM;
1487 	entry = proc_create("exports", 0, entry, &exports_proc_ops);
1488 	if (!entry) {
1489 		remove_proc_entry("fs/nfs", NULL);
1490 		return -ENOMEM;
1491 	}
1492 	return 0;
1493 }
1494 #else /* CONFIG_PROC_FS */
1495 static int create_proc_exports_entry(void)
1496 {
1497 	return 0;
1498 }
1499 #endif
1500 
1501 unsigned int nfsd_net_id;
1502 
1503 /**
1504  * nfsd_net_init - Prepare the nfsd_net portion of a new net namespace
1505  * @net: a freshly-created network namespace
1506  *
1507  * This information stays around as long as the network namespace is
1508  * alive whether or not there is an NFSD instance running in the
1509  * namespace.
1510  *
1511  * Returns zero on success, or a negative errno otherwise.
1512  */
1513 static __net_init int nfsd_net_init(struct net *net)
1514 {
1515 	int retval;
1516 	struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1517 
1518 	retval = nfsd_export_init(net);
1519 	if (retval)
1520 		goto out_export_error;
1521 	retval = nfsd_idmap_init(net);
1522 	if (retval)
1523 		goto out_idmap_error;
1524 	retval = nfsd_net_reply_cache_init(nn);
1525 	if (retval)
1526 		goto out_repcache_error;
1527 	nn->nfsd_versions = NULL;
1528 	nn->nfsd4_minorversions = NULL;
1529 	nfsd4_init_leases_net(nn);
1530 	get_random_bytes(&nn->siphash_key, sizeof(nn->siphash_key));
1531 	seqlock_init(&nn->writeverf_lock);
1532 
1533 	return 0;
1534 
1535 out_repcache_error:
1536 	nfsd_idmap_shutdown(net);
1537 out_idmap_error:
1538 	nfsd_export_shutdown(net);
1539 out_export_error:
1540 	return retval;
1541 }
1542 
1543 /**
1544  * nfsd_net_exit - Release the nfsd_net portion of a net namespace
1545  * @net: a network namespace that is about to be destroyed
1546  *
1547  */
1548 static __net_exit void nfsd_net_exit(struct net *net)
1549 {
1550 	struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1551 
1552 	nfsd_net_reply_cache_destroy(nn);
1553 	nfsd_idmap_shutdown(net);
1554 	nfsd_export_shutdown(net);
1555 	nfsd_netns_free_versions(nn);
1556 }
1557 
1558 static struct pernet_operations nfsd_net_ops = {
1559 	.init = nfsd_net_init,
1560 	.exit = nfsd_net_exit,
1561 	.id   = &nfsd_net_id,
1562 	.size = sizeof(struct nfsd_net),
1563 };
1564 
1565 static int __init init_nfsd(void)
1566 {
1567 	int retval;
1568 
1569 	retval = nfsd4_init_slabs();
1570 	if (retval)
1571 		return retval;
1572 	retval = nfsd4_init_pnfs();
1573 	if (retval)
1574 		goto out_free_slabs;
1575 	retval = nfsd_stat_init();	/* Statistics */
1576 	if (retval)
1577 		goto out_free_pnfs;
1578 	retval = nfsd_drc_slab_create();
1579 	if (retval)
1580 		goto out_free_stat;
1581 	nfsd_lockd_init();	/* lockd->nfsd callbacks */
1582 	retval = create_proc_exports_entry();
1583 	if (retval)
1584 		goto out_free_lockd;
1585 	retval = register_pernet_subsys(&nfsd_net_ops);
1586 	if (retval < 0)
1587 		goto out_free_exports;
1588 	retval = register_cld_notifier();
1589 	if (retval)
1590 		goto out_free_subsys;
1591 	retval = nfsd4_create_laundry_wq();
1592 	if (retval)
1593 		goto out_free_cld;
1594 	retval = register_filesystem(&nfsd_fs_type);
1595 	if (retval)
1596 		goto out_free_all;
1597 	return 0;
1598 out_free_all:
1599 	nfsd4_destroy_laundry_wq();
1600 out_free_cld:
1601 	unregister_cld_notifier();
1602 out_free_subsys:
1603 	unregister_pernet_subsys(&nfsd_net_ops);
1604 out_free_exports:
1605 	remove_proc_entry("fs/nfs/exports", NULL);
1606 	remove_proc_entry("fs/nfs", NULL);
1607 out_free_lockd:
1608 	nfsd_lockd_shutdown();
1609 	nfsd_drc_slab_free();
1610 out_free_stat:
1611 	nfsd_stat_shutdown();
1612 out_free_pnfs:
1613 	nfsd4_exit_pnfs();
1614 out_free_slabs:
1615 	nfsd4_free_slabs();
1616 	return retval;
1617 }
1618 
1619 static void __exit exit_nfsd(void)
1620 {
1621 	unregister_filesystem(&nfsd_fs_type);
1622 	nfsd4_destroy_laundry_wq();
1623 	unregister_cld_notifier();
1624 	unregister_pernet_subsys(&nfsd_net_ops);
1625 	nfsd_drc_slab_free();
1626 	remove_proc_entry("fs/nfs/exports", NULL);
1627 	remove_proc_entry("fs/nfs", NULL);
1628 	nfsd_stat_shutdown();
1629 	nfsd_lockd_shutdown();
1630 	nfsd4_free_slabs();
1631 	nfsd4_exit_pnfs();
1632 }
1633 
1634 MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1635 MODULE_DESCRIPTION("In-kernel NFS server");
1636 MODULE_LICENSE("GPL");
1637 module_init(init_nfsd)
1638 module_exit(exit_nfsd)
1639