2 * linux/fs/nfsd/nfsctl.c
4 * Syscall interface to knfsd.
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
9 #include <linux/module.h>
11 #include <linux/linkage.h>
12 #include <linux/time.h>
13 #include <linux/errno.h>
15 #include <linux/namei.h>
16 #include <linux/fcntl.h>
17 #include <linux/net.h>
19 #include <linux/syscalls.h>
20 #include <linux/unistd.h>
21 #include <linux/slab.h>
22 #include <linux/proc_fs.h>
23 #include <linux/seq_file.h>
24 #include <linux/pagemap.h>
25 #include <linux/init.h>
26 #include <linux/inet.h>
27 #include <linux/string.h>
28 #include <linux/ctype.h>
30 #include <linux/nfs.h>
31 #include <linux/nfsd_idmap.h>
32 #include <linux/lockd/bind.h>
33 #include <linux/sunrpc/svc.h>
34 #include <linux/sunrpc/svcsock.h>
35 #include <linux/nfsd/nfsd.h>
36 #include <linux/nfsd/cache.h>
37 #include <linux/nfsd/xdr.h>
38 #include <linux/nfsd/syscall.h>
39 #include <linux/lockd/lockd.h>
40 #include <linux/sunrpc/clnt.h>
42 #include <asm/uaccess.h>
46 * We have a single directory with 9 nodes in it.
68 * The below MUST come last. Otherwise we leave a hole in nfsd_files[]
69 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops
78 * write() for these nodes.
80 static ssize_t
write_svc(struct file
*file
, char *buf
, size_t size
);
81 static ssize_t
write_add(struct file
*file
, char *buf
, size_t size
);
82 static ssize_t
write_del(struct file
*file
, char *buf
, size_t size
);
83 static ssize_t
write_export(struct file
*file
, char *buf
, size_t size
);
84 static ssize_t
write_unexport(struct file
*file
, char *buf
, size_t size
);
85 static ssize_t
write_getfd(struct file
*file
, char *buf
, size_t size
);
86 static ssize_t
write_getfs(struct file
*file
, char *buf
, size_t size
);
87 static ssize_t
write_filehandle(struct file
*file
, char *buf
, size_t size
);
88 static ssize_t
write_unlock_ip(struct file
*file
, char *buf
, size_t size
);
89 static ssize_t
write_unlock_fs(struct file
*file
, char *buf
, size_t size
);
90 static ssize_t
write_threads(struct file
*file
, char *buf
, size_t size
);
91 static ssize_t
write_pool_threads(struct file
*file
, char *buf
, size_t size
);
92 static ssize_t
write_versions(struct file
*file
, char *buf
, size_t size
);
93 static ssize_t
write_ports(struct file
*file
, char *buf
, size_t size
);
94 static ssize_t
write_maxblksize(struct file
*file
, char *buf
, size_t size
);
96 static ssize_t
write_leasetime(struct file
*file
, char *buf
, size_t size
);
97 static ssize_t
write_recoverydir(struct file
*file
, char *buf
, size_t size
);
100 static ssize_t (*write_op
[])(struct file
*, char *, size_t) = {
101 [NFSD_Svc
] = write_svc
,
102 [NFSD_Add
] = write_add
,
103 [NFSD_Del
] = write_del
,
104 [NFSD_Export
] = write_export
,
105 [NFSD_Unexport
] = write_unexport
,
106 [NFSD_Getfd
] = write_getfd
,
107 [NFSD_Getfs
] = write_getfs
,
108 [NFSD_Fh
] = write_filehandle
,
109 [NFSD_FO_UnlockIP
] = write_unlock_ip
,
110 [NFSD_FO_UnlockFS
] = write_unlock_fs
,
111 [NFSD_Threads
] = write_threads
,
112 [NFSD_Pool_Threads
] = write_pool_threads
,
113 [NFSD_Versions
] = write_versions
,
114 [NFSD_Ports
] = write_ports
,
115 [NFSD_MaxBlkSize
] = write_maxblksize
,
116 #ifdef CONFIG_NFSD_V4
117 [NFSD_Leasetime
] = write_leasetime
,
118 [NFSD_RecoveryDir
] = write_recoverydir
,
122 static ssize_t
nfsctl_transaction_write(struct file
*file
, const char __user
*buf
, size_t size
, loff_t
*pos
)
124 ino_t ino
= file
->f_path
.dentry
->d_inode
->i_ino
;
128 if (ino
>= ARRAY_SIZE(write_op
) || !write_op
[ino
])
131 data
= simple_transaction_get(file
, buf
, size
);
133 return PTR_ERR(data
);
135 rv
= write_op
[ino
](file
, data
, size
);
137 simple_transaction_set(file
, rv
);
143 static ssize_t
nfsctl_transaction_read(struct file
*file
, char __user
*buf
, size_t size
, loff_t
*pos
)
145 if (! file
->private_data
) {
146 /* An attempt to read a transaction file without writing
147 * causes a 0-byte write so that the file can return
150 ssize_t rv
= nfsctl_transaction_write(file
, buf
, 0, pos
);
154 return simple_transaction_read(file
, buf
, size
, pos
);
157 static const struct file_operations transaction_ops
= {
158 .write
= nfsctl_transaction_write
,
159 .read
= nfsctl_transaction_read
,
160 .release
= simple_transaction_release
,
163 static int exports_open(struct inode
*inode
, struct file
*file
)
165 return seq_open(file
, &nfs_exports_op
);
168 static const struct file_operations exports_operations
= {
169 .open
= exports_open
,
172 .release
= seq_release
,
173 .owner
= THIS_MODULE
,
176 extern int nfsd_pool_stats_open(struct inode
*inode
, struct file
*file
);
178 static struct file_operations pool_stats_operations
= {
179 .open
= nfsd_pool_stats_open
,
182 .release
= seq_release
,
183 .owner
= THIS_MODULE
,
186 /*----------------------------------------------------------------------------*/
188 * payload - write methods
192 * write_svc - Start kernel's NFSD server
194 * Deprecated. /proc/fs/nfsd/threads is preferred.
195 * Function remains to support old versions of nfs-utils.
198 * buf: struct nfsctl_svc
199 * svc_port: port number of this
201 * svc_nthreads: number of threads to start
202 * size: size in bytes of passed in nfsctl_svc
204 * On success: returns zero
205 * On error: return code is negative errno value
207 static ssize_t
write_svc(struct file
*file
, char *buf
, size_t size
)
209 struct nfsctl_svc
*data
;
211 if (size
< sizeof(*data
))
213 data
= (struct nfsctl_svc
*) buf
;
214 err
= nfsd_svc(data
->svc_port
, data
->svc_nthreads
);
221 * write_add - Add or modify client entry in auth unix cache
223 * Deprecated. /proc/net/rpc/auth.unix.ip is preferred.
224 * Function remains to support old versions of nfs-utils.
227 * buf: struct nfsctl_client
228 * cl_ident: '\0'-terminated C string
229 * containing domain name
231 * cl_naddr: no. of items in cl_addrlist
232 * cl_addrlist: array of client addresses
233 * cl_fhkeytype: ignored
234 * cl_fhkeylen: ignored
236 * size: size in bytes of passed in nfsctl_client
238 * On success: returns zero
239 * On error: return code is negative errno value
241 * Note: Only AF_INET client addresses are passed in, since
242 * nfsctl_client.cl_addrlist contains only in_addr fields for addresses.
244 static ssize_t
write_add(struct file
*file
, char *buf
, size_t size
)
246 struct nfsctl_client
*data
;
247 if (size
< sizeof(*data
))
249 data
= (struct nfsctl_client
*)buf
;
250 return exp_addclient(data
);
254 * write_del - Remove client from auth unix cache
256 * Deprecated. /proc/net/rpc/auth.unix.ip is preferred.
257 * Function remains to support old versions of nfs-utils.
260 * buf: struct nfsctl_client
261 * cl_ident: '\0'-terminated C string
262 * containing domain name
265 * cl_addrlist: ignored
266 * cl_fhkeytype: ignored
267 * cl_fhkeylen: ignored
269 * size: size in bytes of passed in nfsctl_client
271 * On success: returns zero
272 * On error: return code is negative errno value
274 * Note: Only AF_INET client addresses are passed in, since
275 * nfsctl_client.cl_addrlist contains only in_addr fields for addresses.
277 static ssize_t
write_del(struct file
*file
, char *buf
, size_t size
)
279 struct nfsctl_client
*data
;
280 if (size
< sizeof(*data
))
282 data
= (struct nfsctl_client
*)buf
;
283 return exp_delclient(data
);
287 * write_export - Export part or all of a local file system
289 * Deprecated. /proc/net/rpc/{nfsd.export,nfsd.fh} are preferred.
290 * Function remains to support old versions of nfs-utils.
293 * buf: struct nfsctl_export
294 * ex_client: '\0'-terminated C string
295 * containing domain name
296 * of client allowed to access
298 * ex_path: '\0'-terminated C string
299 * containing pathname of
300 * directory in local file system
301 * ex_dev: fsid to use for this export
303 * ex_flags: export flags for this export
304 * ex_anon_uid: UID to use for anonymous
306 * ex_anon_gid: GID to use for anonymous
308 * size: size in bytes of passed in nfsctl_export
310 * On success: returns zero
311 * On error: return code is negative errno value
313 static ssize_t
write_export(struct file
*file
, char *buf
, size_t size
)
315 struct nfsctl_export
*data
;
316 if (size
< sizeof(*data
))
318 data
= (struct nfsctl_export
*)buf
;
319 return exp_export(data
);
323 * write_unexport - Unexport a previously exported file system
325 * Deprecated. /proc/net/rpc/{nfsd.export,nfsd.fh} are preferred.
326 * Function remains to support old versions of nfs-utils.
329 * buf: struct nfsctl_export
330 * ex_client: '\0'-terminated C string
331 * containing domain name
332 * of client no longer allowed
333 * to access this export
334 * ex_path: '\0'-terminated C string
335 * containing pathname of
336 * directory in local file system
340 * ex_anon_uid: ignored
341 * ex_anon_gid: ignored
342 * size: size in bytes of passed in nfsctl_export
344 * On success: returns zero
345 * On error: return code is negative errno value
347 static ssize_t
write_unexport(struct file
*file
, char *buf
, size_t size
)
349 struct nfsctl_export
*data
;
351 if (size
< sizeof(*data
))
353 data
= (struct nfsctl_export
*)buf
;
354 return exp_unexport(data
);
358 * write_getfs - Get a variable-length NFS file handle by path
360 * Deprecated. /proc/fs/nfsd/filehandle is preferred.
361 * Function remains to support old versions of nfs-utils.
364 * buf: struct nfsctl_fsparm
365 * gd_addr: socket address of client
366 * gd_path: '\0'-terminated C string
367 * containing pathname of
368 * directory in local file system
369 * gd_maxlen: maximum size of returned file
371 * size: size in bytes of passed in nfsctl_fsparm
373 * On success: passed-in buffer filled with a knfsd_fh structure
374 * (a variable-length raw NFS file handle);
375 * return code is the size in bytes of the file handle
376 * On error: return code is negative errno value
378 * Note: Only AF_INET client addresses are passed in, since gd_addr
379 * is the same size as a struct sockaddr_in.
381 static ssize_t
write_getfs(struct file
*file
, char *buf
, size_t size
)
383 struct nfsctl_fsparm
*data
;
384 struct sockaddr_in
*sin
;
385 struct auth_domain
*clp
;
387 struct knfsd_fh
*res
;
390 if (size
< sizeof(*data
))
392 data
= (struct nfsctl_fsparm
*)buf
;
393 err
= -EPROTONOSUPPORT
;
394 if (data
->gd_addr
.sa_family
!= AF_INET
)
396 sin
= (struct sockaddr_in
*)&data
->gd_addr
;
397 if (data
->gd_maxlen
> NFS3_FHSIZE
)
398 data
->gd_maxlen
= NFS3_FHSIZE
;
400 res
= (struct knfsd_fh
*)buf
;
404 ipv6_addr_set_v4mapped(sin
->sin_addr
.s_addr
, &in6
);
406 clp
= auth_unix_lookup(&in6
);
410 err
= exp_rootfh(clp
, data
->gd_path
, res
, data
->gd_maxlen
);
411 auth_domain_put(clp
);
415 err
= res
->fh_size
+ offsetof(struct knfsd_fh
, fh_base
);
421 * write_getfd - Get a fixed-length NFS file handle by path (used by mountd)
423 * Deprecated. /proc/fs/nfsd/filehandle is preferred.
424 * Function remains to support old versions of nfs-utils.
427 * buf: struct nfsctl_fdparm
428 * gd_addr: socket address of client
429 * gd_path: '\0'-terminated C string
430 * containing pathname of
431 * directory in local file system
432 * gd_version: fdparm structure version
433 * size: size in bytes of passed in nfsctl_fdparm
435 * On success: passed-in buffer filled with nfsctl_res
436 * (a fixed-length raw NFS file handle);
437 * return code is the size in bytes of the file handle
438 * On error: return code is negative errno value
440 * Note: Only AF_INET client addresses are passed in, since gd_addr
441 * is the same size as a struct sockaddr_in.
443 static ssize_t
write_getfd(struct file
*file
, char *buf
, size_t size
)
445 struct nfsctl_fdparm
*data
;
446 struct sockaddr_in
*sin
;
447 struct auth_domain
*clp
;
453 if (size
< sizeof(*data
))
455 data
= (struct nfsctl_fdparm
*)buf
;
456 err
= -EPROTONOSUPPORT
;
457 if (data
->gd_addr
.sa_family
!= AF_INET
)
460 if (data
->gd_version
< 2 || data
->gd_version
> NFSSVC_MAXVERS
)
464 sin
= (struct sockaddr_in
*)&data
->gd_addr
;
467 ipv6_addr_set_v4mapped(sin
->sin_addr
.s_addr
, &in6
);
469 clp
= auth_unix_lookup(&in6
);
473 err
= exp_rootfh(clp
, data
->gd_path
, &fh
, NFS_FHSIZE
);
474 auth_domain_put(clp
);
479 memset(res
,0, NFS_FHSIZE
);
480 memcpy(res
, &fh
.fh_base
, fh
.fh_size
);
488 * write_unlock_ip - Release all locks used by a client
493 * buf: '\n'-terminated C string containing a
494 * presentation format IP address
495 * size: length of C string in @buf
497 * On success: returns zero if all specified locks were released;
498 * returns one if one or more locks were not released
499 * On error: return code is negative errno value
501 static ssize_t
write_unlock_ip(struct file
*file
, char *buf
, size_t size
)
503 struct sockaddr_storage address
;
504 struct sockaddr
*sap
= (struct sockaddr
*)&address
;
505 size_t salen
= sizeof(address
);
512 if (buf
[size
-1] != '\n')
516 if (qword_get(&buf
, fo_path
, size
) < 0)
519 if (rpc_pton(fo_path
, size
, sap
, salen
) == 0)
522 return nlmsvc_unlock_all_by_ip(sap
);
526 * write_unlock_fs - Release all locks on a local file system
531 * buf: '\n'-terminated C string containing the
532 * absolute pathname of a local file system
533 * size: length of C string in @buf
535 * On success: returns zero if all specified locks were released;
536 * returns one if one or more locks were not released
537 * On error: return code is negative errno value
539 static ssize_t
write_unlock_fs(struct file
*file
, char *buf
, size_t size
)
549 if (buf
[size
-1] != '\n')
553 if (qword_get(&buf
, fo_path
, size
) < 0)
556 error
= kern_path(fo_path
, 0, &path
);
561 * XXX: Needs better sanity checking. Otherwise we could end up
562 * releasing locks on the wrong file system.
565 * 1. Does the path refer to a directory?
566 * 2. Is that directory a mount point, or
567 * 3. Is that directory the root of an exported file system?
569 error
= nlmsvc_unlock_all_by_sb(path
.mnt
->mnt_sb
);
576 * write_filehandle - Get a variable-length NFS file handle by path
578 * On input, the buffer contains a '\n'-terminated C string comprised of
579 * three alphanumeric words separated by whitespace. The string may
580 * contain escape sequences.
584 * domain: client domain name
585 * path: export pathname
586 * maxsize: numeric maximum size of
588 * size: length of C string in @buf
590 * On success: passed-in buffer filled with '\n'-terminated C
591 * string containing a ASCII hex text version
592 * of the NFS file handle;
593 * return code is the size in bytes of the string
594 * On error: return code is negative errno value
596 static ssize_t
write_filehandle(struct file
*file
, char *buf
, size_t size
)
599 int uninitialized_var(maxsize
);
602 struct auth_domain
*dom
;
608 if (buf
[size
-1] != '\n')
613 len
= qword_get(&mesg
, dname
, size
);
618 len
= qword_get(&mesg
, path
, size
);
622 len
= get_int(&mesg
, &maxsize
);
626 if (maxsize
< NFS_FHSIZE
)
628 if (maxsize
> NFS3_FHSIZE
)
629 maxsize
= NFS3_FHSIZE
;
631 if (qword_get(&mesg
, mesg
, size
)>0)
634 /* we have all the words, they are in buf.. */
635 dom
= unix_domain_find(dname
);
639 len
= exp_rootfh(dom
, path
, &fh
, maxsize
);
640 auth_domain_put(dom
);
645 len
= SIMPLE_TRANSACTION_LIMIT
;
646 qword_addhex(&mesg
, &len
, (char*)&fh
.fh_base
, fh
.fh_size
);
652 * write_threads - Start NFSD, or report the current number of running threads
658 * On success: passed-in buffer filled with '\n'-terminated C
659 * string numeric value representing the number of
660 * running NFSD threads;
661 * return code is the size in bytes of the string
662 * On error: return code is zero
667 * buf: C string containing an unsigned
668 * integer value representing the
669 * number of NFSD threads to start
670 * size: non-zero length of C string in @buf
672 * On success: NFS service is started;
673 * passed-in buffer filled with '\n'-terminated C
674 * string numeric value representing the number of
675 * running NFSD threads;
676 * return code is the size in bytes of the string
677 * On error: return code is zero or a negative errno value
679 static ssize_t
write_threads(struct file
*file
, char *buf
, size_t size
)
685 rv
= get_int(&mesg
, &newthreads
);
690 rv
= nfsd_svc(NFS_PORT
, newthreads
);
694 rv
= nfsd_nrthreads();
696 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%d\n", rv
);
700 * write_pool_threads - Set or report the current number of threads per pool
709 * buf: C string containing whitespace-
710 * separated unsigned integer values
711 * representing the number of NFSD
712 * threads to start in each pool
713 * size: non-zero length of C string in @buf
715 * On success: passed-in buffer filled with '\n'-terminated C
716 * string containing integer values representing the
717 * number of NFSD threads in each pool;
718 * return code is the size in bytes of the string
719 * On error: return code is zero or a negative errno value
721 static ssize_t
write_pool_threads(struct file
*file
, char *buf
, size_t size
)
723 /* if size > 0, look for an array of number of threads per node
724 * and apply them then write out number of threads per node as reply
733 mutex_lock(&nfsd_mutex
);
734 npools
= nfsd_nrpools();
737 * NFS is shut down. The admin can start it by
738 * writing to the threads file but NOT the pool_threads
739 * file, sorry. Report zero threads.
741 mutex_unlock(&nfsd_mutex
);
746 nthreads
= kcalloc(npools
, sizeof(int), GFP_KERNEL
);
748 if (nthreads
== NULL
)
752 for (i
= 0; i
< npools
; i
++) {
753 rv
= get_int(&mesg
, &nthreads
[i
]);
755 break; /* fewer numbers than pools */
757 goto out_free
; /* syntax error */
762 rv
= nfsd_set_nrthreads(i
, nthreads
);
767 rv
= nfsd_get_nrthreads(npools
, nthreads
);
772 size
= SIMPLE_TRANSACTION_LIMIT
;
773 for (i
= 0; i
< npools
&& size
> 0; i
++) {
774 snprintf(mesg
, size
, "%d%c", nthreads
[i
], (i
== npools
-1 ? '\n' : ' '));
780 mutex_unlock(&nfsd_mutex
);
785 mutex_unlock(&nfsd_mutex
);
789 static ssize_t
__write_versions(struct file
*file
, char *buf
, size_t size
)
792 char *vers
, *minorp
, sign
;
793 int len
, num
, remaining
;
800 /* Cannot change versions without updating
801 * nfsd_serv->sv_xdrsize, and reallocing
802 * rq_argp and rq_resp
805 if (buf
[size
-1] != '\n')
810 len
= qword_get(&mesg
, vers
, size
);
811 if (len
<= 0) return -EINVAL
;
814 if (sign
== '+' || sign
== '-')
815 num
= simple_strtol((vers
+1), &minorp
, 0);
817 num
= simple_strtol(vers
, &minorp
, 0);
818 if (*minorp
== '.') {
821 minor
= simple_strtoul(minorp
+1, NULL
, 0);
824 if (nfsd_minorversion(minor
, sign
== '-' ?
825 NFSD_CLEAR
: NFSD_SET
) < 0)
833 nfsd_vers(num
, sign
== '-' ? NFSD_CLEAR
: NFSD_SET
);
840 } while ((len
= qword_get(&mesg
, vers
, size
)) > 0);
841 /* If all get turned off, turn them back on, as
842 * having no versions is BAD
844 nfsd_reset_versions();
847 /* Now write current state into reply buffer */
850 remaining
= SIMPLE_TRANSACTION_LIMIT
;
851 for (num
=2 ; num
<= 4 ; num
++)
852 if (nfsd_vers(num
, NFSD_AVAIL
)) {
853 len
= snprintf(buf
, remaining
, "%s%c%d", sep
,
854 nfsd_vers(num
, NFSD_TEST
)?'+':'-',
864 if (nfsd_vers(4, NFSD_AVAIL
))
865 for (minor
= 1; minor
<= NFSD_SUPPORTED_MINOR_VERSION
;
867 len
= snprintf(buf
, remaining
, " %c4.%u",
868 (nfsd_vers(4, NFSD_TEST
) &&
869 nfsd_minorversion(minor
, NFSD_TEST
)) ?
880 len
= snprintf(buf
, remaining
, "\n");
887 * write_versions - Set or report the available NFS protocol versions
893 * On success: passed-in buffer filled with '\n'-terminated C
894 * string containing positive or negative integer
895 * values representing the current status of each
897 * return code is the size in bytes of the string
898 * On error: return code is zero or a negative errno value
903 * buf: C string containing whitespace-
904 * separated positive or negative
905 * integer values representing NFS
906 * protocol versions to enable ("+n")
908 * size: non-zero length of C string in @buf
910 * On success: status of zero or more protocol versions has
911 * been updated; passed-in buffer filled with
912 * '\n'-terminated C string containing positive
913 * or negative integer values representing the
914 * current status of each protocol version;
915 * return code is the size in bytes of the string
916 * On error: return code is zero or a negative errno value
918 static ssize_t
write_versions(struct file
*file
, char *buf
, size_t size
)
922 mutex_lock(&nfsd_mutex
);
923 rv
= __write_versions(file
, buf
, size
);
924 mutex_unlock(&nfsd_mutex
);
929 * Zero-length write. Return a list of NFSD's current listener
932 static ssize_t
__write_ports_names(char *buf
)
934 if (nfsd_serv
== NULL
)
936 return svc_xprt_names(nfsd_serv
, buf
, SIMPLE_TRANSACTION_LIMIT
);
940 * A single 'fd' number was written, in which case it must be for
941 * a socket of a supported family/protocol, and we use it as an
944 static ssize_t
__write_ports_addfd(char *buf
)
949 err
= get_int(&mesg
, &fd
);
950 if (err
!= 0 || fd
< 0)
953 err
= nfsd_create_serv();
961 err
= svc_addsock(nfsd_serv
, fd
, buf
, SIMPLE_TRANSACTION_LIMIT
);
966 /* Decrease the count, but don't shut down the service */
967 nfsd_serv
->sv_nrthreads
--;
972 * A '-' followed by the 'name' of a socket means we close the socket.
974 static ssize_t
__write_ports_delfd(char *buf
)
979 toclose
= kstrdup(buf
+ 1, GFP_KERNEL
);
983 if (nfsd_serv
!= NULL
)
984 len
= svc_sock_names(nfsd_serv
, buf
,
985 SIMPLE_TRANSACTION_LIMIT
, toclose
);
994 * A transport listener is added by writing it's transport name and
997 static ssize_t
__write_ports_addxprt(char *buf
)
1002 if (sscanf(buf
, "%15s %4u", transport
, &port
) != 2)
1005 if (port
< 1 || port
> USHORT_MAX
)
1008 err
= nfsd_create_serv();
1012 err
= svc_create_xprt(nfsd_serv
, transport
,
1013 PF_INET
, port
, SVC_SOCK_ANONYMOUS
);
1015 /* Give a reasonable perror msg for bad transport string */
1017 err
= -EPROTONOSUPPORT
;
1024 * A transport listener is removed by writing a "-", it's transport
1025 * name, and it's port number.
1027 static ssize_t
__write_ports_delxprt(char *buf
)
1029 struct svc_xprt
*xprt
;
1033 if (sscanf(&buf
[1], "%15s %4u", transport
, &port
) != 2)
1036 if (port
< 1 || port
> USHORT_MAX
|| nfsd_serv
== NULL
)
1039 xprt
= svc_find_xprt(nfsd_serv
, transport
, AF_UNSPEC
, port
);
1043 svc_close_xprt(xprt
);
1048 static ssize_t
__write_ports(struct file
*file
, char *buf
, size_t size
)
1051 return __write_ports_names(buf
);
1053 if (isdigit(buf
[0]))
1054 return __write_ports_addfd(buf
);
1056 if (buf
[0] == '-' && isdigit(buf
[1]))
1057 return __write_ports_delfd(buf
);
1059 if (isalpha(buf
[0]))
1060 return __write_ports_addxprt(buf
);
1062 if (buf
[0] == '-' && isalpha(buf
[1]))
1063 return __write_ports_delxprt(buf
);
1069 * write_ports - Pass a socket file descriptor or transport name to listen on
1075 * On success: passed-in buffer filled with a '\n'-terminated C
1076 * string containing a whitespace-separated list of
1077 * named NFSD listeners;
1078 * return code is the size in bytes of the string
1079 * On error: return code is zero or a negative errno value
1084 * buf: C string containing an unsigned
1085 * integer value representing a bound
1086 * but unconnected socket that is to be
1087 * used as an NFSD listener; listen(3)
1088 * must be called for a SOCK_STREAM
1089 * socket, otherwise it is ignored
1090 * size: non-zero length of C string in @buf
1092 * On success: NFS service is started;
1093 * passed-in buffer filled with a '\n'-terminated C
1094 * string containing a unique alphanumeric name of
1096 * return code is the size in bytes of the string
1097 * On error: return code is a negative errno value
1102 * buf: C string containing a "-" followed
1103 * by an integer value representing a
1104 * previously passed in socket file
1106 * size: non-zero length of C string in @buf
1108 * On success: NFS service no longer listens on that socket;
1109 * passed-in buffer filled with a '\n'-terminated C
1110 * string containing a unique name of the listener;
1111 * return code is the size in bytes of the string
1112 * On error: return code is a negative errno value
1117 * buf: C string containing a transport
1118 * name and an unsigned integer value
1119 * representing the port to listen on,
1120 * separated by whitespace
1121 * size: non-zero length of C string in @buf
1123 * On success: returns zero; NFS service is started
1124 * On error: return code is a negative errno value
1129 * buf: C string containing a "-" followed
1130 * by a transport name and an unsigned
1131 * integer value representing the port
1132 * to listen on, separated by whitespace
1133 * size: non-zero length of C string in @buf
1135 * On success: returns zero; NFS service no longer listens
1137 * On error: return code is a negative errno value
1139 static ssize_t
write_ports(struct file
*file
, char *buf
, size_t size
)
1143 mutex_lock(&nfsd_mutex
);
1144 rv
= __write_ports(file
, buf
, size
);
1145 mutex_unlock(&nfsd_mutex
);
1150 int nfsd_max_blksize
;
1153 * write_maxblksize - Set or report the current NFS blksize
1162 * buf: C string containing an unsigned
1163 * integer value representing the new
1165 * size: non-zero length of C string in @buf
1167 * On success: passed-in buffer filled with '\n'-terminated C string
1168 * containing numeric value of the current NFS blksize
1170 * return code is the size in bytes of the string
1171 * On error: return code is zero or a negative errno value
1173 static ssize_t
write_maxblksize(struct file
*file
, char *buf
, size_t size
)
1178 int rv
= get_int(&mesg
, &bsize
);
1181 /* force bsize into allowed range and
1182 * required alignment.
1186 if (bsize
> NFSSVC_MAXBLKSIZE
)
1187 bsize
= NFSSVC_MAXBLKSIZE
;
1189 mutex_lock(&nfsd_mutex
);
1190 if (nfsd_serv
&& nfsd_serv
->sv_nrthreads
) {
1191 mutex_unlock(&nfsd_mutex
);
1194 nfsd_max_blksize
= bsize
;
1195 mutex_unlock(&nfsd_mutex
);
1198 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%d\n",
1202 #ifdef CONFIG_NFSD_V4
1203 extern time_t nfs4_leasetime(void);
1205 static ssize_t
__write_leasetime(struct file
*file
, char *buf
, size_t size
)
1207 /* if size > 10 seconds, call
1208 * nfs4_reset_lease() then write out the new lease (seconds) as reply
1216 rv
= get_int(&mesg
, &lease
);
1219 if (lease
< 10 || lease
> 3600)
1221 nfs4_reset_lease(lease
);
1224 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%ld\n",
1229 * write_leasetime - Set or report the current NFSv4 lease time
1238 * buf: C string containing an unsigned
1239 * integer value representing the new
1240 * NFSv4 lease expiry time
1241 * size: non-zero length of C string in @buf
1243 * On success: passed-in buffer filled with '\n'-terminated C
1244 * string containing unsigned integer value of the
1245 * current lease expiry time;
1246 * return code is the size in bytes of the string
1247 * On error: return code is zero or a negative errno value
1249 static ssize_t
write_leasetime(struct file
*file
, char *buf
, size_t size
)
1253 mutex_lock(&nfsd_mutex
);
1254 rv
= __write_leasetime(file
, buf
, size
);
1255 mutex_unlock(&nfsd_mutex
);
1259 extern char *nfs4_recoverydir(void);
1261 static ssize_t
__write_recoverydir(struct file
*file
, char *buf
, size_t size
)
1270 if (size
> PATH_MAX
|| buf
[size
-1] != '\n')
1275 len
= qword_get(&mesg
, recdir
, size
);
1279 status
= nfs4_reset_recoverydir(recdir
);
1282 return scnprintf(buf
, SIMPLE_TRANSACTION_LIMIT
, "%s\n",
1283 nfs4_recoverydir());
1287 * write_recoverydir - Set or report the pathname of the recovery directory
1296 * buf: C string containing the pathname
1297 * of the directory on a local file
1298 * system containing permanent NFSv4
1300 * size: non-zero length of C string in @buf
1302 * On success: passed-in buffer filled with '\n'-terminated C string
1303 * containing the current recovery pathname setting;
1304 * return code is the size in bytes of the string
1305 * On error: return code is zero or a negative errno value
1307 static ssize_t
write_recoverydir(struct file
*file
, char *buf
, size_t size
)
1311 mutex_lock(&nfsd_mutex
);
1312 rv
= __write_recoverydir(file
, buf
, size
);
1313 mutex_unlock(&nfsd_mutex
);
1319 /*----------------------------------------------------------------------------*/
1321 * populating the filesystem.
1324 static int nfsd_fill_super(struct super_block
* sb
, void * data
, int silent
)
1326 static struct tree_descr nfsd_files
[] = {
1327 [NFSD_Svc
] = {".svc", &transaction_ops
, S_IWUSR
},
1328 [NFSD_Add
] = {".add", &transaction_ops
, S_IWUSR
},
1329 [NFSD_Del
] = {".del", &transaction_ops
, S_IWUSR
},
1330 [NFSD_Export
] = {".export", &transaction_ops
, S_IWUSR
},
1331 [NFSD_Unexport
] = {".unexport", &transaction_ops
, S_IWUSR
},
1332 [NFSD_Getfd
] = {".getfd", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1333 [NFSD_Getfs
] = {".getfs", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1334 [NFSD_List
] = {"exports", &exports_operations
, S_IRUGO
},
1335 [NFSD_FO_UnlockIP
] = {"unlock_ip",
1336 &transaction_ops
, S_IWUSR
|S_IRUSR
},
1337 [NFSD_FO_UnlockFS
] = {"unlock_filesystem",
1338 &transaction_ops
, S_IWUSR
|S_IRUSR
},
1339 [NFSD_Fh
] = {"filehandle", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1340 [NFSD_Threads
] = {"threads", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1341 [NFSD_Pool_Threads
] = {"pool_threads", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1342 [NFSD_Pool_Stats
] = {"pool_stats", &pool_stats_operations
, S_IRUGO
},
1343 [NFSD_Versions
] = {"versions", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1344 [NFSD_Ports
] = {"portlist", &transaction_ops
, S_IWUSR
|S_IRUGO
},
1345 [NFSD_MaxBlkSize
] = {"max_block_size", &transaction_ops
, S_IWUSR
|S_IRUGO
},
1346 #ifdef CONFIG_NFSD_V4
1347 [NFSD_Leasetime
] = {"nfsv4leasetime", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1348 [NFSD_RecoveryDir
] = {"nfsv4recoverydir", &transaction_ops
, S_IWUSR
|S_IRUSR
},
1352 return simple_fill_super(sb
, 0x6e667364, nfsd_files
);
1355 static int nfsd_get_sb(struct file_system_type
*fs_type
,
1356 int flags
, const char *dev_name
, void *data
, struct vfsmount
*mnt
)
1358 return get_sb_single(fs_type
, flags
, data
, nfsd_fill_super
, mnt
);
1361 static struct file_system_type nfsd_fs_type
= {
1362 .owner
= THIS_MODULE
,
1364 .get_sb
= nfsd_get_sb
,
1365 .kill_sb
= kill_litter_super
,
1368 #ifdef CONFIG_PROC_FS
1369 static int create_proc_exports_entry(void)
1371 struct proc_dir_entry
*entry
;
1373 entry
= proc_mkdir("fs/nfs", NULL
);
1376 entry
= proc_create("exports", 0, entry
, &exports_operations
);
1381 #else /* CONFIG_PROC_FS */
1382 static int create_proc_exports_entry(void)
1388 static int __init
init_nfsd(void)
1391 printk(KERN_INFO
"Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
1393 retval
= nfs4_state_init(); /* nfs4 locking state */
1396 nfsd_stat_init(); /* Statistics */
1397 retval
= nfsd_reply_cache_init();
1400 retval
= nfsd_export_init();
1402 goto out_free_cache
;
1403 nfsd_lockd_init(); /* lockd->nfsd callbacks */
1404 retval
= nfsd_idmap_init();
1406 goto out_free_lockd
;
1407 retval
= create_proc_exports_entry();
1409 goto out_free_idmap
;
1410 retval
= register_filesystem(&nfsd_fs_type
);
1415 remove_proc_entry("fs/nfs/exports", NULL
);
1416 remove_proc_entry("fs/nfs", NULL
);
1418 nfsd_idmap_shutdown();
1420 nfsd_lockd_shutdown();
1421 nfsd_export_shutdown();
1423 nfsd_reply_cache_shutdown();
1425 nfsd_stat_shutdown();
1430 static void __exit
exit_nfsd(void)
1432 nfsd_export_shutdown();
1433 nfsd_reply_cache_shutdown();
1434 remove_proc_entry("fs/nfs/exports", NULL
);
1435 remove_proc_entry("fs/nfs", NULL
);
1436 nfsd_stat_shutdown();
1437 nfsd_lockd_shutdown();
1438 nfsd_idmap_shutdown();
1440 unregister_filesystem(&nfsd_fs_type
);
1443 MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1444 MODULE_LICENSE("GPL");
1445 module_init(init_nfsd
)
1446 module_exit(exit_nfsd
)