blob: 7e906c5b7671ee05409edde58fd0d3efa44f6457 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfsd/nfsctl.c
3 *
4 * Syscall interface to knfsd.
5 *
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
10
11#include <linux/linkage.h>
12#include <linux/time.h>
13#include <linux/errno.h>
14#include <linux/fs.h>
Al Viro3f8206d2008-07-26 03:46:43 -040015#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/fcntl.h>
17#include <linux/net.h>
18#include <linux/in.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>
Wendy Cheng4373ea82008-01-17 11:10:12 -050026#include <linux/inet.h>
NeilBrown70c3b762005-11-07 01:00:25 -080027#include <linux/string.h>
NeilBrownb41b66d2006-10-02 02:17:48 -070028#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <linux/nfs.h>
31#include <linux/nfsd_idmap.h>
NeilBrownb41b66d2006-10-02 02:17:48 -070032#include <linux/lockd/bind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/sunrpc/svc.h>
NeilBrown80212d52006-10-02 02:17:47 -070034#include <linux/sunrpc/svcsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/nfsd/nfsd.h>
36#include <linux/nfsd/cache.h>
37#include <linux/nfsd/xdr.h>
38#include <linux/nfsd/syscall.h>
Wendy Cheng4373ea82008-01-17 11:10:12 -050039#include <linux/lockd/lockd.h>
Chuck Lever41160922009-08-09 15:09:40 -040040#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/uaccess.h>
Aurélien Charbonf15364b2008-01-18 15:50:56 +010043#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * We have a single directory with 9 nodes in it.
47 */
48enum {
49 NFSD_Root = 1,
50 NFSD_Svc,
51 NFSD_Add,
52 NFSD_Del,
53 NFSD_Export,
54 NFSD_Unexport,
55 NFSD_Getfd,
56 NFSD_Getfs,
57 NFSD_List,
58 NFSD_Fh,
Wendy Cheng4373ea82008-01-17 11:10:12 -050059 NFSD_FO_UnlockIP,
Wendy Cheng17efa372008-01-17 11:10:12 -050060 NFSD_FO_UnlockFS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 NFSD_Threads,
Greg Bankseed29652006-10-02 02:18:02 -070062 NFSD_Pool_Threads,
Greg Banks03cf6c92009-01-13 21:26:36 +110063 NFSD_Pool_Stats,
NeilBrown70c3b762005-11-07 01:00:25 -080064 NFSD_Versions,
NeilBrown80212d52006-10-02 02:17:47 -070065 NFSD_Ports,
NeilBrown596bbe52006-10-04 02:15:48 -070066 NFSD_MaxBlkSize,
NeilBrown70c3b762005-11-07 01:00:25 -080067 /*
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
70 */
71#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 NFSD_Leasetime,
NeilBrown0964a3d2005-06-23 22:04:32 -070073 NFSD_RecoveryDir,
NeilBrown70c3b762005-11-07 01:00:25 -080074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
77/*
78 * write() for these nodes.
79 */
80static ssize_t write_svc(struct file *file, char *buf, size_t size);
81static ssize_t write_add(struct file *file, char *buf, size_t size);
82static ssize_t write_del(struct file *file, char *buf, size_t size);
83static ssize_t write_export(struct file *file, char *buf, size_t size);
84static ssize_t write_unexport(struct file *file, char *buf, size_t size);
85static ssize_t write_getfd(struct file *file, char *buf, size_t size);
86static ssize_t write_getfs(struct file *file, char *buf, size_t size);
87static ssize_t write_filehandle(struct file *file, char *buf, size_t size);
Chuck Leverb046ccd2008-12-12 16:57:13 -050088static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size);
89static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static ssize_t write_threads(struct file *file, char *buf, size_t size);
Greg Bankseed29652006-10-02 02:18:02 -070091static ssize_t write_pool_threads(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080092static ssize_t write_versions(struct file *file, char *buf, size_t size);
NeilBrown80212d52006-10-02 02:17:47 -070093static ssize_t write_ports(struct file *file, char *buf, size_t size);
NeilBrown596bbe52006-10-04 02:15:48 -070094static ssize_t write_maxblksize(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080095#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static ssize_t write_leasetime(struct file *file, char *buf, size_t size);
NeilBrown0964a3d2005-06-23 22:04:32 -070097static ssize_t write_recoverydir(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080098#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100static 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,
Chuck Leverb046ccd2008-12-12 16:57:13 -0500109 [NFSD_FO_UnlockIP] = write_unlock_ip,
110 [NFSD_FO_UnlockFS] = write_unlock_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 [NFSD_Threads] = write_threads,
Greg Bankseed29652006-10-02 02:18:02 -0700112 [NFSD_Pool_Threads] = write_pool_threads,
NeilBrown70c3b762005-11-07 01:00:25 -0800113 [NFSD_Versions] = write_versions,
NeilBrown80212d52006-10-02 02:17:47 -0700114 [NFSD_Ports] = write_ports,
NeilBrown596bbe52006-10-04 02:15:48 -0700115 [NFSD_MaxBlkSize] = write_maxblksize,
NeilBrown70c3b762005-11-07 01:00:25 -0800116#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 [NFSD_Leasetime] = write_leasetime,
NeilBrown0964a3d2005-06-23 22:04:32 -0700118 [NFSD_RecoveryDir] = write_recoverydir,
NeilBrown70c3b762005-11-07 01:00:25 -0800119#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
122static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
123{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800124 ino_t ino = file->f_path.dentry->d_inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 char *data;
126 ssize_t rv;
127
Tobias Klausere8c96f82006-03-24 03:15:34 -0800128 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return -EINVAL;
130
131 data = simple_transaction_get(file, buf, size);
132 if (IS_ERR(data))
133 return PTR_ERR(data);
134
135 rv = write_op[ino](file, data, size);
NeilBrown8971a102007-02-14 00:33:11 -0800136 if (rv >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 simple_transaction_set(file, rv);
138 rv = size;
139 }
140 return rv;
141}
142
NeilBrown73900222005-11-07 01:00:24 -0800143static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
144{
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
148 * state information
149 */
150 ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos);
151 if (rv < 0)
152 return rv;
153 }
154 return simple_transaction_read(file, buf, size, pos);
155}
156
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800157static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .write = nfsctl_transaction_write,
NeilBrown73900222005-11-07 01:00:24 -0800159 .read = nfsctl_transaction_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 .release = simple_transaction_release,
161};
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163static int exports_open(struct inode *inode, struct file *file)
164{
165 return seq_open(file, &nfs_exports_op);
166}
167
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800168static const struct file_operations exports_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 .open = exports_open,
170 .read = seq_read,
171 .llseek = seq_lseek,
172 .release = seq_release,
Denis V. Lunev9ef2db22008-04-29 01:02:04 -0700173 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174};
175
Greg Banks03cf6c92009-01-13 21:26:36 +1100176extern int nfsd_pool_stats_open(struct inode *inode, struct file *file);
177
178static struct file_operations pool_stats_operations = {
179 .open = nfsd_pool_stats_open,
180 .read = seq_read,
181 .llseek = seq_lseek,
182 .release = seq_release,
183 .owner = THIS_MODULE,
184};
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/*----------------------------------------------------------------------------*/
187/*
188 * payload - write methods
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 */
190
Chuck Lever262a0982008-12-12 16:57:35 -0500191/**
192 * write_svc - Start kernel's NFSD server
193 *
194 * Deprecated. /proc/fs/nfsd/threads is preferred.
195 * Function remains to support old versions of nfs-utils.
196 *
197 * Input:
198 * buf: struct nfsctl_svc
199 * svc_port: port number of this
200 * server's listener
201 * svc_nthreads: number of threads to start
202 * size: size in bytes of passed in nfsctl_svc
203 * Output:
204 * On success: returns zero
205 * On error: return code is negative errno value
206 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207static ssize_t write_svc(struct file *file, char *buf, size_t size)
208{
209 struct nfsctl_svc *data;
NeilBrown82e12fe2009-06-16 11:03:07 +1000210 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (size < sizeof(*data))
212 return -EINVAL;
213 data = (struct nfsctl_svc*) buf;
NeilBrown82e12fe2009-06-16 11:03:07 +1000214 err = nfsd_svc(data->svc_port, data->svc_nthreads);
215 if (err < 0)
216 return err;
217 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Chuck Lever262a0982008-12-12 16:57:35 -0500220/**
221 * write_add - Add or modify client entry in auth unix cache
222 *
223 * Deprecated. /proc/net/rpc/auth.unix.ip is preferred.
224 * Function remains to support old versions of nfs-utils.
225 *
226 * Input:
227 * buf: struct nfsctl_client
228 * cl_ident: '\0'-terminated C string
229 * containing domain name
230 * of client
231 * cl_naddr: no. of items in cl_addrlist
232 * cl_addrlist: array of client addresses
233 * cl_fhkeytype: ignored
234 * cl_fhkeylen: ignored
235 * cl_fhkey: ignored
236 * size: size in bytes of passed in nfsctl_client
237 * Output:
238 * On success: returns zero
239 * On error: return code is negative errno value
240 *
241 * Note: Only AF_INET client addresses are passed in, since
242 * nfsctl_client.cl_addrlist contains only in_addr fields for addresses.
243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244static ssize_t write_add(struct file *file, char *buf, size_t size)
245{
246 struct nfsctl_client *data;
247 if (size < sizeof(*data))
248 return -EINVAL;
249 data = (struct nfsctl_client *)buf;
250 return exp_addclient(data);
251}
252
Chuck Lever262a0982008-12-12 16:57:35 -0500253/**
254 * write_del - Remove client from auth unix cache
255 *
256 * Deprecated. /proc/net/rpc/auth.unix.ip is preferred.
257 * Function remains to support old versions of nfs-utils.
258 *
259 * Input:
260 * buf: struct nfsctl_client
261 * cl_ident: '\0'-terminated C string
262 * containing domain name
263 * of client
264 * cl_naddr: ignored
265 * cl_addrlist: ignored
266 * cl_fhkeytype: ignored
267 * cl_fhkeylen: ignored
268 * cl_fhkey: ignored
269 * size: size in bytes of passed in nfsctl_client
270 * Output:
271 * On success: returns zero
272 * On error: return code is negative errno value
273 *
274 * Note: Only AF_INET client addresses are passed in, since
275 * nfsctl_client.cl_addrlist contains only in_addr fields for addresses.
276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static ssize_t write_del(struct file *file, char *buf, size_t size)
278{
279 struct nfsctl_client *data;
280 if (size < sizeof(*data))
281 return -EINVAL;
282 data = (struct nfsctl_client *)buf;
283 return exp_delclient(data);
284}
285
Chuck Lever262a0982008-12-12 16:57:35 -0500286/**
287 * write_export - Export part or all of a local file system
288 *
289 * Deprecated. /proc/net/rpc/{nfsd.export,nfsd.fh} are preferred.
290 * Function remains to support old versions of nfs-utils.
291 *
292 * Input:
293 * buf: struct nfsctl_export
294 * ex_client: '\0'-terminated C string
295 * containing domain name
296 * of client allowed to access
297 * this export
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
302 * ex_ino: ignored
303 * ex_flags: export flags for this export
304 * ex_anon_uid: UID to use for anonymous
305 * requests
306 * ex_anon_gid: GID to use for anonymous
307 * requests
308 * size: size in bytes of passed in nfsctl_export
309 * Output:
310 * On success: returns zero
311 * On error: return code is negative errno value
312 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313static ssize_t write_export(struct file *file, char *buf, size_t size)
314{
315 struct nfsctl_export *data;
316 if (size < sizeof(*data))
317 return -EINVAL;
318 data = (struct nfsctl_export*)buf;
319 return exp_export(data);
320}
321
Chuck Lever262a0982008-12-12 16:57:35 -0500322/**
323 * write_unexport - Unexport a previously exported file system
324 *
325 * Deprecated. /proc/net/rpc/{nfsd.export,nfsd.fh} are preferred.
326 * Function remains to support old versions of nfs-utils.
327 *
328 * Input:
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
337 * ex_dev: ignored
338 * ex_ino: ignored
339 * ex_flags: ignored
340 * ex_anon_uid: ignored
341 * ex_anon_gid: ignored
342 * size: size in bytes of passed in nfsctl_export
343 * Output:
344 * On success: returns zero
345 * On error: return code is negative errno value
346 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static ssize_t write_unexport(struct file *file, char *buf, size_t size)
348{
349 struct nfsctl_export *data;
350
351 if (size < sizeof(*data))
352 return -EINVAL;
353 data = (struct nfsctl_export*)buf;
354 return exp_unexport(data);
355}
356
Chuck Lever262a0982008-12-12 16:57:35 -0500357/**
358 * write_getfs - Get a variable-length NFS file handle by path
359 *
360 * Deprecated. /proc/fs/nfsd/filehandle is preferred.
361 * Function remains to support old versions of nfs-utils.
362 *
363 * Input:
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
370 * handle
371 * size: size in bytes of passed in nfsctl_fsparm
372 * Output:
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
377 *
378 * Note: Only AF_INET client addresses are passed in, since gd_addr
379 * is the same size as a struct sockaddr_in.
380 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381static ssize_t write_getfs(struct file *file, char *buf, size_t size)
382{
383 struct nfsctl_fsparm *data;
384 struct sockaddr_in *sin;
385 struct auth_domain *clp;
386 int err = 0;
387 struct knfsd_fh *res;
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100388 struct in6_addr in6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (size < sizeof(*data))
391 return -EINVAL;
392 data = (struct nfsctl_fsparm*)buf;
393 err = -EPROTONOSUPPORT;
394 if (data->gd_addr.sa_family != AF_INET)
395 goto out;
396 sin = (struct sockaddr_in *)&data->gd_addr;
397 if (data->gd_maxlen > NFS3_FHSIZE)
398 data->gd_maxlen = NFS3_FHSIZE;
399
400 res = (struct knfsd_fh*)buf;
401
402 exp_readlock();
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100403
404 ipv6_addr_set_v4mapped(sin->sin_addr.s_addr, &in6);
405
406 clp = auth_unix_lookup(&in6);
407 if (!clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 err = -EPERM;
409 else {
410 err = exp_rootfh(clp, data->gd_path, res, data->gd_maxlen);
411 auth_domain_put(clp);
412 }
413 exp_readunlock();
414 if (err == 0)
Andrew Morton12127492007-07-17 04:04:34 -0700415 err = res->fh_size + offsetof(struct knfsd_fh, fh_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 out:
417 return err;
418}
419
Chuck Lever262a0982008-12-12 16:57:35 -0500420/**
421 * write_getfd - Get a fixed-length NFS file handle by path (used by mountd)
422 *
423 * Deprecated. /proc/fs/nfsd/filehandle is preferred.
424 * Function remains to support old versions of nfs-utils.
425 *
426 * Input:
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
434 * Output:
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
439 *
440 * Note: Only AF_INET client addresses are passed in, since gd_addr
441 * is the same size as a struct sockaddr_in.
442 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443static ssize_t write_getfd(struct file *file, char *buf, size_t size)
444{
445 struct nfsctl_fdparm *data;
446 struct sockaddr_in *sin;
447 struct auth_domain *clp;
448 int err = 0;
449 struct knfsd_fh fh;
450 char *res;
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100451 struct in6_addr in6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 if (size < sizeof(*data))
454 return -EINVAL;
455 data = (struct nfsctl_fdparm*)buf;
456 err = -EPROTONOSUPPORT;
457 if (data->gd_addr.sa_family != AF_INET)
458 goto out;
459 err = -EINVAL;
460 if (data->gd_version < 2 || data->gd_version > NFSSVC_MAXVERS)
461 goto out;
462
463 res = buf;
464 sin = (struct sockaddr_in *)&data->gd_addr;
465 exp_readlock();
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100466
467 ipv6_addr_set_v4mapped(sin->sin_addr.s_addr, &in6);
468
469 clp = auth_unix_lookup(&in6);
470 if (!clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 err = -EPERM;
472 else {
473 err = exp_rootfh(clp, data->gd_path, &fh, NFS_FHSIZE);
474 auth_domain_put(clp);
475 }
476 exp_readunlock();
477
478 if (err == 0) {
479 memset(res,0, NFS_FHSIZE);
480 memcpy(res, &fh.fh_base, fh.fh_size);
481 err = NFS_FHSIZE;
482 }
483 out:
484 return err;
485}
486
Chuck Lever262a0982008-12-12 16:57:35 -0500487/**
488 * write_unlock_ip - Release all locks used by a client
489 *
490 * Experimental.
491 *
492 * Input:
493 * buf: '\n'-terminated C string containing a
Chuck Lever41160922009-08-09 15:09:40 -0400494 * presentation format IP address
Chuck Lever262a0982008-12-12 16:57:35 -0500495 * size: length of C string in @buf
496 * Output:
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
Chuck Lever262a0982008-12-12 16:57:35 -0500500 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500501static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500502{
Chuck Lever41160922009-08-09 15:09:40 -0400503 struct sockaddr_storage address;
504 struct sockaddr *sap = (struct sockaddr *)&address;
505 size_t salen = sizeof(address);
Chuck Lever367c8c72008-06-30 18:58:14 -0400506 char *fo_path;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500507
508 /* sanity check */
509 if (size == 0)
510 return -EINVAL;
511
512 if (buf[size-1] != '\n')
513 return -EINVAL;
514
515 fo_path = buf;
516 if (qword_get(&buf, fo_path, size) < 0)
517 return -EINVAL;
518
Chuck Lever41160922009-08-09 15:09:40 -0400519 if (rpc_pton(fo_path, size, sap, salen) == 0)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500520 return -EINVAL;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500521
Chuck Lever41160922009-08-09 15:09:40 -0400522 return nlmsvc_unlock_all_by_ip(sap);
Wendy Cheng4373ea82008-01-17 11:10:12 -0500523}
524
Chuck Lever262a0982008-12-12 16:57:35 -0500525/**
526 * write_unlock_fs - Release all locks on a local file system
527 *
528 * Experimental.
529 *
530 * Input:
531 * buf: '\n'-terminated C string containing the
532 * absolute pathname of a local file system
533 * size: length of C string in @buf
534 * Output:
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
538 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500539static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
Wendy Cheng17efa372008-01-17 11:10:12 -0500540{
Al Viroa63bb992008-08-02 01:03:36 -0400541 struct path path;
Wendy Cheng17efa372008-01-17 11:10:12 -0500542 char *fo_path;
543 int error;
544
545 /* sanity check */
546 if (size == 0)
547 return -EINVAL;
548
549 if (buf[size-1] != '\n')
550 return -EINVAL;
551
552 fo_path = buf;
553 if (qword_get(&buf, fo_path, size) < 0)
554 return -EINVAL;
555
Al Viroa63bb992008-08-02 01:03:36 -0400556 error = kern_path(fo_path, 0, &path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500557 if (error)
558 return error;
559
Chuck Lever262a0982008-12-12 16:57:35 -0500560 /*
561 * XXX: Needs better sanity checking. Otherwise we could end up
562 * releasing locks on the wrong file system.
563 *
564 * For example:
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?
568 */
Al Viroa63bb992008-08-02 01:03:36 -0400569 error = nlmsvc_unlock_all_by_sb(path.mnt->mnt_sb);
Wendy Cheng17efa372008-01-17 11:10:12 -0500570
Al Viroa63bb992008-08-02 01:03:36 -0400571 path_put(&path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500572 return error;
573}
574
Chuck Lever262a0982008-12-12 16:57:35 -0500575/**
576 * write_filehandle - Get a variable-length NFS file handle by path
577 *
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.
581 *
582 * Input:
583 * buf:
584 * domain: client domain name
585 * path: export pathname
586 * maxsize: numeric maximum size of
587 * @buf
588 * size: length of C string in @buf
589 * Output:
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
595 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
597{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 char *dname, *path;
Andrew Morton246d95b2007-08-09 00:53:50 -0700599 int uninitialized_var(maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 char *mesg = buf;
601 int len;
602 struct auth_domain *dom;
603 struct knfsd_fh fh;
604
J. Bruce Fields87d26ea2008-01-22 17:40:42 -0500605 if (size == 0)
606 return -EINVAL;
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (buf[size-1] != '\n')
609 return -EINVAL;
610 buf[size-1] = 0;
611
612 dname = mesg;
613 len = qword_get(&mesg, dname, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500614 if (len <= 0)
615 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 path = dname+len+1;
618 len = qword_get(&mesg, path, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500619 if (len <= 0)
620 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 len = get_int(&mesg, &maxsize);
623 if (len)
624 return len;
625
626 if (maxsize < NFS_FHSIZE)
627 return -EINVAL;
628 if (maxsize > NFS3_FHSIZE)
629 maxsize = NFS3_FHSIZE;
630
631 if (qword_get(&mesg, mesg, size)>0)
632 return -EINVAL;
633
634 /* we have all the words, they are in buf.. */
635 dom = unix_domain_find(dname);
636 if (!dom)
637 return -ENOMEM;
638
639 len = exp_rootfh(dom, path, &fh, maxsize);
640 auth_domain_put(dom);
641 if (len)
642 return len;
643
Chuck Lever54224f02008-12-12 16:57:20 -0500644 mesg = buf;
645 len = SIMPLE_TRANSACTION_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 qword_addhex(&mesg, &len, (char*)&fh.fh_base, fh.fh_size);
647 mesg[-1] = '\n';
648 return mesg - buf;
649}
650
Chuck Lever262a0982008-12-12 16:57:35 -0500651/**
652 * write_threads - Start NFSD, or report the current number of running threads
653 *
654 * Input:
655 * buf: ignored
656 * size: zero
657 * Output:
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
663 *
664 * OR
665 *
666 * Input:
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
671 * Output:
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
678 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679static ssize_t write_threads(struct file *file, char *buf, size_t size)
680{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 char *mesg = buf;
682 int rv;
683 if (size > 0) {
684 int newthreads;
685 rv = get_int(&mesg, &newthreads);
686 if (rv)
687 return rv;
Chuck Lever9e074852008-12-12 16:57:27 -0500688 if (newthreads < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return -EINVAL;
Chuck Lever9e074852008-12-12 16:57:27 -0500690 rv = nfsd_svc(NFS_PORT, newthreads);
NeilBrown82e12fe2009-06-16 11:03:07 +1000691 if (rv < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return rv;
NeilBrown82e12fe2009-06-16 11:03:07 +1000693 } else
694 rv = nfsd_nrthreads();
Chuck Levere06b6402009-04-23 19:33:25 -0400695
NeilBrown82e12fe2009-06-16 11:03:07 +1000696 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Chuck Lever262a0982008-12-12 16:57:35 -0500699/**
700 * write_pool_threads - Set or report the current number of threads per pool
701 *
702 * Input:
703 * buf: ignored
704 * size: zero
705 *
706 * OR
707 *
708 * Input:
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
714 * Output:
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
720 */
Greg Bankseed29652006-10-02 02:18:02 -0700721static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
722{
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
725 */
726 char *mesg = buf;
727 int i;
728 int rv;
729 int len;
Neil Brownbedbdd82008-06-10 08:40:35 -0400730 int npools;
Greg Bankseed29652006-10-02 02:18:02 -0700731 int *nthreads;
732
Neil Brownbedbdd82008-06-10 08:40:35 -0400733 mutex_lock(&nfsd_mutex);
734 npools = nfsd_nrpools();
Greg Bankseed29652006-10-02 02:18:02 -0700735 if (npools == 0) {
736 /*
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.
740 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400741 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700742 strcpy(buf, "0\n");
743 return strlen(buf);
744 }
745
746 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
Neil Brownbedbdd82008-06-10 08:40:35 -0400747 rv = -ENOMEM;
Greg Bankseed29652006-10-02 02:18:02 -0700748 if (nthreads == NULL)
Neil Brownbedbdd82008-06-10 08:40:35 -0400749 goto out_free;
Greg Bankseed29652006-10-02 02:18:02 -0700750
751 if (size > 0) {
752 for (i = 0; i < npools; i++) {
753 rv = get_int(&mesg, &nthreads[i]);
754 if (rv == -ENOENT)
755 break; /* fewer numbers than pools */
756 if (rv)
757 goto out_free; /* syntax error */
758 rv = -EINVAL;
759 if (nthreads[i] < 0)
760 goto out_free;
761 }
762 rv = nfsd_set_nrthreads(i, nthreads);
763 if (rv)
764 goto out_free;
765 }
766
767 rv = nfsd_get_nrthreads(npools, nthreads);
768 if (rv)
769 goto out_free;
770
771 mesg = buf;
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' : ' '));
775 len = strlen(mesg);
776 size -= len;
777 mesg += len;
778 }
779
Neil Brownbedbdd82008-06-10 08:40:35 -0400780 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700781 return (mesg-buf);
782
783out_free:
784 kfree(nthreads);
Neil Brownbedbdd82008-06-10 08:40:35 -0400785 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700786 return rv;
787}
788
Jeff Layton3dd98a32008-06-10 08:40:36 -0400789static ssize_t __write_versions(struct file *file, char *buf, size_t size)
NeilBrown70c3b762005-11-07 01:00:25 -0800790{
NeilBrown70c3b762005-11-07 01:00:25 -0800791 char *mesg = buf;
Benny Halevy8daf2202009-04-03 08:28:59 +0300792 char *vers, *minorp, sign;
Chuck Lever261758b2009-04-23 19:33:18 -0400793 int len, num, remaining;
Benny Halevy8daf2202009-04-03 08:28:59 +0300794 unsigned minor;
NeilBrown70c3b762005-11-07 01:00:25 -0800795 ssize_t tlen = 0;
796 char *sep;
797
798 if (size>0) {
799 if (nfsd_serv)
NeilBrown6658d3a2006-10-02 02:17:46 -0700800 /* Cannot change versions without updating
801 * nfsd_serv->sv_xdrsize, and reallocing
802 * rq_argp and rq_resp
803 */
NeilBrown70c3b762005-11-07 01:00:25 -0800804 return -EBUSY;
805 if (buf[size-1] != '\n')
806 return -EINVAL;
807 buf[size-1] = 0;
808
809 vers = mesg;
810 len = qword_get(&mesg, vers, size);
811 if (len <= 0) return -EINVAL;
812 do {
813 sign = *vers;
814 if (sign == '+' || sign == '-')
Benny Halevy8daf2202009-04-03 08:28:59 +0300815 num = simple_strtol((vers+1), &minorp, 0);
NeilBrown70c3b762005-11-07 01:00:25 -0800816 else
Benny Halevy8daf2202009-04-03 08:28:59 +0300817 num = simple_strtol(vers, &minorp, 0);
818 if (*minorp == '.') {
819 if (num < 4)
820 return -EINVAL;
821 minor = simple_strtoul(minorp+1, NULL, 0);
822 if (minor == 0)
823 return -EINVAL;
824 if (nfsd_minorversion(minor, sign == '-' ?
825 NFSD_CLEAR : NFSD_SET) < 0)
826 return -EINVAL;
827 goto next;
828 }
NeilBrown70c3b762005-11-07 01:00:25 -0800829 switch(num) {
830 case 2:
831 case 3:
832 case 4:
NeilBrown6658d3a2006-10-02 02:17:46 -0700833 nfsd_vers(num, sign == '-' ? NFSD_CLEAR : NFSD_SET);
NeilBrown70c3b762005-11-07 01:00:25 -0800834 break;
835 default:
836 return -EINVAL;
837 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300838 next:
NeilBrown70c3b762005-11-07 01:00:25 -0800839 vers += len + 1;
NeilBrown70c3b762005-11-07 01:00:25 -0800840 } 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
843 */
NeilBrown6658d3a2006-10-02 02:17:46 -0700844 nfsd_reset_versions();
NeilBrown70c3b762005-11-07 01:00:25 -0800845 }
Chuck Lever261758b2009-04-23 19:33:18 -0400846
NeilBrown70c3b762005-11-07 01:00:25 -0800847 /* Now write current state into reply buffer */
848 len = 0;
849 sep = "";
Chuck Lever261758b2009-04-23 19:33:18 -0400850 remaining = SIMPLE_TRANSACTION_LIMIT;
NeilBrown70c3b762005-11-07 01:00:25 -0800851 for (num=2 ; num <= 4 ; num++)
NeilBrown6658d3a2006-10-02 02:17:46 -0700852 if (nfsd_vers(num, NFSD_AVAIL)) {
Chuck Lever261758b2009-04-23 19:33:18 -0400853 len = snprintf(buf, remaining, "%s%c%d", sep,
NeilBrown6658d3a2006-10-02 02:17:46 -0700854 nfsd_vers(num, NFSD_TEST)?'+':'-',
NeilBrown70c3b762005-11-07 01:00:25 -0800855 num);
856 sep = " ";
Chuck Lever261758b2009-04-23 19:33:18 -0400857
858 if (len > remaining)
859 break;
860 remaining -= len;
861 buf += len;
862 tlen += len;
NeilBrown70c3b762005-11-07 01:00:25 -0800863 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300864 if (nfsd_vers(4, NFSD_AVAIL))
Chuck Lever261758b2009-04-23 19:33:18 -0400865 for (minor = 1; minor <= NFSD_SUPPORTED_MINOR_VERSION;
866 minor++) {
867 len = snprintf(buf, remaining, " %c4.%u",
Benny Halevy8daf2202009-04-03 08:28:59 +0300868 (nfsd_vers(4, NFSD_TEST) &&
869 nfsd_minorversion(minor, NFSD_TEST)) ?
870 '+' : '-',
871 minor);
Chuck Lever261758b2009-04-23 19:33:18 -0400872
873 if (len > remaining)
874 break;
875 remaining -= len;
876 buf += len;
877 tlen += len;
878 }
879
880 len = snprintf(buf, remaining, "\n");
881 if (len > remaining)
882 return -EINVAL;
883 return tlen + len;
NeilBrown70c3b762005-11-07 01:00:25 -0800884}
885
Chuck Lever262a0982008-12-12 16:57:35 -0500886/**
887 * write_versions - Set or report the available NFS protocol versions
888 *
889 * Input:
890 * buf: ignored
891 * size: zero
892 * Output:
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
896 * protocol version;
897 * return code is the size in bytes of the string
898 * On error: return code is zero or a negative errno value
899 *
900 * OR
901 *
902 * Input:
903 * buf: C string containing whitespace-
904 * separated positive or negative
905 * integer values representing NFS
906 * protocol versions to enable ("+n")
907 * or disable ("-n")
908 * size: non-zero length of C string in @buf
909 * Output:
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
917 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400918static ssize_t write_versions(struct file *file, char *buf, size_t size)
919{
920 ssize_t rv;
921
922 mutex_lock(&nfsd_mutex);
923 rv = __write_versions(file, buf, size);
924 mutex_unlock(&nfsd_mutex);
925 return rv;
926}
927
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400928/*
Chuck Lever0a5372d2009-04-23 19:32:10 -0400929 * Zero-length write. Return a list of NFSD's current listener
930 * transports.
931 */
932static ssize_t __write_ports_names(char *buf)
933{
934 if (nfsd_serv == NULL)
935 return 0;
Chuck Lever335c54b2009-04-23 19:32:25 -0400936 return svc_xprt_names(nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
Chuck Lever0a5372d2009-04-23 19:32:10 -0400937}
938
939/*
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400940 * 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
942 * nfsd listener.
943 */
944static ssize_t __write_ports_addfd(char *buf)
945{
946 char *mesg = buf;
947 int fd, err;
948
949 err = get_int(&mesg, &fd);
950 if (err != 0 || fd < 0)
951 return -EINVAL;
952
953 err = nfsd_create_serv();
954 if (err != 0)
955 return err;
956
Chuck Leverea068ba2009-04-23 19:32:18 -0400957 err = lockd_up();
958 if (err != 0)
959 goto out;
960
Chuck Leverbfba9ab2009-04-23 19:32:33 -0400961 err = svc_addsock(nfsd_serv, fd, buf, SIMPLE_TRANSACTION_LIMIT);
Chuck Leverea068ba2009-04-23 19:32:18 -0400962 if (err < 0)
963 lockd_down();
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400964
Chuck Leverea068ba2009-04-23 19:32:18 -0400965out:
966 /* Decrease the count, but don't shut down the service */
967 nfsd_serv->sv_nrthreads--;
968 return err;
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400969}
970
971/*
Chuck Lever82d56592009-04-23 19:31:48 -0400972 * A '-' followed by the 'name' of a socket means we close the socket.
973 */
974static ssize_t __write_ports_delfd(char *buf)
975{
976 char *toclose;
977 int len = 0;
978
979 toclose = kstrdup(buf + 1, GFP_KERNEL);
980 if (toclose == NULL)
981 return -ENOMEM;
982
983 if (nfsd_serv != NULL)
Chuck Lever8435d342009-04-23 19:32:40 -0400984 len = svc_sock_names(nfsd_serv, buf,
985 SIMPLE_TRANSACTION_LIMIT, toclose);
Chuck Lever82d56592009-04-23 19:31:48 -0400986 if (len >= 0)
987 lockd_down();
988
989 kfree(toclose);
990 return len;
991}
992
993/*
Chuck Lever4eb68c22009-04-23 19:31:40 -0400994 * A transport listener is added by writing it's transport name and
995 * a port number.
996 */
997static ssize_t __write_ports_addxprt(char *buf)
998{
999 char transport[16];
1000 int port, err;
1001
1002 if (sscanf(buf, "%15s %4u", transport, &port) != 2)
1003 return -EINVAL;
1004
1005 if (port < 1 || port > USHORT_MAX)
1006 return -EINVAL;
1007
1008 err = nfsd_create_serv();
1009 if (err != 0)
1010 return err;
1011
1012 err = svc_create_xprt(nfsd_serv, transport,
1013 PF_INET, port, SVC_SOCK_ANONYMOUS);
1014 if (err < 0) {
1015 /* Give a reasonable perror msg for bad transport string */
1016 if (err == -ENOENT)
1017 err = -EPROTONOSUPPORT;
1018 return err;
1019 }
1020 return 0;
1021}
1022
1023/*
Chuck Lever4cd5dc72009-04-23 19:31:32 -04001024 * A transport listener is removed by writing a "-", it's transport
1025 * name, and it's port number.
1026 */
1027static ssize_t __write_ports_delxprt(char *buf)
1028{
1029 struct svc_xprt *xprt;
1030 char transport[16];
1031 int port;
1032
1033 if (sscanf(&buf[1], "%15s %4u", transport, &port) != 2)
1034 return -EINVAL;
1035
1036 if (port < 1 || port > USHORT_MAX || nfsd_serv == NULL)
1037 return -EINVAL;
1038
1039 xprt = svc_find_xprt(nfsd_serv, transport, AF_UNSPEC, port);
1040 if (xprt == NULL)
1041 return -ENOTCONN;
1042
1043 svc_close_xprt(xprt);
1044 svc_xprt_put(xprt);
1045 return 0;
1046}
1047
Neil Brownbedbdd82008-06-10 08:40:35 -04001048static ssize_t __write_ports(struct file *file, char *buf, size_t size)
NeilBrown80212d52006-10-02 02:17:47 -07001049{
Chuck Lever0a5372d2009-04-23 19:32:10 -04001050 if (size == 0)
1051 return __write_ports_names(buf);
Chuck Lever0b7c2f62009-04-23 19:31:55 -04001052
1053 if (isdigit(buf[0]))
1054 return __write_ports_addfd(buf);
Chuck Lever82d56592009-04-23 19:31:48 -04001055
1056 if (buf[0] == '-' && isdigit(buf[1]))
1057 return __write_ports_delfd(buf);
Chuck Lever4eb68c22009-04-23 19:31:40 -04001058
1059 if (isalpha(buf[0]))
1060 return __write_ports_addxprt(buf);
Chuck Lever4cd5dc72009-04-23 19:31:32 -04001061
1062 if (buf[0] == '-' && isalpha(buf[1]))
1063 return __write_ports_delxprt(buf);
1064
NeilBrownb41b66d2006-10-02 02:17:48 -07001065 return -EINVAL;
NeilBrown80212d52006-10-02 02:17:47 -07001066}
1067
Chuck Lever262a0982008-12-12 16:57:35 -05001068/**
1069 * write_ports - Pass a socket file descriptor or transport name to listen on
1070 *
1071 * Input:
1072 * buf: ignored
1073 * size: zero
1074 * Output:
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
1080 *
1081 * OR
1082 *
1083 * Input:
1084 * buf: C string containing an unsigned
1085 * integer value representing a bound
1086 * but unconnected socket that is to be
Chuck Leverc71206a2009-04-23 19:32:03 -04001087 * used as an NFSD listener; listen(3)
1088 * must be called for a SOCK_STREAM
1089 * socket, otherwise it is ignored
Chuck Lever262a0982008-12-12 16:57:35 -05001090 * size: non-zero length of C string in @buf
1091 * Output:
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
1095 * the listener;
1096 * return code is the size in bytes of the string
1097 * On error: return code is a negative errno value
1098 *
1099 * OR
1100 *
1101 * Input:
1102 * buf: C string containing a "-" followed
1103 * by an integer value representing a
1104 * previously passed in socket file
1105 * descriptor
1106 * size: non-zero length of C string in @buf
1107 * Output:
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
1113 *
1114 * OR
1115 *
1116 * Input:
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
1122 * Output:
1123 * On success: returns zero; NFS service is started
1124 * On error: return code is a negative errno value
1125 *
1126 * OR
1127 *
1128 * Input:
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
1134 * Output:
1135 * On success: returns zero; NFS service no longer listens
1136 * on that transport
1137 * On error: return code is a negative errno value
1138 */
Neil Brownbedbdd82008-06-10 08:40:35 -04001139static ssize_t write_ports(struct file *file, char *buf, size_t size)
1140{
1141 ssize_t rv;
Jeff Layton3dd98a32008-06-10 08:40:36 -04001142
Neil Brownbedbdd82008-06-10 08:40:35 -04001143 mutex_lock(&nfsd_mutex);
1144 rv = __write_ports(file, buf, size);
1145 mutex_unlock(&nfsd_mutex);
1146 return rv;
1147}
1148
1149
NeilBrown596bbe52006-10-04 02:15:48 -07001150int nfsd_max_blksize;
1151
Chuck Lever262a0982008-12-12 16:57:35 -05001152/**
1153 * write_maxblksize - Set or report the current NFS blksize
1154 *
1155 * Input:
1156 * buf: ignored
1157 * size: zero
1158 *
1159 * OR
1160 *
1161 * Input:
1162 * buf: C string containing an unsigned
1163 * integer value representing the new
1164 * NFS blksize
1165 * size: non-zero length of C string in @buf
1166 * Output:
1167 * On success: passed-in buffer filled with '\n'-terminated C string
1168 * containing numeric value of the current NFS blksize
1169 * setting;
1170 * return code is the size in bytes of the string
1171 * On error: return code is zero or a negative errno value
1172 */
NeilBrown596bbe52006-10-04 02:15:48 -07001173static ssize_t write_maxblksize(struct file *file, char *buf, size_t size)
1174{
1175 char *mesg = buf;
1176 if (size > 0) {
1177 int bsize;
1178 int rv = get_int(&mesg, &bsize);
1179 if (rv)
1180 return rv;
1181 /* force bsize into allowed range and
1182 * required alignment.
1183 */
1184 if (bsize < 1024)
1185 bsize = 1024;
1186 if (bsize > NFSSVC_MAXBLKSIZE)
1187 bsize = NFSSVC_MAXBLKSIZE;
1188 bsize &= ~(1024-1);
Neil Brownbedbdd82008-06-10 08:40:35 -04001189 mutex_lock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -07001190 if (nfsd_serv && nfsd_serv->sv_nrthreads) {
Neil Brownbedbdd82008-06-10 08:40:35 -04001191 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -07001192 return -EBUSY;
1193 }
1194 nfsd_max_blksize = bsize;
Neil Brownbedbdd82008-06-10 08:40:35 -04001195 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -07001196 }
Chuck Levere06b6402009-04-23 19:33:25 -04001197
1198 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
1199 nfsd_max_blksize);
NeilBrown596bbe52006-10-04 02:15:48 -07001200}
1201
NeilBrown70c3b762005-11-07 01:00:25 -08001202#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203extern time_t nfs4_leasetime(void);
1204
Jeff Layton3dd98a32008-06-10 08:40:36 -04001205static ssize_t __write_leasetime(struct file *file, char *buf, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
1207 /* if size > 10 seconds, call
1208 * nfs4_reset_lease() then write out the new lease (seconds) as reply
1209 */
1210 char *mesg = buf;
Jeff Layton3dd98a32008-06-10 08:40:36 -04001211 int rv, lease;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 if (size > 0) {
Jeff Layton3dd98a32008-06-10 08:40:36 -04001214 if (nfsd_serv)
1215 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 rv = get_int(&mesg, &lease);
1217 if (rv)
1218 return rv;
1219 if (lease < 10 || lease > 3600)
1220 return -EINVAL;
1221 nfs4_reset_lease(lease);
1222 }
Chuck Levere06b6402009-04-23 19:33:25 -04001223
1224 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%ld\n",
1225 nfs4_lease_time());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Chuck Lever262a0982008-12-12 16:57:35 -05001228/**
1229 * write_leasetime - Set or report the current NFSv4 lease time
1230 *
1231 * Input:
1232 * buf: ignored
1233 * size: zero
1234 *
1235 * OR
1236 *
1237 * Input:
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
1242 * Output:
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
1248 */
Jeff Layton3dd98a32008-06-10 08:40:36 -04001249static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
1250{
1251 ssize_t rv;
1252
1253 mutex_lock(&nfsd_mutex);
1254 rv = __write_leasetime(file, buf, size);
1255 mutex_unlock(&nfsd_mutex);
1256 return rv;
1257}
1258
1259extern char *nfs4_recoverydir(void);
1260
1261static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size)
NeilBrown0964a3d2005-06-23 22:04:32 -07001262{
1263 char *mesg = buf;
1264 char *recdir;
1265 int len, status;
1266
Jeff Layton3dd98a32008-06-10 08:40:36 -04001267 if (size > 0) {
1268 if (nfsd_serv)
1269 return -EBUSY;
1270 if (size > PATH_MAX || buf[size-1] != '\n')
1271 return -EINVAL;
1272 buf[size-1] = 0;
NeilBrown0964a3d2005-06-23 22:04:32 -07001273
Jeff Layton3dd98a32008-06-10 08:40:36 -04001274 recdir = mesg;
1275 len = qword_get(&mesg, recdir, size);
1276 if (len <= 0)
1277 return -EINVAL;
NeilBrown0964a3d2005-06-23 22:04:32 -07001278
Jeff Layton3dd98a32008-06-10 08:40:36 -04001279 status = nfs4_reset_recoverydir(recdir);
1280 }
Chuck Lever3d72ab82009-04-23 19:33:10 -04001281
1282 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n",
1283 nfs4_recoverydir());
NeilBrown0964a3d2005-06-23 22:04:32 -07001284}
Jeff Layton3dd98a32008-06-10 08:40:36 -04001285
Chuck Lever262a0982008-12-12 16:57:35 -05001286/**
1287 * write_recoverydir - Set or report the pathname of the recovery directory
1288 *
1289 * Input:
1290 * buf: ignored
1291 * size: zero
1292 *
1293 * OR
1294 *
1295 * Input:
1296 * buf: C string containing the pathname
1297 * of the directory on a local file
1298 * system containing permanent NFSv4
1299 * recovery data
1300 * size: non-zero length of C string in @buf
1301 * Output:
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
1306 */
Jeff Layton3dd98a32008-06-10 08:40:36 -04001307static ssize_t write_recoverydir(struct file *file, char *buf, size_t size)
1308{
1309 ssize_t rv;
1310
1311 mutex_lock(&nfsd_mutex);
1312 rv = __write_recoverydir(file, buf, size);
1313 mutex_unlock(&nfsd_mutex);
1314 return rv;
1315}
1316
NeilBrown70c3b762005-11-07 01:00:25 -08001317#endif
NeilBrown0964a3d2005-06-23 22:04:32 -07001318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319/*----------------------------------------------------------------------------*/
1320/*
1321 * populating the filesystem.
1322 */
1323
1324static int nfsd_fill_super(struct super_block * sb, void * data, int silent)
1325{
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},
Wendy Cheng4373ea82008-01-17 11:10:12 -05001335 [NFSD_FO_UnlockIP] = {"unlock_ip",
1336 &transaction_ops, S_IWUSR|S_IRUSR},
Wendy Cheng17efa372008-01-17 11:10:12 -05001337 [NFSD_FO_UnlockFS] = {"unlock_filesystem",
1338 &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1340 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Bankseed29652006-10-02 02:18:02 -07001341 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Banks03cf6c92009-01-13 21:26:36 +11001342 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
NeilBrown70c3b762005-11-07 01:00:25 -08001343 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown80212d52006-10-02 02:17:47 -07001344 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
NeilBrown596bbe52006-10-04 02:15:48 -07001345 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346#ifdef CONFIG_NFSD_V4
1347 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown0964a3d2005-06-23 22:04:32 -07001348 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349#endif
1350 /* last one */ {""}
1351 };
1352 return simple_fill_super(sb, 0x6e667364, nfsd_files);
1353}
1354
David Howells454e2392006-06-23 02:02:57 -07001355static int nfsd_get_sb(struct file_system_type *fs_type,
1356 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
David Howells454e2392006-06-23 02:02:57 -07001358 return get_sb_single(fs_type, flags, data, nfsd_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
1361static struct file_system_type nfsd_fs_type = {
1362 .owner = THIS_MODULE,
1363 .name = "nfsd",
1364 .get_sb = nfsd_get_sb,
1365 .kill_sb = kill_litter_super,
1366};
1367
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001368#ifdef CONFIG_PROC_FS
1369static int create_proc_exports_entry(void)
1370{
1371 struct proc_dir_entry *entry;
1372
1373 entry = proc_mkdir("fs/nfs", NULL);
1374 if (!entry)
1375 return -ENOMEM;
Denis V. Lunev9ef2db22008-04-29 01:02:04 -07001376 entry = proc_create("exports", 0, entry, &exports_operations);
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001377 if (!entry)
1378 return -ENOMEM;
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001379 return 0;
1380}
1381#else /* CONFIG_PROC_FS */
1382static int create_proc_exports_entry(void)
1383{
1384 return 0;
1385}
1386#endif
1387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388static int __init init_nfsd(void)
1389{
1390 int retval;
1391 printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
1392
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001393 retval = nfs4_state_init(); /* nfs4 locking state */
1394 if (retval)
1395 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 nfsd_stat_init(); /* Statistics */
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001397 retval = nfsd_reply_cache_init();
1398 if (retval)
1399 goto out_free_stat;
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001400 retval = nfsd_export_init();
1401 if (retval)
1402 goto out_free_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 nfsd_lockd_init(); /* lockd->nfsd callbacks */
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001404 retval = nfsd_idmap_init();
1405 if (retval)
1406 goto out_free_lockd;
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001407 retval = create_proc_exports_entry();
1408 if (retval)
1409 goto out_free_idmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 retval = register_filesystem(&nfsd_fs_type);
J. Bruce Fields26808d32007-11-09 13:44:06 -05001411 if (retval)
1412 goto out_free_all;
1413 return 0;
1414out_free_all:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001415 remove_proc_entry("fs/nfs/exports", NULL);
1416 remove_proc_entry("fs/nfs", NULL);
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001417out_free_idmap:
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001418 nfsd_idmap_shutdown();
1419out_free_lockd:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001420 nfsd_lockd_shutdown();
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001421 nfsd_export_shutdown();
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001422out_free_cache:
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001423 nfsd_reply_cache_shutdown();
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001424out_free_stat:
1425 nfsd_stat_shutdown();
J. Bruce Fields26808d32007-11-09 13:44:06 -05001426 nfsd4_free_slabs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return retval;
1428}
1429
1430static void __exit exit_nfsd(void)
1431{
1432 nfsd_export_shutdown();
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001433 nfsd_reply_cache_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 remove_proc_entry("fs/nfs/exports", NULL);
1435 remove_proc_entry("fs/nfs", NULL);
1436 nfsd_stat_shutdown();
1437 nfsd_lockd_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 nfsd_idmap_shutdown();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001439 nfsd4_free_slabs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 unregister_filesystem(&nfsd_fs_type);
1441}
1442
1443MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1444MODULE_LICENSE("GPL");
1445module_init(init_nfsd)
1446module_exit(exit_nfsd)