2 * Syscall interface to knfsd.
4 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 #include <linux/slab.h>
8 #include <linux/namei.h>
9 #include <linux/ctype.h>
11 #include <linux/sunrpc/svcsock.h>
12 #include <linux/lockd/lockd.h>
13 #include <linux/sunrpc/addr.h>
14 #include <linux/sunrpc/gss_api.h>
15 #include <linux/sunrpc/gss_krb5_enctypes.h>
16 #include <linux/sunrpc/rpc_pipe_fs.h>
17 #include <linux/module.h>
26 * We have a single directory with several nodes in it.
38 NFSD_Reply_Cache_Stats
,
43 NFSD_SupportedEnctypes
,
45 * The below MUST come last. Otherwise we leave a hole in nfsd_files[]
46 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops
57 * write() for these nodes.
59 static ssize_t
write_filehandle(struct file
*file
, char *buf
, size_t size
);
60 static ssize_t
write_unlock_ip(struct file
*file
, char *buf
, size_t size
);
61 static ssize_t
write_unlock_fs(struct file
*file
, char *buf
, size_t size
);
62 static ssize_t
write_threads(struct file
*file
, char *buf
, size_t size
);
63 static ssize_t
write_pool_threads(struct file
*file
, char *buf
, size_t size
);
64 static ssize_t
write_versions(struct file
*file
, char *buf
, size_t size
);
65 static ssize_t
write_ports(struct file
*file
, char *buf
, size_t size
);
66 static ssize_t
write_maxblksize(struct file
*file
, char *buf
, size_t size
);
67 static ssize_t
write_maxconn(struct file
*file
, char *buf
, size_t size
);
69 static ssize_t
write_leasetime(struct file
*file
, char *buf
, size_t size
);
70 static ssize_t
write_gracetime(struct file
*file
, char *buf
, size_t size
);
71 static ssize_t
write_recoverydir(struct file
*file
, char *buf
, size_t size
);
72 static ssize_t
write_v4_end_grace(struct file
*file
, char *buf
, size_t size
);
75 static ssize_t (*write_op
[])(struct file
*, char *, size_t) = {
76 [NFSD_Fh
] = write_filehandle
,
77 [NFSD_FO_UnlockIP
] = write_unlock_ip
,
78 [NFSD_FO_UnlockFS
] = write_unlock_fs
,
79 [NFSD_Threads
] = write_threads
,
80 [NFSD_Pool_Threads
] = write_pool_threads
,
81 [NFSD_Versions
] = write_versions
,
82 [NFSD_Ports
] = write_ports
,
83 [NFSD_MaxBlkSize
] = write_maxblksize
,
84 [NFSD_MaxConnections
] = write_maxconn
,
86 [NFSD_Leasetime
] = write_leasetime
,
87 [NFSD_Gracetime
] = write_gracetime
,
88 [NFSD_RecoveryDir
] = write_recoverydir
,
89 [NFSD_V4EndGrace
] = write_v4_end_grace
,
93 static ssize_t
nfsctl_transaction_write(struct file
*file
, const char __user
*buf
, size_t size
, loff_t
*pos
)
95 ino_t ino
= file_inode(file
)->i_ino
;
99 if (ino
>= ARRAY_SIZE(write_op
) || !write_op
[ino
])
102 data
= simple_transaction_get(file
, buf
, size
);
104 return PTR_ERR(data
);
106 rv
= write_op
[ino
](file
, data
, size
);
108 simple_transaction_set(file
, rv
);
114 static ssize_t
nfsctl_transaction_read(struct file
*file
, char __user
*buf
, size_t size
, loff_t
*pos
)
116 if (! file
->private_data
) {
117 /* An attempt to read a transaction file without writing
118 * causes a 0-byte write so that the file can return
121 ssize_t rv
= nfsctl_transaction_write(file
, buf
, 0, pos
);
125 return simple_transaction_read(file
, buf
, size
, pos
);
128 static const struct file_operations transaction_ops
= {
129 .write
= nfsctl_transaction_write
,
130 .read
= nfsctl_transaction_read
,
131 .release
= simple_transaction_release
,
132 .llseek
= default_llseek
,
135 static int exports_net_open(struct net
*net
, struct file
*file
)
138 struct seq_file
*seq
;
139 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
141 err
= seq_open(file
, &nfs_exports_op
);
145 seq
= file
->private_data
;
146 seq
->private = nn
->svc_export_cache
;
150 static int exports_proc_open(struct inode
*inode
, struct file
*file
)
152 return exports_net_open(current
->nsproxy
->net_ns
, file
);
155 static const struct file_operations exports_proc_operations
= {
156 .open
= exports_proc_open
,
159 .release
= seq_release
,
160 .owner
= THIS_MODULE
,
163 static int exports_nfsd_open(struct inode
*inode
, struct file
*file
)
165 return exports_net_open(inode
->i_sb
->s_fs_info
, file
);
168 static const struct file_operations exports_nfsd_operations
= {
169 .open
= exports_nfsd_open
,
172 .release
= seq_release
,
173 .owner
= THIS_MODULE
,
176 static int export_features_show(struct seq_file
*m
, void *v
)
178 seq_printf(m
, "0x%x 0x%x\n", NFSEXP_ALLFLAGS
, NFSEXP_SECINFO_FLAGS
);
182 static int export_features_open(struct inode
*inode
, struct file
*file
)
184 return single_open(file
, export_features_show
, NULL
);
187 static const struct file_operations export_features_operations
= {
188 .open
= export_features_open
,
191 .release
= single_release
,
194 #if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
195 static int supported_enctypes_show(struct seq_file
*m
, void *v
)
197 seq_printf(m
, KRB5_SUPPORTED_ENCTYPES
);
201 static int supported_enctypes_open(struct inode
*inode
, struct file
*file
)
203 return single_open(file
, supported_enctypes_show
, NULL
);
206 static const struct file_operations supported_enctypes_ops
= {
207 .open
= supported_enctypes_open
,
210 .release
= single_release
,
212 #endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
214 static const struct file_operations pool_stats_operations
= {
215 .open
= nfsd_pool_stats_open
,
218 .release
= nfsd_pool_stats_release
,
219 .owner
= THIS_MODULE
,
222 static struct file_operations reply_cache_stats_operations
= {
223 .open
= nfsd_reply_cache_stats_open
,
226 .release
= single_release
,
229 /*----------------------------------------------------------------------------*/
231 * payload - write methods
236 * write_unlock_ip - Release all locks used by a client
241 * buf: '\n'-terminated C string containing a
242 * presentation format IP address
243 * size: length of C string in @buf
245 * On success: returns zero if all specified locks were released;
246 * returns one if one or more locks were not released
247 * On error: return code is negative errno value
249 static ssize_t
write_unlock_ip(struct file
*file
, char *buf
, size_t size
)
251 struct sockaddr_storage address
;
252 struct sockaddr
*sap
= (struct sockaddr
*)&address
;
253 size_t salen
= sizeof(address
);
255 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
261 if (buf
[size
-1] != '\n')
265 if (qword_get(&buf
, fo_path
, size
) < 0)
268 if (rpc_pton(net
, fo_path
, size
, sap
, salen
) == 0)
271 return nlmsvc_unlock_all_by_ip(sap
);
275 * write_unlock_fs - Release all locks on a local file system
280 * buf: '\n'-terminated C string containing the
281 * absolute pathname of a local file system
282 * size: length of C string in @buf
284 * On success: returns zero if all specified locks were released;
285 * returns one if one or more locks were not released
286 * On error: return code is negative errno value
288 static ssize_t
write_unlock_fs(struct file
*file
, char *buf
, size_t size
)
298 if (buf
[size
-1] != '\n')
302 if (qword_get(&buf
, fo_path
, size
) < 0)
305 error
= kern_path(fo_path
, 0, &path
);
310 * XXX: Needs better sanity checking. Otherwise we could end up
311 * releasing locks on the wrong file system.
314 * 1. Does the path refer to a directory?
315 * 2. Is that directory a mount point, or
316 * 3. Is that directory the root of an exported file system?
318 error
= nlmsvc_unlock_all_by_sb(path
.dentry
->d_sb
);
325 * write_filehandle - Get a variable-length NFS file handle by path
327 * On input, the buffer contains a '\n'-terminated C string comprised of
328 * three alphanumeric words separated by whitespace. The string may
329 * contain escape sequences.
333 * domain: client domain name
334 * path: export pathname
335 * maxsize: numeric maximum size of
337 * size: length of C string in @buf
339 * On success: passed-in buffer filled with '\n'-terminated C
340 * string containing a ASCII hex text version
341 * of the NFS file handle;
342 * return code is the size in bytes of the string
343 * On error: return code is negative errno value
345 static ssize_t
write_filehandle(struct file
*file
, char *buf
, size_t size
)
348 int uninitialized_var(maxsize
);
351 struct auth_domain
*dom
;
353 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
358 if (buf
[size
-1] != '\n')
363 len
= qword_get(&mesg
, dname
, size
);
368 len
= qword_get(&mesg
, path
, size
);
372 len
= get_int(&mesg
, &maxsize
);
376 if (maxsize
< NFS_FHSIZE
)
378 maxsize
= min(maxsize
, NFS3_FHSIZE
);
380 if (qword_get(&mesg
, mesg
, size
)>0)
383 /* we have all the words, they are in buf.. */
384 dom
= unix_domain_find(dname
);
388 len
= exp_rootfh(net
, dom
, path
, &fh
, maxsize
);
389 auth_domain_put(dom
);
394 len
= SIMPLE_TRANSACTION_LIMIT
;
395 qword_addhex(&mesg
, &len
, (char*)&fh
.fh_base
, fh
.fh_size
);
401 * write_threads - Start NFSD, or report the current number of running threads
407 * On success: passed-in buffer filled with '\n'-terminated C
408 * string numeric value representing the number of
409 * running NFSD threads;
410 * return code is the size in bytes of the string
411 * On error: return code is zero
416 * buf: C string containing an unsigned
417 * integer value representing the
418 * number of NFSD threads to start
419 * size: non-zero length of C string in @buf
421 * On success: NFS service is started;
422 * passed-in buffer filled with '\n'-terminated C
423 * string numeric value representing the number of
424 * running NFSD threads;
425 * return code is the size in bytes of the string
426 * On error: return code is zero or a negative errno value
428 static ssize_t
write_threads(struct file
*file
, char *buf
, size_t size
)
432 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
436 rv
= get_int(&mesg
, &newthreads
);
441 rv
= nfsd_svc(newthreads
, net
);
445 rv
= nfsd_nrthreads(net
);
447 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%d\n", rv
);
451 * write_pool_threads - Set or report the current number of threads per pool
460 * buf: C string containing whitespace-
461 * separated unsigned integer values
462 * representing the number of NFSD
463 * threads to start in each pool
464 * size: non-zero length of C string in @buf
466 * On success: passed-in buffer filled with '\n'-terminated C
467 * string containing integer values representing the
468 * number of NFSD threads in each pool;
469 * return code is the size in bytes of the string
470 * On error: return code is zero or a negative errno value
472 static ssize_t
write_pool_threads(struct file
*file
, char *buf
, size_t size
)
474 /* if size > 0, look for an array of number of threads per node
475 * and apply them then write out number of threads per node as reply
483 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
485 mutex_lock(&nfsd_mutex
);
486 npools
= nfsd_nrpools(net
);
489 * NFS is shut down. The admin can start it by
490 * writing to the threads file but NOT the pool_threads
491 * file, sorry. Report zero threads.
493 mutex_unlock(&nfsd_mutex
);
498 nthreads
= kcalloc(npools
, sizeof(int), GFP_KERNEL
);
500 if (nthreads
== NULL
)
504 for (i
= 0; i
< npools
; i
++) {
505 rv
= get_int(&mesg
, &nthreads
[i
]);
507 break; /* fewer numbers than pools */
509 goto out_free
; /* syntax error */
514 rv
= nfsd_set_nrthreads(i
, nthreads
, net
);
519 rv
= nfsd_get_nrthreads(npools
, nthreads
, net
);
524 size
= SIMPLE_TRANSACTION_LIMIT
;
525 for (i
= 0; i
< npools
&& size
> 0; i
++) {
526 snprintf(mesg
, size
, "%d%c", nthreads
[i
], (i
== npools
-1 ? '\n' : ' '));
534 mutex_unlock(&nfsd_mutex
);
538 static ssize_t
__write_versions(struct file
*file
, char *buf
, size_t size
)
541 char *vers
, *minorp
, sign
;
542 int len
, num
, remaining
;
546 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
547 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
551 /* Cannot change versions without updating
552 * nn->nfsd_serv->sv_xdrsize, and reallocing
553 * rq_argp and rq_resp
556 if (buf
[size
-1] != '\n')
561 len
= qword_get(&mesg
, vers
, size
);
562 if (len
<= 0) return -EINVAL
;
565 if (sign
== '+' || sign
== '-')
566 num
= simple_strtol((vers
+1), &minorp
, 0);
568 num
= simple_strtol(vers
, &minorp
, 0);
569 if (*minorp
== '.') {
572 minor
= simple_strtoul(minorp
+1, NULL
, 0);
575 if (nfsd_minorversion(minor
, sign
== '-' ?
576 NFSD_CLEAR
: NFSD_SET
) < 0)
584 nfsd_vers(num
, sign
== '-' ? NFSD_CLEAR
: NFSD_SET
);
591 } while ((len
= qword_get(&mesg
, vers
, size
)) > 0);
592 /* If all get turned off, turn them back on, as
593 * having no versions is BAD
595 nfsd_reset_versions();
598 /* Now write current state into reply buffer */
601 remaining
= SIMPLE_TRANSACTION_LIMIT
;
602 for (num
=2 ; num
<= 4 ; num
++)
603 if (nfsd_vers(num
, NFSD_AVAIL
)) {
604 len
= snprintf(buf
, remaining
, "%s%c%d", sep
,
605 nfsd_vers(num
, NFSD_TEST
)?'+':'-',
615 if (nfsd_vers(4, NFSD_AVAIL
))
616 for (minor
= 1; minor
<= NFSD_SUPPORTED_MINOR_VERSION
;
618 len
= snprintf(buf
, remaining
, " %c4.%u",
619 (nfsd_vers(4, NFSD_TEST
) &&
620 nfsd_minorversion(minor
, NFSD_TEST
)) ?
631 len
= snprintf(buf
, remaining
, "\n");
638 * write_versions - Set or report the available NFS protocol versions
644 * On success: passed-in buffer filled with '\n'-terminated C
645 * string containing positive or negative integer
646 * values representing the current status of each
648 * return code is the size in bytes of the string
649 * On error: return code is zero or a negative errno value
654 * buf: C string containing whitespace-
655 * separated positive or negative
656 * integer values representing NFS
657 * protocol versions to enable ("+n")
659 * size: non-zero length of C string in @buf
661 * On success: status of zero or more protocol versions has
662 * been updated; passed-in buffer filled with
663 * '\n'-terminated C string containing positive
664 * or negative integer values representing the
665 * current status of each protocol version;
666 * return code is the size in bytes of the string
667 * On error: return code is zero or a negative errno value
669 static ssize_t
write_versions(struct file
*file
, char *buf
, size_t size
)
673 mutex_lock(&nfsd_mutex
);
674 rv
= __write_versions(file
, buf
, size
);
675 mutex_unlock(&nfsd_mutex
);
680 * Zero-length write. Return a list of NFSD's current listener
683 static ssize_t
__write_ports_names(char *buf
, struct net
*net
)
685 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
687 if (nn
->nfsd_serv
== NULL
)
689 return svc_xprt_names(nn
->nfsd_serv
, buf
, SIMPLE_TRANSACTION_LIMIT
);
693 * A single 'fd' number was written, in which case it must be for
694 * a socket of a supported family/protocol, and we use it as an
697 static ssize_t
__write_ports_addfd(char *buf
, struct net
*net
)
701 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
703 err
= get_int(&mesg
, &fd
);
704 if (err
!= 0 || fd
< 0)
707 if (svc_alien_sock(net
, fd
)) {
708 printk(KERN_ERR
"%s: socket net is different to NFSd's one\n", __func__
);
712 err
= nfsd_create_serv(net
);
716 err
= svc_addsock(nn
->nfsd_serv
, fd
, buf
, SIMPLE_TRANSACTION_LIMIT
);
722 /* Decrease the count, but don't shut down the service */
723 nn
->nfsd_serv
->sv_nrthreads
--;
728 * A transport listener is added by writing it's transport name and
731 static ssize_t
__write_ports_addxprt(char *buf
, struct net
*net
)
734 struct svc_xprt
*xprt
;
736 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
738 if (sscanf(buf
, "%15s %5u", transport
, &port
) != 2)
741 if (port
< 1 || port
> USHRT_MAX
)
744 err
= nfsd_create_serv(net
);
748 err
= svc_create_xprt(nn
->nfsd_serv
, transport
, net
,
749 PF_INET
, port
, SVC_SOCK_ANONYMOUS
);
753 err
= svc_create_xprt(nn
->nfsd_serv
, transport
, net
,
754 PF_INET6
, port
, SVC_SOCK_ANONYMOUS
);
755 if (err
< 0 && err
!= -EAFNOSUPPORT
)
758 /* Decrease the count, but don't shut down the service */
759 nn
->nfsd_serv
->sv_nrthreads
--;
762 xprt
= svc_find_xprt(nn
->nfsd_serv
, transport
, net
, PF_INET
, port
);
764 svc_close_xprt(xprt
);
772 static ssize_t
__write_ports(struct file
*file
, char *buf
, size_t size
,
776 return __write_ports_names(buf
, net
);
779 return __write_ports_addfd(buf
, net
);
782 return __write_ports_addxprt(buf
, net
);
788 * write_ports - Pass a socket file descriptor or transport name to listen on
794 * On success: passed-in buffer filled with a '\n'-terminated C
795 * string containing a whitespace-separated list of
796 * named NFSD listeners;
797 * return code is the size in bytes of the string
798 * On error: return code is zero or a negative errno value
803 * buf: C string containing an unsigned
804 * integer value representing a bound
805 * but unconnected socket that is to be
806 * used as an NFSD listener; listen(3)
807 * must be called for a SOCK_STREAM
808 * socket, otherwise it is ignored
809 * size: non-zero length of C string in @buf
811 * On success: NFS service is started;
812 * passed-in buffer filled with a '\n'-terminated C
813 * string containing a unique alphanumeric name of
815 * return code is the size in bytes of the string
816 * On error: return code is a negative errno value
821 * buf: C string containing a transport
822 * name and an unsigned integer value
823 * representing the port to listen on,
824 * separated by whitespace
825 * size: non-zero length of C string in @buf
827 * On success: returns zero; NFS service is started
828 * On error: return code is a negative errno value
830 static ssize_t
write_ports(struct file
*file
, char *buf
, size_t size
)
833 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
835 mutex_lock(&nfsd_mutex
);
836 rv
= __write_ports(file
, buf
, size
, net
);
837 mutex_unlock(&nfsd_mutex
);
842 int nfsd_max_blksize
;
845 * write_maxblksize - Set or report the current NFS blksize
854 * buf: C string containing an unsigned
855 * integer value representing the new
857 * size: non-zero length of C string in @buf
859 * On success: passed-in buffer filled with '\n'-terminated C string
860 * containing numeric value of the current NFS blksize
862 * return code is the size in bytes of the string
863 * On error: return code is zero or a negative errno value
865 static ssize_t
write_maxblksize(struct file
*file
, char *buf
, size_t size
)
868 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
869 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
873 int rv
= get_int(&mesg
, &bsize
);
876 /* force bsize into allowed range and
877 * required alignment.
879 bsize
= max_t(int, bsize
, 1024);
880 bsize
= min_t(int, bsize
, NFSSVC_MAXBLKSIZE
);
882 mutex_lock(&nfsd_mutex
);
884 mutex_unlock(&nfsd_mutex
);
887 nfsd_max_blksize
= bsize
;
888 mutex_unlock(&nfsd_mutex
);
891 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%d\n",
896 * write_maxconn - Set or report the current max number of connections
904 * buf: C string containing an unsigned
905 * integer value representing the new
906 * number of max connections
907 * size: non-zero length of C string in @buf
909 * On success: passed-in buffer filled with '\n'-terminated C string
910 * containing numeric value of max_connections setting
911 * for this net namespace;
912 * return code is the size in bytes of the string
913 * On error: return code is zero or a negative errno value
915 static ssize_t
write_maxconn(struct file
*file
, char *buf
, size_t size
)
918 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
919 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
920 unsigned int maxconn
= nn
->max_connections
;
923 int rv
= get_uint(&mesg
, &maxconn
);
927 nn
->max_connections
= maxconn
;
930 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%u\n", maxconn
);
933 #ifdef CONFIG_NFSD_V4
934 static ssize_t
__nfsd4_write_time(struct file
*file
, char *buf
, size_t size
,
935 time_t *time
, struct nfsd_net
*nn
)
943 rv
= get_int(&mesg
, &i
);
947 * Some sanity checking. We don't have a reason for
948 * these particular numbers, but problems with the
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?
958 if (i
< 10 || i
> 3600)
963 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%ld\n", *time
);
966 static ssize_t
nfsd4_write_time(struct file
*file
, char *buf
, size_t size
,
967 time_t *time
, struct nfsd_net
*nn
)
971 mutex_lock(&nfsd_mutex
);
972 rv
= __nfsd4_write_time(file
, buf
, size
, time
, nn
);
973 mutex_unlock(&nfsd_mutex
);
978 * write_leasetime - Set or report the current NFSv4 lease time
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
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
998 static ssize_t
write_leasetime(struct file
*file
, char *buf
, size_t size
)
1000 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
1001 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
1002 return nfsd4_write_time(file
, buf
, size
, &nn
->nfsd4_lease
, nn
);
1006 * write_gracetime - Set or report current NFSv4 grace period time
1008 * As above, but sets the time of the NFSv4 grace period.
1010 * Note this should never be set to less than the *previous*
1011 * lease-period time, but we don't try to enforce this. (In the common
1012 * case (a new boot), we don't know what the previous lease time was
1015 static ssize_t
write_gracetime(struct file
*file
, char *buf
, size_t size
)
1017 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
1018 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
1019 return nfsd4_write_time(file
, buf
, size
, &nn
->nfsd4_grace
, nn
);
1022 static ssize_t
__write_recoverydir(struct file
*file
, char *buf
, size_t size
,
1023 struct nfsd_net
*nn
)
1032 if (size
> PATH_MAX
|| buf
[size
-1] != '\n')
1037 len
= qword_get(&mesg
, recdir
, size
);
1041 status
= nfs4_reset_recoverydir(recdir
);
1046 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%s\n",
1047 nfs4_recoverydir());
1051 * write_recoverydir - Set or report the pathname of the recovery directory
1060 * buf: C string containing the pathname
1061 * of the directory on a local file
1062 * system containing permanent NFSv4
1064 * size: non-zero length of C string in @buf
1066 * On success: passed-in buffer filled with '\n'-terminated C string
1067 * containing the current recovery pathname setting;
1068 * return code is the size in bytes of the string
1069 * On error: return code is zero or a negative errno value
1071 static ssize_t
write_recoverydir(struct file
*file
, char *buf
, size_t size
)
1074 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
1075 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
1077 mutex_lock(&nfsd_mutex
);
1078 rv
= __write_recoverydir(file
, buf
, size
, nn
);
1079 mutex_unlock(&nfsd_mutex
);
1084 * write_v4_end_grace - release grace period for nfsd's v4.x lock manager
1093 * size: non-zero length of C string in @buf
1095 * passed-in buffer filled with "Y" or "N" with a newline
1096 * and NULL-terminated C string. This indicates whether
1097 * the grace period has ended in the current net
1098 * namespace. Return code is the size in bytes of the
1099 * string. Writing a string that starts with 'Y', 'y', or
1100 * '1' to the file will end the grace period for nfsd's v4
1103 static ssize_t
write_v4_end_grace(struct file
*file
, char *buf
, size_t size
)
1105 struct net
*net
= file
->f_dentry
->d_sb
->s_fs_info
;
1106 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
1113 nfsd4_end_grace(nn
);
1120 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%c\n",
1121 nn
->grace_ended
? 'Y' : 'N');
1126 /*----------------------------------------------------------------------------*/
1128 * populating the filesystem.
1131 static int nfsd_fill_super(struct super_block
* sb
, void * data
, int silent
)
1133 static struct tree_descr nfsd_files
[] = {
1134 [NFSD_List
] = {"exports", &exports_nfsd_operations
, S_IRUGO
},
1135 [NFSD_Export_features
] = {"export_features",
1136 &export_features_operations
, S_IRUGO
},
1137 [NFSD_FO_UnlockIP
] = {"unlock_ip",
1138 &transaction_ops
, S_IWUSR
|S_IRUSR
},
1139 [NFSD_FO_UnlockFS
] = {"unlock_filesystem",
1140 &transaction_ops
, S_IWUSR
|S_IRUSR
},
1141 [NFSD_Fh
] = {"filehandle", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1142 [NFSD_Threads
] = {"threads", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1143 [NFSD_Pool_Threads
] = {"pool_threads", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1144 [NFSD_Pool_Stats
] = {"pool_stats", &pool_stats_operations
, S_IRUGO
},
1145 [NFSD_Reply_Cache_Stats
] = {"reply_cache_stats", &reply_cache_stats_operations
, S_IRUGO
},
1146 [NFSD_Versions
] = {"versions", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1147 [NFSD_Ports
] = {"portlist", &transaction_ops
, S_IWUSR
|S_IRUGO
},
1148 [NFSD_MaxBlkSize
] = {"max_block_size", &transaction_ops
, S_IWUSR
|S_IRUGO
},
1149 [NFSD_MaxConnections
] = {"max_connections", &transaction_ops
, S_IWUSR
|S_IRUGO
},
1150 #if defined(CONFIG_SUNRPC_GSS) || defined(CONFIG_SUNRPC_GSS_MODULE)
1151 [NFSD_SupportedEnctypes
] = {"supported_krb5_enctypes", &supported_enctypes_ops
, S_IRUGO
},
1152 #endif /* CONFIG_SUNRPC_GSS or CONFIG_SUNRPC_GSS_MODULE */
1153 #ifdef CONFIG_NFSD_V4
1154 [NFSD_Leasetime
] = {"nfsv4leasetime", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1155 [NFSD_Gracetime
] = {"nfsv4gracetime", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1156 [NFSD_RecoveryDir
] = {"nfsv4recoverydir", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1157 [NFSD_V4EndGrace
] = {"v4_end_grace", &transaction_ops
, S_IWUSR
|S_IRUGO
},
1161 struct net
*net
= data
;
1164 ret
= simple_fill_super(sb
, 0x6e667364, nfsd_files
);
1167 sb
->s_fs_info
= get_net(net
);
1171 static struct dentry
*nfsd_mount(struct file_system_type
*fs_type
,
1172 int flags
, const char *dev_name
, void *data
)
1174 return mount_ns(fs_type
, flags
, current
->nsproxy
->net_ns
, nfsd_fill_super
);
1177 static void nfsd_umount(struct super_block
*sb
)
1179 struct net
*net
= sb
->s_fs_info
;
1181 kill_litter_super(sb
);
1185 static struct file_system_type nfsd_fs_type
= {
1186 .owner
= THIS_MODULE
,
1188 .mount
= nfsd_mount
,
1189 .kill_sb
= nfsd_umount
,
1191 MODULE_ALIAS_FS("nfsd");
1193 #ifdef CONFIG_PROC_FS
1194 static int create_proc_exports_entry(void)
1196 struct proc_dir_entry
*entry
;
1198 entry
= proc_mkdir("fs/nfs", NULL
);
1201 entry
= proc_create("exports", 0, entry
,
1202 &exports_proc_operations
);
1204 remove_proc_entry("fs/nfs", NULL
);
1209 #else /* CONFIG_PROC_FS */
1210 static int create_proc_exports_entry(void)
1218 static __net_init
int nfsd_init_net(struct net
*net
)
1221 struct nfsd_net
*nn
= net_generic(net
, nfsd_net_id
);
1223 retval
= nfsd_export_init(net
);
1225 goto out_export_error
;
1226 retval
= nfsd_idmap_init(net
);
1228 goto out_idmap_error
;
1229 nn
->nfsd4_lease
= 90; /* default lease time */
1230 nn
->nfsd4_grace
= 90;
1234 nfsd_export_shutdown(net
);
1239 static __net_exit
void nfsd_exit_net(struct net
*net
)
1241 nfsd_idmap_shutdown(net
);
1242 nfsd_export_shutdown(net
);
1245 static struct pernet_operations nfsd_net_ops
= {
1246 .init
= nfsd_init_net
,
1247 .exit
= nfsd_exit_net
,
1249 .size
= sizeof(struct nfsd_net
),
1252 static int __init
init_nfsd(void)
1255 printk(KERN_INFO
"Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
1257 retval
= register_cld_notifier();
1260 retval
= register_pernet_subsys(&nfsd_net_ops
);
1262 goto out_unregister_notifier
;
1263 retval
= nfsd4_init_slabs();
1265 goto out_unregister_pernet
;
1266 retval
= nfsd_fault_inject_init(); /* nfsd fault injection controls */
1268 goto out_free_slabs
;
1269 nfsd_stat_init(); /* Statistics */
1270 retval
= nfsd_reply_cache_init();
1273 nfsd_lockd_init(); /* lockd->nfsd callbacks */
1274 retval
= create_proc_exports_entry();
1276 goto out_free_lockd
;
1277 retval
= register_filesystem(&nfsd_fs_type
);
1282 remove_proc_entry("fs/nfs/exports", NULL
);
1283 remove_proc_entry("fs/nfs", NULL
);
1285 nfsd_lockd_shutdown();
1286 nfsd_reply_cache_shutdown();
1288 nfsd_stat_shutdown();
1289 nfsd_fault_inject_cleanup();
1292 out_unregister_pernet
:
1293 unregister_pernet_subsys(&nfsd_net_ops
);
1294 out_unregister_notifier
:
1295 unregister_cld_notifier();
1299 static void __exit
exit_nfsd(void)
1301 nfsd_reply_cache_shutdown();
1302 remove_proc_entry("fs/nfs/exports", NULL
);
1303 remove_proc_entry("fs/nfs", NULL
);
1304 nfsd_stat_shutdown();
1305 nfsd_lockd_shutdown();
1307 nfsd_fault_inject_cleanup();
1308 unregister_filesystem(&nfsd_fs_type
);
1309 unregister_pernet_subsys(&nfsd_net_ops
);
1310 unregister_cld_notifier();
1313 MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1314 MODULE_LICENSE("GPL");
1315 module_init(init_nfsd
)
1316 module_exit(exit_nfsd
)