1 // SPDX-License-Identifier: GPL-2.0-only
3 * Syscall interface to knfsd.
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"
30 * We have a single directory with several nodes in it.
43 NFSD_Reply_Cache_Stats,
50 * The below MUST come last. Otherwise we leave a hole in nfsd_files[]
51 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops
63 * write() for these nodes.
65 static ssize_t write_filehandle(struct file *file, char *buf, size_t size);
66 static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size);
67 static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size);
68 static ssize_t write_threads(struct file *file, char *buf, size_t size);
69 static ssize_t write_pool_threads(struct file *file, char *buf, size_t size);
70 static ssize_t write_versions(struct file *file, char *buf, size_t size);
71 static ssize_t write_ports(struct file *file, char *buf, size_t size);
72 static ssize_t write_maxblksize(struct file *file, char *buf, size_t size);
73 static ssize_t write_maxconn(struct file *file, char *buf, size_t size);
75 static ssize_t write_leasetime(struct file *file, char *buf, size_t size);
76 static ssize_t write_gracetime(struct file *file, char *buf, size_t size);
77 static ssize_t write_recoverydir(struct file *file, char *buf, size_t size);
78 static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size);
81 static ssize_t (*const write_op[])(struct file *, char *, size_t) = {
82 [NFSD_Fh] = write_filehandle,
83 [NFSD_FO_UnlockIP] = write_unlock_ip,
84 [NFSD_FO_UnlockFS] = write_unlock_fs,
85 [NFSD_Threads] = write_threads,
86 [NFSD_Pool_Threads] = write_pool_threads,
87 [NFSD_Versions] = write_versions,
88 [NFSD_Ports] = write_ports,
89 [NFSD_MaxBlkSize] = write_maxblksize,
90 [NFSD_MaxConnections] = write_maxconn,
92 [NFSD_Leasetime] = write_leasetime,
93 [NFSD_Gracetime] = write_gracetime,
94 [NFSD_RecoveryDir] = write_recoverydir,
95 [NFSD_V4EndGrace] = write_v4_end_grace,
99 static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
101 ino_t ino = file_inode(file)->i_ino;
105 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
108 data = simple_transaction_get(file, buf, size);
110 return PTR_ERR(data);
112 rv = write_op[ino](file, data, size);
114 simple_transaction_set(file, rv);
120 static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
122 if (! file->private_data) {
123 /* An attempt to read a transaction file without writing
124 * causes a 0-byte write so that the file can return
127 ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos);
131 return simple_transaction_read(file, buf, size, pos);
134 static const struct file_operations transaction_ops = {
135 .write = nfsctl_transaction_write,
136 .read = nfsctl_transaction_read,
137 .release = simple_transaction_release,
138 .llseek = default_llseek,
141 static int exports_net_open(struct net *net, struct file *file)
144 struct seq_file *seq;
145 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
147 err = seq_open(file, &nfs_exports_op);
151 seq = file->private_data;
152 seq->private = nn->svc_export_cache;
156 static int exports_proc_open(struct inode *inode, struct file *file)
158 return exports_net_open(current->nsproxy->net_ns, file);
161 static const struct proc_ops exports_proc_ops = {
162 .proc_open = exports_proc_open,
163 .proc_read = seq_read,
164 .proc_lseek = seq_lseek,
165 .proc_release = seq_release,
168 static int exports_nfsd_open(struct inode *inode, struct file *file)
170 return exports_net_open(inode->i_sb->s_fs_info, file);
173 static const struct file_operations exports_nfsd_operations = {
174 .open = exports_nfsd_open,
177 .release = seq_release,
180 static int export_features_show(struct seq_file *m, void *v)
182 seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS);
186 DEFINE_SHOW_ATTRIBUTE(export_features);
188 static const struct file_operations pool_stats_operations = {
189 .open = nfsd_pool_stats_open,
192 .release = nfsd_pool_stats_release,
195 DEFINE_SHOW_ATTRIBUTE(nfsd_reply_cache_stats);
197 DEFINE_SHOW_ATTRIBUTE(nfsd_file_cache_stats);
199 /*----------------------------------------------------------------------------*/
201 * payload - write methods
204 static inline struct net *netns(struct file *file)
206 return file_inode(file)->i_sb->s_fs_info;
210 * write_unlock_ip - Release all locks used by a client
215 * buf: '\n'-terminated C string containing a
216 * presentation format IP address
217 * size: length of C string in @buf
219 * On success: returns zero if all specified locks were released;
220 * returns one if one or more locks were not released
221 * On error: return code is negative errno value
223 static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
225 struct sockaddr_storage address;
226 struct sockaddr *sap = (struct sockaddr *)&address;
227 size_t salen = sizeof(address);
229 struct net *net = netns(file);
235 if (buf[size-1] != '\n')
239 if (qword_get(&buf, fo_path, size) < 0)
242 if (rpc_pton(net, fo_path, size, sap, salen) == 0)
245 return nlmsvc_unlock_all_by_ip(sap);
249 * write_unlock_fs - Release all locks on a local file system
254 * buf: '\n'-terminated C string containing the
255 * absolute pathname of a local file system
256 * size: length of C string in @buf
258 * On success: returns zero if all specified locks were released;
259 * returns one if one or more locks were not released
260 * On error: return code is negative errno value
262 static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
272 if (buf[size-1] != '\n')
276 if (qword_get(&buf, fo_path, size) < 0)
279 error = kern_path(fo_path, 0, &path);
284 * XXX: Needs better sanity checking. Otherwise we could end up
285 * releasing locks on the wrong file system.
288 * 1. Does the path refer to a directory?
289 * 2. Is that directory a mount point, or
290 * 3. Is that directory the root of an exported file system?
292 error = nlmsvc_unlock_all_by_sb(path.dentry->d_sb);
299 * write_filehandle - Get a variable-length NFS file handle by path
301 * On input, the buffer contains a '\n'-terminated C string comprised of
302 * three alphanumeric words separated by whitespace. The string may
303 * contain escape sequences.
307 * domain: client domain name
308 * path: export pathname
309 * maxsize: numeric maximum size of
311 * size: length of C string in @buf
313 * On success: passed-in buffer filled with '\n'-terminated C
314 * string containing a ASCII hex text version
315 * of the NFS file handle;
316 * return code is the size in bytes of the string
317 * On error: return code is negative errno value
319 static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
325 struct auth_domain *dom;
331 if (buf[size-1] != '\n')
336 len = qword_get(&mesg, dname, size);
341 len = qword_get(&mesg, path, size);
345 len = get_int(&mesg, &maxsize);
349 if (maxsize < NFS_FHSIZE)
351 maxsize = min(maxsize, NFS3_FHSIZE);
353 if (qword_get(&mesg, mesg, size)>0)
356 /* we have all the words, they are in buf.. */
357 dom = unix_domain_find(dname);
361 len = exp_rootfh(netns(file), dom, path, &fh, maxsize);
362 auth_domain_put(dom);
367 len = SIMPLE_TRANSACTION_LIMIT;
368 qword_addhex(&mesg, &len, fh.fh_raw, fh.fh_size);
374 * write_threads - Start NFSD, or report the current number of running threads
380 * On success: passed-in buffer filled with '\n'-terminated C
381 * string numeric value representing the number of
382 * running NFSD threads;
383 * return code is the size in bytes of the string
384 * On error: return code is zero
389 * buf: C string containing an unsigned
390 * integer value representing the
391 * number of NFSD threads to start
392 * size: non-zero length of C string in @buf
394 * On success: NFS service is started;
395 * passed-in buffer filled with '\n'-terminated C
396 * string numeric value representing the number of
397 * running NFSD threads;
398 * return code is the size in bytes of the string
399 * On error: return code is zero or a negative errno value
401 static ssize_t write_threads(struct file *file, char *buf, size_t size)
405 struct net *net = netns(file);
409 rv = get_int(&mesg, &newthreads);
414 rv = nfsd_svc(newthreads, net, file->f_cred);
418 rv = nfsd_nrthreads(net);
420 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
424 * write_pool_threads - Set or report the current number of threads per pool
433 * buf: C string containing whitespace-
434 * separated unsigned integer values
435 * representing the number of NFSD
436 * threads to start in each pool
437 * size: non-zero length of C string in @buf
439 * On success: passed-in buffer filled with '\n'-terminated C
440 * string containing integer values representing the
441 * number of NFSD threads in each pool;
442 * return code is the size in bytes of the string
443 * On error: return code is zero or a negative errno value
445 static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
447 /* if size > 0, look for an array of number of threads per node
448 * and apply them then write out number of threads per node as reply
456 struct net *net = netns(file);
458 mutex_lock(&nfsd_mutex);
459 npools = nfsd_nrpools(net);
462 * NFS is shut down. The admin can start it by
463 * writing to the threads file but NOT the pool_threads
464 * file, sorry. Report zero threads.
466 mutex_unlock(&nfsd_mutex);
471 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
473 if (nthreads == NULL)
477 for (i = 0; i < npools; i++) {
478 rv = get_int(&mesg, &nthreads[i]);
480 break; /* fewer numbers than pools */
482 goto out_free; /* syntax error */
487 rv = nfsd_set_nrthreads(i, nthreads, net);
492 rv = nfsd_get_nrthreads(npools, nthreads, net);
497 size = SIMPLE_TRANSACTION_LIMIT;
498 for (i = 0; i < npools && size > 0; i++) {
499 snprintf(mesg, size, "%d%c", nthreads[i], (i == npools-1 ? '\n' : ' '));
507 mutex_unlock(&nfsd_mutex);
512 nfsd_print_version_support(struct nfsd_net *nn, char *buf, int remaining,
513 const char *sep, unsigned vers, int minor)
515 const char *format = minor < 0 ? "%s%c%u" : "%s%c%u.%u";
516 bool supported = !!nfsd_vers(nn, vers, NFSD_TEST);
518 if (vers == 4 && minor >= 0 &&
519 !nfsd_minorversion(nn, minor, NFSD_TEST))
521 if (minor == 0 && supported)
523 * special case for backward compatability.
524 * +4.0 is never reported, it is implied by
525 * +4, unless -4.0 is present.
528 return snprintf(buf, remaining, format, sep,
529 supported ? '+' : '-', vers, minor);
532 static ssize_t __write_versions(struct file *file, char *buf, size_t size)
535 char *vers, *minorp, sign;
536 int len, num, remaining;
539 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
543 /* Cannot change versions without updating
544 * nn->nfsd_serv->sv_xdrsize, and reallocing
545 * rq_argp and rq_resp
548 if (buf[size-1] != '\n')
553 len = qword_get(&mesg, vers, size);
554 if (len <= 0) return -EINVAL;
559 if (sign == '+' || sign == '-')
560 num = simple_strtol((vers+1), &minorp, 0);
562 num = simple_strtol(vers, &minorp, 0);
563 if (*minorp == '.') {
566 if (kstrtouint(minorp+1, 0, &minor) < 0)
570 cmd = sign == '-' ? NFSD_CLEAR : NFSD_SET;
572 #ifdef CONFIG_NFSD_V2
576 nfsd_vers(nn, num, cmd);
579 if (*minorp == '.') {
580 if (nfsd_minorversion(nn, minor, cmd) < 0)
582 } else if ((cmd == NFSD_SET) != nfsd_vers(nn, num, NFSD_TEST)) {
584 * Either we have +4 and no minors are enabled,
585 * or we have -4 and at least one minor is enabled.
586 * In either case, propagate 'cmd' to all minors.
589 while (nfsd_minorversion(nn, minor, cmd) >= 0)
594 /* Ignore requests to disable non-existent versions */
599 } while ((len = qword_get(&mesg, vers, size)) > 0);
600 /* If all get turned off, turn them back on, as
601 * having no versions is BAD
603 nfsd_reset_versions(nn);
606 /* Now write current state into reply buffer */
608 remaining = SIMPLE_TRANSACTION_LIMIT;
609 for (num=2 ; num <= 4 ; num++) {
611 if (!nfsd_vers(nn, num, NFSD_AVAIL))
616 len = nfsd_print_version_support(nn, buf, remaining,
618 if (len >= remaining)
626 } while (num == 4 && minor <= NFSD_SUPPORTED_MINOR_VERSION);
629 len = snprintf(buf, remaining, "\n");
630 if (len >= remaining)
636 * write_versions - Set or report the available NFS protocol versions
642 * On success: passed-in buffer filled with '\n'-terminated C
643 * string containing positive or negative integer
644 * values representing the current status of each
646 * return code is the size in bytes of the string
647 * On error: return code is zero or a negative errno value
652 * buf: C string containing whitespace-
653 * separated positive or negative
654 * integer values representing NFS
655 * protocol versions to enable ("+n")
657 * size: non-zero length of C string in @buf
659 * On success: status of zero or more protocol versions has
660 * been updated; passed-in buffer filled with
661 * '\n'-terminated C string containing positive
662 * or negative integer values representing the
663 * current status of each protocol version;
664 * return code is the size in bytes of the string
665 * On error: return code is zero or a negative errno value
667 static ssize_t write_versions(struct file *file, char *buf, size_t size)
671 mutex_lock(&nfsd_mutex);
672 rv = __write_versions(file, buf, size);
673 mutex_unlock(&nfsd_mutex);
678 * Zero-length write. Return a list of NFSD's current listener
681 static ssize_t __write_ports_names(char *buf, struct net *net)
683 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
685 if (nn->nfsd_serv == NULL)
687 return svc_xprt_names(nn->nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
691 * A single 'fd' number was written, in which case it must be for
692 * a socket of a supported family/protocol, and we use it as an
695 static ssize_t __write_ports_addfd(char *buf, struct net *net, const struct cred *cred)
699 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
701 err = get_int(&mesg, &fd);
702 if (err != 0 || fd < 0)
705 if (svc_alien_sock(net, fd)) {
706 printk(KERN_ERR "%s: socket net is different to NFSd's one\n", __func__);
710 err = nfsd_create_serv(net);
714 err = svc_addsock(nn->nfsd_serv, fd, buf, SIMPLE_TRANSACTION_LIMIT, cred);
717 !nn->nfsd_serv->sv_nrthreads && !xchg(&nn->keep_active, 1))
718 svc_get(nn->nfsd_serv);
725 * A transport listener is added by writing it's transport name and
728 static ssize_t __write_ports_addxprt(char *buf, struct net *net, const struct cred *cred)
731 struct svc_xprt *xprt;
733 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
735 if (sscanf(buf, "%15s %5u", transport, &port) != 2)
738 if (port < 1 || port > USHRT_MAX)
741 err = nfsd_create_serv(net);
745 err = svc_xprt_create(nn->nfsd_serv, transport, net,
746 PF_INET, port, SVC_SOCK_ANONYMOUS, cred);
750 err = svc_xprt_create(nn->nfsd_serv, transport, net,
751 PF_INET6, port, SVC_SOCK_ANONYMOUS, cred);
752 if (err < 0 && err != -EAFNOSUPPORT)
755 if (!nn->nfsd_serv->sv_nrthreads && !xchg(&nn->keep_active, 1))
756 svc_get(nn->nfsd_serv);
761 xprt = svc_find_xprt(nn->nfsd_serv, transport, net, PF_INET, port);
763 svc_xprt_close(xprt);
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 /* force bsize into allowed range and
874 * required alignment.
876 bsize = max_t(int, bsize, 1024);
877 bsize = min_t(int, bsize, NFSSVC_MAXBLKSIZE);
879 mutex_lock(&nfsd_mutex);
881 mutex_unlock(&nfsd_mutex);
884 nfsd_max_blksize = bsize;
885 mutex_unlock(&nfsd_mutex);
888 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
893 * write_maxconn - Set or report the current max number of connections
901 * buf: C string containing an unsigned
902 * integer value representing the new
903 * number of max connections
904 * size: non-zero length of C string in @buf
906 * On success: passed-in buffer filled with '\n'-terminated C string
907 * containing numeric value of max_connections setting
908 * for this net namespace;
909 * return code is the size in bytes of the string
910 * On error: return code is zero or a negative errno value
912 static ssize_t write_maxconn(struct file *file, char *buf, size_t size)
915 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
916 unsigned int maxconn = nn->max_connections;
919 int rv = get_uint(&mesg, &maxconn);
923 nn->max_connections = maxconn;
926 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%u\n", maxconn);
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)
939 rv = get_int(&mesg, &i);
943 * Some sanity checking. We don't have a reason for
944 * these particular numbers, but problems with the
946 * - Too short: the briefest network outage may
947 * cause clients to lose all their locks. Also,
948 * the frequent polling may be wasteful.
949 * - Too long: do you really want reboot recovery
950 * to take more than an hour? Or to make other
951 * clients wait an hour before being able to
952 * revoke a dead client's locks?
954 if (i < 10 || i > 3600)
959 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%lld\n", *time);
962 static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size,
963 time64_t *time, struct nfsd_net *nn)
967 mutex_lock(&nfsd_mutex);
968 rv = __nfsd4_write_time(file, buf, size, time, nn);
969 mutex_unlock(&nfsd_mutex);
974 * write_leasetime - Set or report the current NFSv4 lease time
983 * buf: C string containing an unsigned
984 * integer value representing the new
985 * NFSv4 lease expiry time
986 * size: non-zero length of C string in @buf
988 * On success: passed-in buffer filled with '\n'-terminated C
989 * string containing unsigned integer value of the
990 * current lease expiry time;
991 * return code is the size in bytes of the string
992 * On error: return code is zero or a negative errno value
994 static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
996 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
997 return nfsd4_write_time(file, buf, size, &nn->nfsd4_lease, nn);
1001 * write_gracetime - Set or report current NFSv4 grace period time
1003 * As above, but sets the time of the NFSv4 grace period.
1005 * Note this should never be set to less than the *previous*
1006 * lease-period time, but we don't try to enforce this. (In the common
1007 * case (a new boot), we don't know what the previous lease time was
1010 static ssize_t write_gracetime(struct file *file, char *buf, size_t size)
1012 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1013 return nfsd4_write_time(file, buf, size, &nn->nfsd4_grace, nn);
1016 static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size,
1017 struct nfsd_net *nn)
1026 if (size > PATH_MAX || buf[size-1] != '\n')
1031 len = qword_get(&mesg, recdir, size);
1035 status = nfs4_reset_recoverydir(recdir);
1040 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n",
1041 nfs4_recoverydir());
1045 * write_recoverydir - Set or report the pathname of the recovery directory
1054 * buf: C string containing the pathname
1055 * of the directory on a local file
1056 * system containing permanent NFSv4
1058 * size: non-zero length of C string in @buf
1060 * On success: passed-in buffer filled with '\n'-terminated C string
1061 * containing the current recovery pathname setting;
1062 * return code is the size in bytes of the string
1063 * On error: return code is zero or a negative errno value
1065 static ssize_t write_recoverydir(struct file *file, char *buf, size_t size)
1068 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1070 mutex_lock(&nfsd_mutex);
1071 rv = __write_recoverydir(file, buf, size, nn);
1072 mutex_unlock(&nfsd_mutex);
1077 * write_v4_end_grace - release grace period for nfsd's v4.x lock manager
1086 * size: non-zero length of C string in @buf
1088 * passed-in buffer filled with "Y" or "N" with a newline
1089 * and NULL-terminated C string. This indicates whether
1090 * the grace period has ended in the current net
1091 * namespace. Return code is the size in bytes of the
1092 * string. Writing a string that starts with 'Y', 'y', or
1093 * '1' to the file will end the grace period for nfsd's v4
1096 static ssize_t write_v4_end_grace(struct file *file, char *buf, size_t size)
1098 struct nfsd_net *nn = net_generic(netns(file), nfsd_net_id);
1107 nfsd4_end_grace(nn);
1114 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%c\n",
1115 nn->grace_ended ? 'Y' : 'N');
1120 /*----------------------------------------------------------------------------*/
1122 * populating the filesystem.
1125 /* Basically copying rpc_get_inode. */
1126 static struct inode *nfsd_get_inode(struct super_block *sb, umode_t mode)
1128 struct inode *inode = new_inode(sb);
1131 /* Following advice from simple_fill_super documentation: */
1132 inode->i_ino = iunique(sb, NFSD_MaxReserved);
1133 inode->i_mode = mode;
1134 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
1135 switch (mode & S_IFMT) {
1137 inode->i_fop = &simple_dir_operations;
1138 inode->i_op = &simple_dir_inode_operations;
1142 inode->i_op = &simple_symlink_inode_operations;
1150 static int __nfsd_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode, struct nfsdfs_client *ncl)
1152 struct inode *inode;
1154 inode = nfsd_get_inode(dir->i_sb, mode);
1158 inode->i_private = ncl;
1159 kref_get(&ncl->cl_ref);
1161 d_add(dentry, inode);
1163 fsnotify_mkdir(dir, dentry);
1167 static struct dentry *nfsd_mkdir(struct dentry *parent, struct nfsdfs_client *ncl, char *name)
1169 struct inode *dir = parent->d_inode;
1170 struct dentry *dentry;
1174 dentry = d_alloc_name(parent, name);
1177 ret = __nfsd_mkdir(d_inode(parent), dentry, S_IFDIR | 0600, ncl);
1185 dentry = ERR_PTR(ret);
1189 #if IS_ENABLED(CONFIG_SUNRPC_GSS)
1190 static int __nfsd_symlink(struct inode *dir, struct dentry *dentry,
1191 umode_t mode, const char *content)
1193 struct inode *inode;
1195 inode = nfsd_get_inode(dir->i_sb, mode);
1199 inode->i_link = (char *)content;
1200 inode->i_size = strlen(content);
1202 d_add(dentry, inode);
1204 fsnotify_create(dir, dentry);
1209 * @content is assumed to be a NUL-terminated string that lives
1210 * longer than the symlink itself.
1212 static void nfsd_symlink(struct dentry *parent, const char *name,
1213 const char *content)
1215 struct inode *dir = parent->d_inode;
1216 struct dentry *dentry;
1220 dentry = d_alloc_name(parent, name);
1223 ret = __nfsd_symlink(d_inode(parent), dentry, S_IFLNK | 0777, content);
1230 static inline void nfsd_symlink(struct dentry *parent, const char *name,
1231 const char *content)
1237 static void clear_ncl(struct inode *inode)
1239 struct nfsdfs_client *ncl = inode->i_private;
1241 inode->i_private = NULL;
1242 kref_put(&ncl->cl_ref, ncl->cl_release);
1245 static struct nfsdfs_client *__get_nfsdfs_client(struct inode *inode)
1247 struct nfsdfs_client *nc = inode->i_private;
1250 kref_get(&nc->cl_ref);
1254 struct nfsdfs_client *get_nfsdfs_client(struct inode *inode)
1256 struct nfsdfs_client *nc;
1258 inode_lock_shared(inode);
1259 nc = __get_nfsdfs_client(inode);
1260 inode_unlock_shared(inode);
1263 /* from __rpc_unlink */
1264 static void nfsdfs_remove_file(struct inode *dir, struct dentry *dentry)
1268 clear_ncl(d_inode(dentry));
1270 ret = simple_unlink(dir, dentry);
1272 fsnotify_unlink(dir, dentry);
1277 static void nfsdfs_remove_files(struct dentry *root)
1279 struct dentry *dentry, *tmp;
1281 list_for_each_entry_safe(dentry, tmp, &root->d_subdirs, d_child) {
1282 if (!simple_positive(dentry)) {
1283 WARN_ON_ONCE(1); /* I think this can't happen? */
1286 nfsdfs_remove_file(d_inode(root), dentry);
1290 /* XXX: cut'n'paste from simple_fill_super; figure out if we could share
1292 static int nfsdfs_create_files(struct dentry *root,
1293 const struct tree_descr *files,
1294 struct dentry **fdentries)
1296 struct inode *dir = d_inode(root);
1297 struct inode *inode;
1298 struct dentry *dentry;
1302 for (i = 0; files->name && files->name[0]; i++, files++) {
1303 dentry = d_alloc_name(root, files->name);
1306 inode = nfsd_get_inode(d_inode(root)->i_sb,
1307 S_IFREG | files->mode);
1312 inode->i_fop = files->ops;
1313 inode->i_private = __get_nfsdfs_client(dir);
1314 d_add(dentry, inode);
1315 fsnotify_create(dir, dentry);
1317 fdentries[i] = dentry;
1322 nfsdfs_remove_files(root);
1327 /* on success, returns positive number unique to that client. */
1328 struct dentry *nfsd_client_mkdir(struct nfsd_net *nn,
1329 struct nfsdfs_client *ncl, u32 id,
1330 const struct tree_descr *files,
1331 struct dentry **fdentries)
1333 struct dentry *dentry;
1337 sprintf(name, "%u", id);
1339 dentry = nfsd_mkdir(nn->nfsd_client_dir, ncl, name);
1340 if (IS_ERR(dentry)) /* XXX: tossing errors? */
1342 ret = nfsdfs_create_files(dentry, files, fdentries);
1344 nfsd_client_rmdir(dentry);
1350 /* Taken from __rpc_rmdir: */
1351 void nfsd_client_rmdir(struct dentry *dentry)
1353 struct inode *dir = d_inode(dentry->d_parent);
1354 struct inode *inode = d_inode(dentry);
1358 nfsdfs_remove_files(dentry);
1361 ret = simple_rmdir(dir, dentry);
1364 fsnotify_rmdir(dir, dentry);
1369 static int nfsd_fill_super(struct super_block *sb, struct fs_context *fc)
1371 struct nfsd_net *nn = net_generic(current->nsproxy->net_ns,
1373 struct dentry *dentry;
1376 static const struct tree_descr nfsd_files[] = {
1377 [NFSD_List] = {"exports", &exports_nfsd_operations, S_IRUGO},
1378 /* Per-export io stats use same ops as exports file */
1379 [NFSD_Export_Stats] = {"export_stats", &exports_nfsd_operations, S_IRUGO},
1380 [NFSD_Export_features] = {"export_features",
1381 &export_features_fops, S_IRUGO},
1382 [NFSD_FO_UnlockIP] = {"unlock_ip",
1383 &transaction_ops, S_IWUSR|S_IRUSR},
1384 [NFSD_FO_UnlockFS] = {"unlock_filesystem",
1385 &transaction_ops, S_IWUSR|S_IRUSR},
1386 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1387 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
1388 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
1389 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
1390 [NFSD_Reply_Cache_Stats] = {"reply_cache_stats",
1391 &nfsd_reply_cache_stats_fops, S_IRUGO},
1392 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
1393 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
1394 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
1395 [NFSD_MaxConnections] = {"max_connections", &transaction_ops, S_IWUSR|S_IRUGO},
1396 [NFSD_Filecache] = {"filecache", &nfsd_file_cache_stats_fops, S_IRUGO},
1397 #ifdef CONFIG_NFSD_V4
1398 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
1399 [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR},
1400 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
1401 [NFSD_V4EndGrace] = {"v4_end_grace", &transaction_ops, S_IWUSR|S_IRUGO},
1406 ret = simple_fill_super(sb, 0x6e667364, nfsd_files);
1409 nfsd_symlink(sb->s_root, "supported_krb5_enctypes",
1410 "/proc/net/rpc/gss_krb5_enctypes");
1411 dentry = nfsd_mkdir(sb->s_root, NULL, "clients");
1413 return PTR_ERR(dentry);
1414 nn->nfsd_client_dir = dentry;
1418 static int nfsd_fs_get_tree(struct fs_context *fc)
1420 return get_tree_keyed(fc, nfsd_fill_super, get_net(fc->net_ns));
1423 static void nfsd_fs_free_fc(struct fs_context *fc)
1426 put_net(fc->s_fs_info);
1429 static const struct fs_context_operations nfsd_fs_context_ops = {
1430 .free = nfsd_fs_free_fc,
1431 .get_tree = nfsd_fs_get_tree,
1434 static int nfsd_init_fs_context(struct fs_context *fc)
1436 put_user_ns(fc->user_ns);
1437 fc->user_ns = get_user_ns(fc->net_ns->user_ns);
1438 fc->ops = &nfsd_fs_context_ops;
1442 static void nfsd_umount(struct super_block *sb)
1444 struct net *net = sb->s_fs_info;
1446 nfsd_shutdown_threads(net);
1448 kill_litter_super(sb);
1452 static struct file_system_type nfsd_fs_type = {
1453 .owner = THIS_MODULE,
1455 .init_fs_context = nfsd_init_fs_context,
1456 .kill_sb = nfsd_umount,
1458 MODULE_ALIAS_FS("nfsd");
1460 #ifdef CONFIG_PROC_FS
1461 static int create_proc_exports_entry(void)
1463 struct proc_dir_entry *entry;
1465 entry = proc_mkdir("fs/nfs", NULL);
1468 entry = proc_create("exports", 0, entry, &exports_proc_ops);
1470 remove_proc_entry("fs/nfs", NULL);
1475 #else /* CONFIG_PROC_FS */
1476 static int create_proc_exports_entry(void)
1482 unsigned int nfsd_net_id;
1484 static __net_init int nfsd_init_net(struct net *net)
1487 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1489 retval = nfsd_export_init(net);
1491 goto out_export_error;
1492 retval = nfsd_idmap_init(net);
1494 goto out_idmap_error;
1495 nn->nfsd_versions = NULL;
1496 nn->nfsd4_minorversions = NULL;
1497 nfsd4_init_leases_net(nn);
1498 get_random_bytes(&nn->siphash_key, sizeof(nn->siphash_key));
1499 seqlock_init(&nn->writeverf_lock);
1504 nfsd_export_shutdown(net);
1509 static __net_exit void nfsd_exit_net(struct net *net)
1511 nfsd_idmap_shutdown(net);
1512 nfsd_export_shutdown(net);
1513 nfsd_netns_free_versions(net_generic(net, nfsd_net_id));
1516 static struct pernet_operations nfsd_net_ops = {
1517 .init = nfsd_init_net,
1518 .exit = nfsd_exit_net,
1520 .size = sizeof(struct nfsd_net),
1523 static int __init init_nfsd(void)
1527 retval = nfsd4_init_slabs();
1530 retval = nfsd4_init_pnfs();
1532 goto out_free_slabs;
1533 retval = nfsd_stat_init(); /* Statistics */
1536 retval = nfsd_drc_slab_create();
1539 nfsd_lockd_init(); /* lockd->nfsd callbacks */
1540 retval = create_proc_exports_entry();
1542 goto out_free_lockd;
1543 retval = register_pernet_subsys(&nfsd_net_ops);
1545 goto out_free_exports;
1546 retval = register_cld_notifier();
1548 goto out_free_subsys;
1549 retval = nfsd4_create_laundry_wq();
1552 retval = register_filesystem(&nfsd_fs_type);
1557 nfsd4_destroy_laundry_wq();
1559 unregister_cld_notifier();
1561 unregister_pernet_subsys(&nfsd_net_ops);
1563 remove_proc_entry("fs/nfs/exports", NULL);
1564 remove_proc_entry("fs/nfs", NULL);
1566 nfsd_lockd_shutdown();
1567 nfsd_drc_slab_free();
1569 nfsd_stat_shutdown();
1577 static void __exit exit_nfsd(void)
1579 unregister_filesystem(&nfsd_fs_type);
1580 nfsd4_destroy_laundry_wq();
1581 unregister_cld_notifier();
1582 unregister_pernet_subsys(&nfsd_net_ops);
1583 nfsd_drc_slab_free();
1584 remove_proc_entry("fs/nfs/exports", NULL);
1585 remove_proc_entry("fs/nfs", NULL);
1586 nfsd_stat_shutdown();
1587 nfsd_lockd_shutdown();
1593 MODULE_LICENSE("GPL");
1594 module_init(init_nfsd)
1595 module_exit(exit_nfsd)