1 // SPDX-License-Identifier: GPL-2.0-only
3 * Syscall interface to knfsd.
5 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
8 #include <linux/slab.h>
9 #include <linux/namei.h>
10 #include <linux/ctype.h>
11 #include <linux/fs_context.h>
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>
27 #include "filecache.h"
31 * We have a single directory with several nodes in it.
44 NFSD_Reply_Cache_Stats,
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
64 * write() for these nodes.
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);
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);
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,
93 [NFSD_Leasetime] = write_leasetime,
94 [NFSD_Gracetime] = write_gracetime,
95 [NFSD_RecoveryDir] = write_recoverydir,
96 [NFSD_V4EndGrace] = write_v4_end_grace,
100 static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
102 ino_t ino = file_inode(file)->i_ino;
106 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
109 data = simple_transaction_get(file, buf, size);
111 return PTR_ERR(data);
113 rv = write_op[ino](file, data, size);
117 simple_transaction_set(file, rv);
121 static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
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
128 ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos);
132 return simple_transaction_read(file, buf, size, pos);
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,
142 static int exports_net_open(struct net *net, struct file *file)
145 struct seq_file *seq;
146 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
148 err = seq_open(file, &nfs_exports_op);
152 seq = file->private_data;
153 seq->private = nn->svc_export_cache;
157 static int exports_nfsd_open(struct inode *inode, struct file *file)
159 return exports_net_open(inode->i_sb->s_fs_info, file);
162 static const struct file_operations exports_nfsd_operations = {
163 .open = exports_nfsd_open,
166 .release = seq_release,
169 static int export_features_show(struct seq_file *m, void *v)
171 seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS);
175 DEFINE_SHOW_ATTRIBUTE(export_features);
177 static const struct file_operations pool_stats_operations = {
178 .open = nfsd_pool_stats_open,
181 .release = nfsd_pool_stats_release,
184 DEFINE_SHOW_ATTRIBUTE(nfsd_reply_cache_stats);
186 DEFINE_SHOW_ATTRIBUTE(nfsd_file_cache_stats);
188 /*----------------------------------------------------------------------------*/
190 * payload - write methods
193 static inline struct net *netns(struct file *file)
195 return file_inode(file)->i_sb->s_fs_info;
199 * write_unlock_ip - Release all locks used by a client
204 * buf: '\n'-terminated C string containing a
205 * presentation format IP address
206 * size: length of C string in @buf
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
212 static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
214 struct sockaddr_storage address;
215 struct sockaddr *sap = (struct sockaddr *)&address;
216 size_t salen = sizeof(address);
218 struct net *net = netns(file);
224 if (buf[size-1] != '\n')
228 if (qword_get(&buf, fo_path, size) < 0)
231 if (rpc_pton(net, fo_path, size, sap, salen) == 0)
234 trace_nfsd_ctl_unlock_ip(net, buf);
235 return nlmsvc_unlock_all_by_ip(sap);
239 * write_unlock_fs - Release all locks on a local file system
244 * buf: '\n'-terminated C string containing the
245 * absolute pathname of a local file system
246 * size: length of C string in @buf
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
252 static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
262 if (buf[size-1] != '\n')
266 if (qword_get(&buf, fo_path, size) < 0)
268 trace_nfsd_ctl_unlock_fs(netns(file), fo_path);
269 error = kern_path(fo_path, 0, &path);
274 * XXX: Needs better sanity checking. Otherwise we could end up
275 * releasing locks on the wrong file system.
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?
282 error = nlmsvc_unlock_all_by_sb(path.dentry->d_sb);
289 * write_filehandle - Get a variable-length NFS file handle by path
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.
297 * domain: client domain name
298 * path: export pathname
299 * maxsize: numeric maximum size of
301 * size: length of C string in @buf
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
309 static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
315 struct auth_domain *dom;
321 if (buf[size-1] != '\n')
326 len = qword_get(&mesg, dname, size);
331 len = qword_get(&mesg, path, size);
335 len = get_int(&mesg, &maxsize);
339 if (maxsize < NFS_FHSIZE)
341 maxsize = min(maxsize, NFS3_FHSIZE);
343 if (qword_get(&mesg, mesg, size) > 0)
346 trace_nfsd_ctl_filehandle(netns(file), dname, path, maxsize);
348 /* we have all the words, they are in buf.. */
349 dom = unix_domain_find(dname);
353 len = exp_rootfh(netns(file), dom, path, &fh, maxsize);
354 auth_domain_put(dom);
359 len = SIMPLE_TRANSACTION_LIMIT;
360 qword_addhex(&mesg, &len, fh.fh_raw, fh.fh_size);
366 * write_threads - Start NFSD, or report the current number of running threads
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
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
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
393 static ssize_t write_threads(struct file *file, char *buf, size_t size)
397 struct net *net = netns(file);
401 rv = get_int(&mesg, &newthreads);
406 trace_nfsd_ctl_threads(net, newthreads);
407 rv = nfsd_svc(newthreads, net, file->f_cred);
411 rv = nfsd_nrthreads(net);
413 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
417 * write_pool_threads - Set or report the current number of threads per pool
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
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
438 static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
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
449 struct net *net = netns(file);
451 mutex_lock(&nfsd_mutex);
452 npools = nfsd_nrpools(net);
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.
459 mutex_unlock(&nfsd_mutex);
464 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
466 if (nthreads == NULL)
470 for (i = 0; i < npools; i++) {
471 rv = get_int(&mesg, &nthreads[i]);
473 break; /* fewer numbers than pools */
475 goto out_free; /* syntax error */
479 trace_nfsd_ctl_pool_threads(net, i, nthreads[i]);
481 rv = nfsd_set_nrthreads(i, nthreads, net);
486 rv = nfsd_get_nrthreads(npools, nthreads, net);
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' : ' '));
501 mutex_unlock(&nfsd_mutex);
506 nfsd_print_version_support(struct nfsd_net *nn, char *buf, int remaining,
507 const char *sep, unsigned vers, int minor)
509 const char *format = minor < 0 ? "%s%c%u" : "%s%c%u.%u";
510 bool supported = !!nfsd_vers(nn, vers, NFSD_TEST);
512 if (vers == 4 && minor >= 0 &&
513 !nfsd_minorversion(nn, minor, NFSD_TEST))
515 if (minor == 0 && supported)
517 * special case for backward compatability.
518 * +4.0 is never reported, it is implied by
519 * +4, unless -4.0 is present.
522 return snprintf(buf, remaining, format, sep,
523 supported ? '+' : '-', vers, minor);
526 static ssize_t __write_versions(struct file *file, char *buf, size_t size)
529 char *vers, *minorp, sign;
530 int len, num, remaining;
533 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
537 /* Cannot change versions without updating
538 * nn->nfsd_serv->sv_xdrsize, and reallocing
539 * rq_argp and rq_resp
542 if (buf[size-1] != '\n')
545 trace_nfsd_ctl_version(netns(file), buf);
548 len = qword_get(&mesg, vers, size);
549 if (len <= 0) return -EINVAL;
554 if (sign == '+' || sign == '-')
555 num = simple_strtol((vers+1), &minorp, 0);
557 num = simple_strtol(vers, &minorp, 0);
558 if (*minorp == '.') {
561 if (kstrtouint(minorp+1, 0, &minor) < 0)
565 cmd = sign == '-' ? NFSD_CLEAR : NFSD_SET;
567 #ifdef CONFIG_NFSD_V2
571 nfsd_vers(nn, num, cmd);
574 if (*minorp == '.') {
575 if (nfsd_minorversion(nn, minor, cmd) < 0)
577 } else if ((cmd == NFSD_SET) != nfsd_vers(nn, num, NFSD_TEST)) {
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.
584 while (nfsd_minorversion(nn, minor, cmd) >= 0)
589 /* Ignore requests to disable non-existent versions */
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
598 nfsd_reset_versions(nn);
601 /* Now write current state into reply buffer */
603 remaining = SIMPLE_TRANSACTION_LIMIT;
604 for (num=2 ; num <= 4 ; num++) {
606 if (!nfsd_vers(nn, num, NFSD_AVAIL))
611 len = nfsd_print_version_support(nn, buf, remaining,
613 if (len >= remaining)
621 } while (num == 4 && minor <= NFSD_SUPPORTED_MINOR_VERSION);
624 len = snprintf(buf, remaining, "\n");
625 if (len >= remaining)
631 * write_versions - Set or report the available NFS protocol versions
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
641 * return code is the size in bytes of the string
642 * On error: return code is zero or a negative errno value
647 * buf: C string containing whitespace-
648 * separated positive or negative
649 * integer values representing NFS
650 * protocol versions to enable ("+n")
652 * size: non-zero length of C string in @buf
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
662 static ssize_t write_versions(struct file *file, char *buf, size_t size)
666 mutex_lock(&nfsd_mutex);
667 rv = __write_versions(file, buf, size);
668 mutex_unlock(&nfsd_mutex);
673 * Zero-length write. Return a list of NFSD's current listener
676 static ssize_t __write_ports_names(char *buf, struct net *net)
678 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
680 if (nn->nfsd_serv == NULL)
682 return svc_xprt_names(nn->nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
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
690 static ssize_t __write_ports_addfd(char *buf, struct net *net, const struct cred *cred)
694 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
695 struct svc_serv *serv;
697 err = get_int(&mesg, &fd);
698 if (err != 0 || fd < 0)
700 trace_nfsd_ctl_ports_addfd(net, fd);
702 err = nfsd_create_serv(net);
706 serv = nn->nfsd_serv;
707 err = svc_addsock(serv, net, fd, buf, SIMPLE_TRANSACTION_LIMIT, cred);
709 if (err < 0 && !serv->sv_nrthreads && !nn->keep_active)
710 nfsd_last_thread(net);
711 else if (err >= 0 && !serv->sv_nrthreads && !xchg(&nn->keep_active, 1))
719 * A transport listener is added by writing its transport name and
722 static ssize_t __write_ports_addxprt(char *buf, struct net *net, const struct cred *cred)
725 struct svc_xprt *xprt;
727 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
728 struct svc_serv *serv;
730 if (sscanf(buf, "%15s %5u", transport, &port) != 2)
733 if (port < 1 || port > USHRT_MAX)
735 trace_nfsd_ctl_ports_addxprt(net, transport, port);
737 err = nfsd_create_serv(net);
741 serv = nn->nfsd_serv;
742 err = svc_xprt_create(serv, transport, net,
743 PF_INET, port, SVC_SOCK_ANONYMOUS, cred);
747 err = svc_xprt_create(serv, transport, net,
748 PF_INET6, port, SVC_SOCK_ANONYMOUS, cred);
749 if (err < 0 && err != -EAFNOSUPPORT)
752 if (!serv->sv_nrthreads && !xchg(&nn->keep_active, 1))
758 xprt = svc_find_xprt(serv, transport, net, PF_INET, port);
760 svc_xprt_close(xprt);
764 if (!serv->sv_nrthreads && !nn->keep_active)
765 nfsd_last_thread(net);
771 static ssize_t __write_ports(struct file *file, char *buf, size_t size,
775 return __write_ports_names(buf, net);
778 return __write_ports_addfd(buf, net, file->f_cred);
781 return __write_ports_addxprt(buf, net, file->f_cred);
787 * write_ports - Pass a socket file descriptor or transport name to listen on
793 * On success: passed-in buffer filled with a '\n'-terminated C
794 * string containing a whitespace-separated list of
795 * named NFSD listeners;
796 * return code is the size in bytes of the string
797 * On error: return code is zero or a negative errno value
802 * buf: C string containing an unsigned
803 * integer value representing a bound
804 * but unconnected socket that is to be
805 * used as an NFSD listener; listen(3)
806 * must be called for a SOCK_STREAM
807 * socket, otherwise it is ignored
808 * size: non-zero length of C string in @buf
810 * On success: NFS service is started;
811 * passed-in buffer filled with a '\n'-terminated C
812 * string containing a unique alphanumeric name of
814 * return code is the size in bytes of the string
815 * On error: return code is a negative errno value
820 * buf: C string containing a transport
821 * name and an unsigned integer value
822 * representing the port to listen on,
823 * separated by whitespace
824 * size: non-zero length of C string in @buf
826 * On success: returns zero; NFS service is started
827 * On error: return code is a negative errno value
829 static ssize_t write_ports(struct file *file, char *buf, size_t size)
833 mutex_lock(&nfsd_mutex);
834 rv = __write_ports(file, buf, size, netns(file));
835 mutex_unlock(&nfsd_mutex);
840 int nfsd_max_blksize;
843 * write_maxblksize - Set or report the current NFS blksize
852 * buf: C string containing an unsigned
853 * integer value representing the new
855 * size: non-zero length of C string in @buf
857 * On success: passed-in buffer filled with '\n'-terminated C string
858 * containing numeric value of the current NFS blksize
860 * return code is the size in bytes of the string
861 * On error: return code is zero or a negative errno value
863 static ssize_t write_maxblksize(struct file *file, char *buf, size_t size)
866 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
870 int rv = get_int(&mesg, &bsize);
873 trace_nfsd_ctl_maxblksize(netns(file), bsize);
875 /* force bsize into allowed range and
876 * required alignment.
878 bsize = max_t(int, bsize, 1024);
879 bsize = min_t(int, bsize, NFSSVC_MAXBLKSIZE);
881 mutex_lock(&nfsd_mutex);
883 mutex_unlock(&nfsd_mutex);
886 nfsd_max_blksize = bsize;
887 mutex_unlock(&nfsd_mutex);
890 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
895 * write_maxconn - Set or report the current max number of connections
903 * buf: C string containing an unsigned
904 * integer value representing the new
905 * number of max connections
906 * size: non-zero length of C string in @buf
908 * On success: passed-in buffer filled with '\n'-terminated C string
909 * containing numeric value of max_connections setting
910 * for this net namespace;
911 * return code is the size in bytes of the string
912 * On error: return code is zero or a negative errno value
914 static ssize_t write_maxconn(struct file *file, char *buf, size_t size)
917 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
918 unsigned int maxconn = nn->max_connections;
921 int rv = get_uint(&mesg, &maxconn);
925 trace_nfsd_ctl_maxconn(netns(file), maxconn);
926 nn->max_connections = maxconn;
929 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%u\n", maxconn);
932 #ifdef CONFIG_NFSD_V4
933 static ssize_t __nfsd4_write_time(struct file *file, char *buf, size_t size,
934 time64_t *time, struct nfsd_net *nn)
936 struct dentry *dentry = file_dentry(file);
943 rv = get_int(&mesg, &i);
946 trace_nfsd_ctl_time(netns(file), dentry->d_name.name,
947 dentry->d_name.len, i);
950 * Some sanity checking. We don't have a reason for
951 * these particular numbers, but problems with the
953 * - Too short: the briefest network outage may
954 * cause clients to lose all their locks. Also,
955 * the frequent polling may be wasteful.
956 * - Too long: do you really want reboot recovery
957 * to take more than an hour? Or to make other
958 * clients wait an hour before being able to
959 * revoke a dead client's locks?
961 if (i < 10 || i > 3600)
966 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%lld\n", *time);
969 static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size,
970 time64_t *time, struct nfsd_net *nn)
974 mutex_lock(&nfsd_mutex);
975 rv = __nfsd4_write_time(file, buf, size, time, nn);
976 mutex_unlock(&nfsd_mutex);
981 * write_leasetime - Set or report the current NFSv4 lease time
990 * buf: C string containing an unsigned
991 * integer value representing the new
992 * NFSv4 lease expiry time
993 * size: non-zero length of C string in @buf
995 * On success: passed-in buffer filled with '\n'-terminated C
996 * string containing unsigned integer value of the
997 * current lease expiry time;
998 * return code is the size in bytes of the string
999 * On error: return code is zero or a negative errno value
1001 static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
1003 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1004 return nfsd4_write_time(file, buf, size, &nn->nfsd4_lease, nn);
1008 * write_gracetime - Set or report current NFSv4 grace period time
1010 * As above, but sets the time of the NFSv4 grace period.
1012 * Note this should never be set to less than the *previous*
1013 * lease-period time, but we don't try to enforce this. (In the common
1014 * case (a new boot), we don't know what the previous lease time was
1017 static ssize_t write_gracetime(struct file *file, char *buf, size_t size)
1019 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1020 return nfsd4_write_time(file, buf, size, &nn->nfsd4_grace, nn);
1023 static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size,
1024 struct nfsd_net *nn)
1033 if (size > PATH_MAX || buf[size-1] != '\n')
1038 len = qword_get(&mesg, recdir, size);
1041 trace_nfsd_ctl_recoverydir(netns(file), recdir);
1043 status = nfs4_reset_recoverydir(recdir);
1048 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n",
1049 nfs4_recoverydir());
1053 * write_recoverydir - Set or report the pathname of the recovery directory
1062 * buf: C string containing the pathname
1063 * of the directory on a local file
1064 * system containing permanent NFSv4
1066 * size: non-zero length of C string in @buf
1068 * On success: passed-in buffer filled with '\n'-terminated C string
1069 * containing the current recovery pathname setting;
1070 * return code is the size in bytes of the string
1071 * On error: return code is zero or a negative errno value
1073 static ssize_t write_recoverydir(struct file *file, char *buf, size_t size)
1076 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1078 mutex_lock(&nfsd_mutex);
1079 rv = __write_recoverydir(file, buf, size, nn);
1080 mutex_unlock(&nfsd_mutex);
1085 * write_v4_end_grace - release grace period for nfsd's v4.x lock manager
1094 * size: non-zero length of C string in @buf
1096 * passed-in buffer filled with "Y" or "N" with a newline
1097 * and NULL-terminated C string. This indicates whether
1098 * the grace period has ended in the current net
1099 * namespace. Return code is the size in bytes of the
1100 * string. Writing a string that starts with 'Y', 'y', or
1101 * '1' to the file will end the grace period for nfsd's v4
1104 static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size)
1106 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1115 trace_nfsd_end_grace(netns(file));
1116 nfsd4_end_grace(nn);
1123 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%c\n",
1124 nn->grace_ended ? 'Y' : 'N');
1129 /*----------------------------------------------------------------------------*/
1131 * populating the filesystem.
1134 /* Basically copying rpc_get_inode. */
1135 static struct inode *nfsd_get_inode(struct super_block *sb, umode_t mode)
1137 struct inode *inode = new_inode(sb);
1140 /* Following advice from simple_fill_super documentation: */
1141 inode->i_ino = iunique(sb, NFSD_MaxReserved);
1142 inode->i_mode = mode;
1143 inode->i_atime = inode->i_mtime = inode_set_ctime_current(inode);
1144 switch (mode & S_IFMT) {
1146 inode->i_fop = &simple_dir_operations;
1147 inode->i_op = &simple_dir_inode_operations;
1151 inode->i_op = &simple_symlink_inode_operations;
1159 static int __nfsd_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode, struct nfsdfs_client *ncl)
1161 struct inode *inode;
1163 inode = nfsd_get_inode(dir->i_sb, mode);
1167 inode->i_private = ncl;
1168 kref_get(&ncl->cl_ref);
1170 d_add(dentry, inode);
1172 fsnotify_mkdir(dir, dentry);
1176 static struct dentry *nfsd_mkdir(struct dentry *parent, struct nfsdfs_client *ncl, char *name)
1178 struct inode *dir = parent->d_inode;
1179 struct dentry *dentry;
1183 dentry = d_alloc_name(parent, name);
1186 ret = __nfsd_mkdir(d_inode(parent), dentry, S_IFDIR | 0600, ncl);
1194 dentry = ERR_PTR(ret);
1198 #if IS_ENABLED(CONFIG_SUNRPC_GSS)
1199 static int __nfsd_symlink(struct inode *dir, struct dentry *dentry,
1200 umode_t mode, const char *content)
1202 struct inode *inode;
1204 inode = nfsd_get_inode(dir->i_sb, mode);
1208 inode->i_link = (char *)content;
1209 inode->i_size = strlen(content);
1211 d_add(dentry, inode);
1213 fsnotify_create(dir, dentry);
1218 * @content is assumed to be a NUL-terminated string that lives
1219 * longer than the symlink itself.
1221 static void _nfsd_symlink(struct dentry *parent, const char *name,
1222 const char *content)
1224 struct inode *dir = parent->d_inode;
1225 struct dentry *dentry;
1229 dentry = d_alloc_name(parent, name);
1232 ret = __nfsd_symlink(d_inode(parent), dentry, S_IFLNK | 0777, content);
1239 static inline void _nfsd_symlink(struct dentry *parent, const char *name,
1240 const char *content)
1246 static void clear_ncl(struct inode *inode)
1248 struct nfsdfs_client *ncl = inode->i_private;
1250 inode->i_private = NULL;
1251 kref_put(&ncl->cl_ref, ncl->cl_release);
1254 static struct nfsdfs_client *__get_nfsdfs_client(struct inode *inode)
1256 struct nfsdfs_client *nc = inode->i_private;
1259 kref_get(&nc->cl_ref);
1263 struct nfsdfs_client *get_nfsdfs_client(struct inode *inode)
1265 struct nfsdfs_client *nc;
1267 inode_lock_shared(inode);
1268 nc = __get_nfsdfs_client(inode);
1269 inode_unlock_shared(inode);
1272 /* from __rpc_unlink */
1273 static void nfsdfs_remove_file(struct inode *dir, struct dentry *dentry)
1277 clear_ncl(d_inode(dentry));
1279 ret = simple_unlink(dir, dentry);
1281 fsnotify_unlink(dir, dentry);
1286 static void nfsdfs_remove_files(struct dentry *root)
1288 struct dentry *dentry, *tmp;
1290 list_for_each_entry_safe(dentry, tmp, &root->d_subdirs, d_child) {
1291 if (!simple_positive(dentry)) {
1292 WARN_ON_ONCE(1); /* I think this can't happen? */
1295 nfsdfs_remove_file(d_inode(root), dentry);
1299 /* XXX: cut'n'paste from simple_fill_super; figure out if we could share
1301 static int nfsdfs_create_files(struct dentry *root,
1302 const struct tree_descr *files,
1303 struct dentry **fdentries)
1305 struct inode *dir = d_inode(root);
1306 struct inode *inode;
1307 struct dentry *dentry;
1311 for (i = 0; files->name && files->name[0]; i++, files++) {
1312 dentry = d_alloc_name(root, files->name);
1315 inode = nfsd_get_inode(d_inode(root)->i_sb,
1316 S_IFREG | files->mode);
1321 inode->i_fop = files->ops;
1322 inode->i_private = __get_nfsdfs_client(dir);
1323 d_add(dentry, inode);
1324 fsnotify_create(dir, dentry);
1326 fdentries[i] = dentry;
1331 nfsdfs_remove_files(root);
1336 /* on success, returns positive number unique to that client. */
1337 struct dentry *nfsd_client_mkdir(struct nfsd_net *nn,
1338 struct nfsdfs_client *ncl, u32 id,
1339 const struct tree_descr *files,
1340 struct dentry **fdentries)
1342 struct dentry *dentry;
1346 sprintf(name, "%u", id);
1348 dentry = nfsd_mkdir(nn->nfsd_client_dir, ncl, name);
1349 if (IS_ERR(dentry)) /* XXX: tossing errors? */
1351 ret = nfsdfs_create_files(dentry, files, fdentries);
1353 nfsd_client_rmdir(dentry);
1359 /* Taken from __rpc_rmdir: */
1360 void nfsd_client_rmdir(struct dentry *dentry)
1362 struct inode *dir = d_inode(dentry->d_parent);
1363 struct inode *inode = d_inode(dentry);
1367 nfsdfs_remove_files(dentry);
1370 ret = simple_rmdir(dir, dentry);
1373 fsnotify_rmdir(dir, dentry);
1378 static int nfsd_fill_super(struct super_block *sb, struct fs_context *fc)
1380 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
1382 struct dentry *dentry;
1385 static const struct tree_descr nfsd_files[] = {
1386 [NFSD_List] = {"exports", &exports_nfsd_operations, S_IRUGO},
1387 /* Per-export io stats use same ops as exports file */
1388 [NFSD_Export_Stats] = {"export_stats", &exports_nfsd_operations, S_IRUGO},
1389 [NFSD_Export_features] = {"export_features",
1390 &export_features_fops, S_IRUGO},
1391 [NFSD_FO_UnlockIP] = {"unlock_ip",
1392 &transaction_ops, S_IWUSR|S_IRUSR},
1393 [NFSD_FO_UnlockFS] = {"unlock_filesystem",
1394 &transaction_ops, S_IWUSR|S_IRUSR},
1395 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1396 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
1397 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
1398 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
1399 [NFSD_Reply_Cache_Stats] = {"reply_cache_stats",
1400 &nfsd_reply_cache_stats_fops, S_IRUGO},
1401 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
1402 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
1403 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
1404 [NFSD_MaxConnections] = {"max_connections", &transaction_ops, S_IWUSR|S_IRUGO},
1405 [NFSD_Filecache] = {"filecache", &nfsd_file_cache_stats_fops, S_IRUGO},
1406 #ifdef CONFIG_NFSD_V4
1407 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
1408 [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR},
1409 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
1410 [NFSD_V4EndGrace] = {"v4_end_grace", &transaction_ops, S_IWUSR|S_IRUGO},
1415 ret = simple_fill_super(sb, 0x6e667364, nfsd_files);
1418 _nfsd_symlink(sb->s_root, "supported_krb5_enctypes",
1419 "/proc/net/rpc/gss_krb5_enctypes");
1420 dentry = nfsd_mkdir(sb->s_root, NULL, "clients");
1422 return PTR_ERR(dentry);
1423 nn->nfsd_client_dir = dentry;
1427 static int nfsd_fs_get_tree(struct fs_context *fc)
1429 return get_tree_keyed(fc, nfsd_fill_super, get_net(fc->net_ns));
1432 static void nfsd_fs_free_fc(struct fs_context *fc)
1435 put_net(fc->s_fs_info);
1438 static const struct fs_context_operations nfsd_fs_context_ops = {
1439 .free = nfsd_fs_free_fc,
1440 .get_tree = nfsd_fs_get_tree,
1443 static int nfsd_init_fs_context(struct fs_context *fc)
1445 put_user_ns(fc->user_ns);
1446 fc->user_ns = get_user_ns(fc->net_ns->user_ns);
1447 fc->ops = &nfsd_fs_context_ops;
1451 static void nfsd_umount(struct super_block *sb)
1453 struct net *net = sb->s_fs_info;
1455 nfsd_shutdown_threads(net);
1457 kill_litter_super(sb);
1461 static struct file_system_type nfsd_fs_type = {
1462 .owner = THIS_MODULE,
1464 .init_fs_context = nfsd_init_fs_context,
1465 .kill_sb = nfsd_umount,
1467 MODULE_ALIAS_FS("nfsd");
1469 #ifdef CONFIG_PROC_FS
1471 static int exports_proc_open(struct inode *inode, struct file *file)
1473 return exports_net_open(current->nsproxy->net_ns, file);
1476 static const struct proc_ops exports_proc_ops = {
1477 .proc_open = exports_proc_open,
1478 .proc_read = seq_read,
1479 .proc_lseek = seq_lseek,
1480 .proc_release = seq_release,
1483 static int create_proc_exports_entry(void)
1485 struct proc_dir_entry *entry;
1487 entry = proc_mkdir("fs/nfs", NULL);
1490 entry = proc_create("exports", 0, entry, &exports_proc_ops);
1492 remove_proc_entry("fs/nfs", NULL);
1497 #else /* CONFIG_PROC_FS */
1498 static int create_proc_exports_entry(void)
1504 unsigned int nfsd_net_id;
1507 * nfsd_net_init - Prepare the nfsd_net portion of a new net namespace
1508 * @net: a freshly-created network namespace
1510 * This information stays around as long as the network namespace is
1511 * alive whether or not there is an NFSD instance running in the
1514 * Returns zero on success, or a negative errno otherwise.
1516 static __net_init int nfsd_net_init(struct net *net)
1519 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1521 retval = nfsd_export_init(net);
1523 goto out_export_error;
1524 retval = nfsd_idmap_init(net);
1526 goto out_idmap_error;
1527 retval = nfsd_net_reply_cache_init(nn);
1529 goto out_repcache_error;
1530 nn->nfsd_versions = NULL;
1531 nn->nfsd4_minorversions = NULL;
1532 nfsd4_init_leases_net(nn);
1533 get_random_bytes(&nn->siphash_key, sizeof(nn->siphash_key));
1534 seqlock_init(&nn->writeverf_lock);
1539 nfsd_idmap_shutdown(net);
1541 nfsd_export_shutdown(net);
1547 * nfsd_net_exit - Release the nfsd_net portion of a net namespace
1548 * @net: a network namespace that is about to be destroyed
1551 static __net_exit void nfsd_net_exit(struct net *net)
1553 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1555 nfsd_net_reply_cache_destroy(nn);
1556 nfsd_idmap_shutdown(net);
1557 nfsd_export_shutdown(net);
1558 nfsd_netns_free_versions(nn);
1561 static struct pernet_operations nfsd_net_ops = {
1562 .init = nfsd_net_init,
1563 .exit = nfsd_net_exit,
1565 .size = sizeof(struct nfsd_net),
1568 static int __init init_nfsd(void)
1572 retval = nfsd4_init_slabs();
1575 retval = nfsd4_init_pnfs();
1577 goto out_free_slabs;
1578 retval = nfsd_stat_init(); /* Statistics */
1581 retval = nfsd_drc_slab_create();
1584 nfsd_lockd_init(); /* lockd->nfsd callbacks */
1585 retval = create_proc_exports_entry();
1587 goto out_free_lockd;
1588 retval = register_pernet_subsys(&nfsd_net_ops);
1590 goto out_free_exports;
1591 retval = register_cld_notifier();
1593 goto out_free_subsys;
1594 retval = nfsd4_create_laundry_wq();
1597 retval = register_filesystem(&nfsd_fs_type);
1602 nfsd4_destroy_laundry_wq();
1604 unregister_cld_notifier();
1606 unregister_pernet_subsys(&nfsd_net_ops);
1608 remove_proc_entry("fs/nfs/exports", NULL);
1609 remove_proc_entry("fs/nfs", NULL);
1611 nfsd_lockd_shutdown();
1612 nfsd_drc_slab_free();
1614 nfsd_stat_shutdown();
1622 static void __exit exit_nfsd(void)
1624 unregister_filesystem(&nfsd_fs_type);
1625 nfsd4_destroy_laundry_wq();
1626 unregister_cld_notifier();
1627 unregister_pernet_subsys(&nfsd_net_ops);
1628 nfsd_drc_slab_free();
1629 remove_proc_entry("fs/nfs/exports", NULL);
1630 remove_proc_entry("fs/nfs", NULL);
1631 nfsd_stat_shutdown();
1632 nfsd_lockd_shutdown();
1637 MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1638 MODULE_DESCRIPTION("In-kernel NFS server");
1639 MODULE_LICENSE("GPL");
1640 module_init(init_nfsd)
1641 module_exit(exit_nfsd)