blob: 7ab70ff212d80a58dd66ba1f711967996933955f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Syscall interface to knfsd.
3 *
4 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
5 */
6
Al Viro3f8206d2008-07-26 03:46:43 -04007#include <linux/namei.h>
NeilBrownb41b66d2006-10-02 02:17:48 -07008#include <linux/ctype.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/nfsd_idmap.h>
NeilBrown80212d52006-10-02 02:17:47 -070011#include <linux/sunrpc/svcsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/nfsd/syscall.h>
Wendy Cheng4373ea82008-01-17 11:10:12 -050013#include <linux/lockd/lockd.h>
Chuck Lever41160922009-08-09 15:09:40 -040014#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Boaz Harrosh9a74af22009-12-03 20:30:56 +020016#include "nfsd.h"
17#include "cache.h"
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/*
20 * We have a single directory with 9 nodes in it.
21 */
22enum {
23 NFSD_Root = 1,
24 NFSD_Svc,
25 NFSD_Add,
26 NFSD_Del,
27 NFSD_Export,
28 NFSD_Unexport,
29 NFSD_Getfd,
30 NFSD_Getfs,
31 NFSD_List,
J. Bruce Fieldse8e87532009-12-14 12:53:32 -050032 NFSD_Export_features,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 NFSD_Fh,
Wendy Cheng4373ea82008-01-17 11:10:12 -050034 NFSD_FO_UnlockIP,
Wendy Cheng17efa372008-01-17 11:10:12 -050035 NFSD_FO_UnlockFS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 NFSD_Threads,
Greg Bankseed29652006-10-02 02:18:02 -070037 NFSD_Pool_Threads,
Greg Banks03cf6c92009-01-13 21:26:36 +110038 NFSD_Pool_Stats,
NeilBrown70c3b762005-11-07 01:00:25 -080039 NFSD_Versions,
NeilBrown80212d52006-10-02 02:17:47 -070040 NFSD_Ports,
NeilBrown596bbe52006-10-04 02:15:48 -070041 NFSD_MaxBlkSize,
NeilBrown70c3b762005-11-07 01:00:25 -080042 /*
43 * The below MUST come last. Otherwise we leave a hole in nfsd_files[]
44 * with !CONFIG_NFSD_V4 and simple_fill_super() goes oops
45 */
46#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 NFSD_Leasetime,
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050048 NFSD_Gracetime,
NeilBrown0964a3d2005-06-23 22:04:32 -070049 NFSD_RecoveryDir,
NeilBrown70c3b762005-11-07 01:00:25 -080050#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
53/*
54 * write() for these nodes.
55 */
56static ssize_t write_svc(struct file *file, char *buf, size_t size);
57static ssize_t write_add(struct file *file, char *buf, size_t size);
58static ssize_t write_del(struct file *file, char *buf, size_t size);
59static ssize_t write_export(struct file *file, char *buf, size_t size);
60static ssize_t write_unexport(struct file *file, char *buf, size_t size);
61static ssize_t write_getfd(struct file *file, char *buf, size_t size);
62static ssize_t write_getfs(struct file *file, char *buf, size_t size);
63static ssize_t write_filehandle(struct file *file, char *buf, size_t size);
Chuck Leverb046ccd2008-12-12 16:57:13 -050064static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size);
65static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static ssize_t write_threads(struct file *file, char *buf, size_t size);
Greg Bankseed29652006-10-02 02:18:02 -070067static ssize_t write_pool_threads(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080068static ssize_t write_versions(struct file *file, char *buf, size_t size);
NeilBrown80212d52006-10-02 02:17:47 -070069static ssize_t write_ports(struct file *file, char *buf, size_t size);
NeilBrown596bbe52006-10-04 02:15:48 -070070static ssize_t write_maxblksize(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080071#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static ssize_t write_leasetime(struct file *file, char *buf, size_t size);
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050073static ssize_t write_gracetime(struct file *file, char *buf, size_t size);
NeilBrown0964a3d2005-06-23 22:04:32 -070074static ssize_t write_recoverydir(struct file *file, char *buf, size_t size);
NeilBrown70c3b762005-11-07 01:00:25 -080075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77static ssize_t (*write_op[])(struct file *, char *, size_t) = {
78 [NFSD_Svc] = write_svc,
79 [NFSD_Add] = write_add,
80 [NFSD_Del] = write_del,
81 [NFSD_Export] = write_export,
82 [NFSD_Unexport] = write_unexport,
83 [NFSD_Getfd] = write_getfd,
84 [NFSD_Getfs] = write_getfs,
85 [NFSD_Fh] = write_filehandle,
Chuck Leverb046ccd2008-12-12 16:57:13 -050086 [NFSD_FO_UnlockIP] = write_unlock_ip,
87 [NFSD_FO_UnlockFS] = write_unlock_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 [NFSD_Threads] = write_threads,
Greg Bankseed29652006-10-02 02:18:02 -070089 [NFSD_Pool_Threads] = write_pool_threads,
NeilBrown70c3b762005-11-07 01:00:25 -080090 [NFSD_Versions] = write_versions,
NeilBrown80212d52006-10-02 02:17:47 -070091 [NFSD_Ports] = write_ports,
NeilBrown596bbe52006-10-04 02:15:48 -070092 [NFSD_MaxBlkSize] = write_maxblksize,
NeilBrown70c3b762005-11-07 01:00:25 -080093#ifdef CONFIG_NFSD_V4
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 [NFSD_Leasetime] = write_leasetime,
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -050095 [NFSD_Gracetime] = write_gracetime,
NeilBrown0964a3d2005-06-23 22:04:32 -070096 [NFSD_RecoveryDir] = write_recoverydir,
NeilBrown70c3b762005-11-07 01:00:25 -080097#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070098};
99
100static ssize_t nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos)
101{
Josef "Jeff" Sipek7eaa36e2006-12-08 02:36:41 -0800102 ino_t ino = file->f_path.dentry->d_inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 char *data;
104 ssize_t rv;
105
Tobias Klausere8c96f82006-03-24 03:15:34 -0800106 if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return -EINVAL;
108
109 data = simple_transaction_get(file, buf, size);
110 if (IS_ERR(data))
111 return PTR_ERR(data);
112
113 rv = write_op[ino](file, data, size);
NeilBrown8971a102007-02-14 00:33:11 -0800114 if (rv >= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 simple_transaction_set(file, rv);
116 rv = size;
117 }
118 return rv;
119}
120
NeilBrown73900222005-11-07 01:00:24 -0800121static ssize_t nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos)
122{
123 if (! file->private_data) {
124 /* An attempt to read a transaction file without writing
125 * causes a 0-byte write so that the file can return
126 * state information
127 */
128 ssize_t rv = nfsctl_transaction_write(file, buf, 0, pos);
129 if (rv < 0)
130 return rv;
131 }
132 return simple_transaction_read(file, buf, size, pos);
133}
134
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800135static const struct file_operations transaction_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .write = nfsctl_transaction_write,
NeilBrown73900222005-11-07 01:00:24 -0800137 .read = nfsctl_transaction_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 .release = simple_transaction_release,
139};
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static int exports_open(struct inode *inode, struct file *file)
142{
143 return seq_open(file, &nfs_exports_op);
144}
145
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800146static const struct file_operations exports_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .open = exports_open,
148 .read = seq_read,
149 .llseek = seq_lseek,
150 .release = seq_release,
Denis V. Lunev9ef2db22008-04-29 01:02:04 -0700151 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
J. Bruce Fieldse8e87532009-12-14 12:53:32 -0500154static int export_features_show(struct seq_file *m, void *v)
155{
156 seq_printf(m, "0x%x 0x%x\n", NFSEXP_ALLFLAGS, NFSEXP_SECINFO_FLAGS);
157 return 0;
158}
159
160static int export_features_open(struct inode *inode, struct file *file)
161{
162 return single_open(file, export_features_show, NULL);
163}
164
165static struct file_operations export_features_operations = {
166 .open = export_features_open,
167 .read = seq_read,
168 .llseek = seq_lseek,
169 .release = single_release,
170};
171
Greg Banks03cf6c92009-01-13 21:26:36 +1100172extern int nfsd_pool_stats_open(struct inode *inode, struct file *file);
Ryusei Yamaguchied2d8ae2009-08-16 00:54:41 +0900173extern int nfsd_pool_stats_release(struct inode *inode, struct file *file);
Greg Banks03cf6c92009-01-13 21:26:36 +1100174
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700175static const struct file_operations pool_stats_operations = {
Greg Banks03cf6c92009-01-13 21:26:36 +1100176 .open = nfsd_pool_stats_open,
177 .read = seq_read,
178 .llseek = seq_lseek,
Ryusei Yamaguchied2d8ae2009-08-16 00:54:41 +0900179 .release = nfsd_pool_stats_release,
Greg Banks03cf6c92009-01-13 21:26:36 +1100180 .owner = THIS_MODULE,
181};
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*----------------------------------------------------------------------------*/
184/*
185 * payload - write methods
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
187
Chuck Lever262a0982008-12-12 16:57:35 -0500188/**
189 * write_svc - Start kernel's NFSD server
190 *
191 * Deprecated. /proc/fs/nfsd/threads is preferred.
192 * Function remains to support old versions of nfs-utils.
193 *
194 * Input:
195 * buf: struct nfsctl_svc
196 * svc_port: port number of this
197 * server's listener
198 * svc_nthreads: number of threads to start
199 * size: size in bytes of passed in nfsctl_svc
200 * Output:
201 * On success: returns zero
202 * On error: return code is negative errno value
203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static ssize_t write_svc(struct file *file, char *buf, size_t size)
205{
206 struct nfsctl_svc *data;
NeilBrown82e12fe2009-06-16 11:03:07 +1000207 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (size < sizeof(*data))
209 return -EINVAL;
210 data = (struct nfsctl_svc*) buf;
NeilBrown82e12fe2009-06-16 11:03:07 +1000211 err = nfsd_svc(data->svc_port, data->svc_nthreads);
212 if (err < 0)
213 return err;
214 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Chuck Lever262a0982008-12-12 16:57:35 -0500217/**
218 * write_add - Add or modify client entry in auth unix cache
219 *
220 * Deprecated. /proc/net/rpc/auth.unix.ip is preferred.
221 * Function remains to support old versions of nfs-utils.
222 *
223 * Input:
224 * buf: struct nfsctl_client
225 * cl_ident: '\0'-terminated C string
226 * containing domain name
227 * of client
228 * cl_naddr: no. of items in cl_addrlist
229 * cl_addrlist: array of client addresses
230 * cl_fhkeytype: ignored
231 * cl_fhkeylen: ignored
232 * cl_fhkey: ignored
233 * size: size in bytes of passed in nfsctl_client
234 * Output:
235 * On success: returns zero
236 * On error: return code is negative errno value
237 *
238 * Note: Only AF_INET client addresses are passed in, since
239 * nfsctl_client.cl_addrlist contains only in_addr fields for addresses.
240 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static ssize_t write_add(struct file *file, char *buf, size_t size)
242{
243 struct nfsctl_client *data;
244 if (size < sizeof(*data))
245 return -EINVAL;
246 data = (struct nfsctl_client *)buf;
247 return exp_addclient(data);
248}
249
Chuck Lever262a0982008-12-12 16:57:35 -0500250/**
251 * write_del - Remove client from auth unix cache
252 *
253 * Deprecated. /proc/net/rpc/auth.unix.ip is preferred.
254 * Function remains to support old versions of nfs-utils.
255 *
256 * Input:
257 * buf: struct nfsctl_client
258 * cl_ident: '\0'-terminated C string
259 * containing domain name
260 * of client
261 * cl_naddr: ignored
262 * cl_addrlist: ignored
263 * cl_fhkeytype: ignored
264 * cl_fhkeylen: ignored
265 * cl_fhkey: ignored
266 * size: size in bytes of passed in nfsctl_client
267 * Output:
268 * On success: returns zero
269 * On error: return code is negative errno value
270 *
271 * Note: Only AF_INET client addresses are passed in, since
272 * nfsctl_client.cl_addrlist contains only in_addr fields for addresses.
273 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static ssize_t write_del(struct file *file, char *buf, size_t size)
275{
276 struct nfsctl_client *data;
277 if (size < sizeof(*data))
278 return -EINVAL;
279 data = (struct nfsctl_client *)buf;
280 return exp_delclient(data);
281}
282
Chuck Lever262a0982008-12-12 16:57:35 -0500283/**
284 * write_export - Export part or all of a local file system
285 *
286 * Deprecated. /proc/net/rpc/{nfsd.export,nfsd.fh} are preferred.
287 * Function remains to support old versions of nfs-utils.
288 *
289 * Input:
290 * buf: struct nfsctl_export
291 * ex_client: '\0'-terminated C string
292 * containing domain name
293 * of client allowed to access
294 * this export
295 * ex_path: '\0'-terminated C string
296 * containing pathname of
297 * directory in local file system
298 * ex_dev: fsid to use for this export
299 * ex_ino: ignored
300 * ex_flags: export flags for this export
301 * ex_anon_uid: UID to use for anonymous
302 * requests
303 * ex_anon_gid: GID to use for anonymous
304 * requests
305 * size: size in bytes of passed in nfsctl_export
306 * Output:
307 * On success: returns zero
308 * On error: return code is negative errno value
309 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static ssize_t write_export(struct file *file, char *buf, size_t size)
311{
312 struct nfsctl_export *data;
313 if (size < sizeof(*data))
314 return -EINVAL;
315 data = (struct nfsctl_export*)buf;
316 return exp_export(data);
317}
318
Chuck Lever262a0982008-12-12 16:57:35 -0500319/**
320 * write_unexport - Unexport a previously exported file system
321 *
322 * Deprecated. /proc/net/rpc/{nfsd.export,nfsd.fh} are preferred.
323 * Function remains to support old versions of nfs-utils.
324 *
325 * Input:
326 * buf: struct nfsctl_export
327 * ex_client: '\0'-terminated C string
328 * containing domain name
329 * of client no longer allowed
330 * to access this export
331 * ex_path: '\0'-terminated C string
332 * containing pathname of
333 * directory in local file system
334 * ex_dev: ignored
335 * ex_ino: ignored
336 * ex_flags: ignored
337 * ex_anon_uid: ignored
338 * ex_anon_gid: ignored
339 * size: size in bytes of passed in nfsctl_export
340 * Output:
341 * On success: returns zero
342 * On error: return code is negative errno value
343 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344static ssize_t write_unexport(struct file *file, char *buf, size_t size)
345{
346 struct nfsctl_export *data;
347
348 if (size < sizeof(*data))
349 return -EINVAL;
350 data = (struct nfsctl_export*)buf;
351 return exp_unexport(data);
352}
353
Chuck Lever262a0982008-12-12 16:57:35 -0500354/**
355 * write_getfs - Get a variable-length NFS file handle by path
356 *
357 * Deprecated. /proc/fs/nfsd/filehandle is preferred.
358 * Function remains to support old versions of nfs-utils.
359 *
360 * Input:
361 * buf: struct nfsctl_fsparm
362 * gd_addr: socket address of client
363 * gd_path: '\0'-terminated C string
364 * containing pathname of
365 * directory in local file system
366 * gd_maxlen: maximum size of returned file
367 * handle
368 * size: size in bytes of passed in nfsctl_fsparm
369 * Output:
370 * On success: passed-in buffer filled with a knfsd_fh structure
371 * (a variable-length raw NFS file handle);
372 * return code is the size in bytes of the file handle
373 * On error: return code is negative errno value
374 *
375 * Note: Only AF_INET client addresses are passed in, since gd_addr
376 * is the same size as a struct sockaddr_in.
377 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static ssize_t write_getfs(struct file *file, char *buf, size_t size)
379{
380 struct nfsctl_fsparm *data;
381 struct sockaddr_in *sin;
382 struct auth_domain *clp;
383 int err = 0;
384 struct knfsd_fh *res;
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100385 struct in6_addr in6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 if (size < sizeof(*data))
388 return -EINVAL;
389 data = (struct nfsctl_fsparm*)buf;
390 err = -EPROTONOSUPPORT;
391 if (data->gd_addr.sa_family != AF_INET)
392 goto out;
393 sin = (struct sockaddr_in *)&data->gd_addr;
394 if (data->gd_maxlen > NFS3_FHSIZE)
395 data->gd_maxlen = NFS3_FHSIZE;
396
397 res = (struct knfsd_fh*)buf;
398
399 exp_readlock();
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100400
401 ipv6_addr_set_v4mapped(sin->sin_addr.s_addr, &in6);
402
403 clp = auth_unix_lookup(&in6);
404 if (!clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 err = -EPERM;
406 else {
407 err = exp_rootfh(clp, data->gd_path, res, data->gd_maxlen);
408 auth_domain_put(clp);
409 }
410 exp_readunlock();
411 if (err == 0)
Andrew Morton12127492007-07-17 04:04:34 -0700412 err = res->fh_size + offsetof(struct knfsd_fh, fh_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 out:
414 return err;
415}
416
Chuck Lever262a0982008-12-12 16:57:35 -0500417/**
418 * write_getfd - Get a fixed-length NFS file handle by path (used by mountd)
419 *
420 * Deprecated. /proc/fs/nfsd/filehandle is preferred.
421 * Function remains to support old versions of nfs-utils.
422 *
423 * Input:
424 * buf: struct nfsctl_fdparm
425 * gd_addr: socket address of client
426 * gd_path: '\0'-terminated C string
427 * containing pathname of
428 * directory in local file system
429 * gd_version: fdparm structure version
430 * size: size in bytes of passed in nfsctl_fdparm
431 * Output:
432 * On success: passed-in buffer filled with nfsctl_res
433 * (a fixed-length raw NFS file handle);
434 * return code is the size in bytes of the file handle
435 * On error: return code is negative errno value
436 *
437 * Note: Only AF_INET client addresses are passed in, since gd_addr
438 * is the same size as a struct sockaddr_in.
439 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440static ssize_t write_getfd(struct file *file, char *buf, size_t size)
441{
442 struct nfsctl_fdparm *data;
443 struct sockaddr_in *sin;
444 struct auth_domain *clp;
445 int err = 0;
446 struct knfsd_fh fh;
447 char *res;
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100448 struct in6_addr in6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 if (size < sizeof(*data))
451 return -EINVAL;
452 data = (struct nfsctl_fdparm*)buf;
453 err = -EPROTONOSUPPORT;
454 if (data->gd_addr.sa_family != AF_INET)
455 goto out;
456 err = -EINVAL;
457 if (data->gd_version < 2 || data->gd_version > NFSSVC_MAXVERS)
458 goto out;
459
460 res = buf;
461 sin = (struct sockaddr_in *)&data->gd_addr;
462 exp_readlock();
Aurélien Charbonf15364b2008-01-18 15:50:56 +0100463
464 ipv6_addr_set_v4mapped(sin->sin_addr.s_addr, &in6);
465
466 clp = auth_unix_lookup(&in6);
467 if (!clp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 err = -EPERM;
469 else {
470 err = exp_rootfh(clp, data->gd_path, &fh, NFS_FHSIZE);
471 auth_domain_put(clp);
472 }
473 exp_readunlock();
474
475 if (err == 0) {
476 memset(res,0, NFS_FHSIZE);
477 memcpy(res, &fh.fh_base, fh.fh_size);
478 err = NFS_FHSIZE;
479 }
480 out:
481 return err;
482}
483
Chuck Lever262a0982008-12-12 16:57:35 -0500484/**
485 * write_unlock_ip - Release all locks used by a client
486 *
487 * Experimental.
488 *
489 * Input:
490 * buf: '\n'-terminated C string containing a
Chuck Lever41160922009-08-09 15:09:40 -0400491 * presentation format IP address
Chuck Lever262a0982008-12-12 16:57:35 -0500492 * size: length of C string in @buf
493 * Output:
494 * On success: returns zero if all specified locks were released;
495 * returns one if one or more locks were not released
496 * On error: return code is negative errno value
Chuck Lever262a0982008-12-12 16:57:35 -0500497 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500498static ssize_t write_unlock_ip(struct file *file, char *buf, size_t size)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500499{
Chuck Lever41160922009-08-09 15:09:40 -0400500 struct sockaddr_storage address;
501 struct sockaddr *sap = (struct sockaddr *)&address;
502 size_t salen = sizeof(address);
Chuck Lever367c8c72008-06-30 18:58:14 -0400503 char *fo_path;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500504
505 /* sanity check */
506 if (size == 0)
507 return -EINVAL;
508
509 if (buf[size-1] != '\n')
510 return -EINVAL;
511
512 fo_path = buf;
513 if (qword_get(&buf, fo_path, size) < 0)
514 return -EINVAL;
515
Chuck Lever41160922009-08-09 15:09:40 -0400516 if (rpc_pton(fo_path, size, sap, salen) == 0)
Wendy Cheng4373ea82008-01-17 11:10:12 -0500517 return -EINVAL;
Wendy Cheng4373ea82008-01-17 11:10:12 -0500518
Chuck Lever41160922009-08-09 15:09:40 -0400519 return nlmsvc_unlock_all_by_ip(sap);
Wendy Cheng4373ea82008-01-17 11:10:12 -0500520}
521
Chuck Lever262a0982008-12-12 16:57:35 -0500522/**
523 * write_unlock_fs - Release all locks on a local file system
524 *
525 * Experimental.
526 *
527 * Input:
528 * buf: '\n'-terminated C string containing the
529 * absolute pathname of a local file system
530 * size: length of C string in @buf
531 * Output:
532 * On success: returns zero if all specified locks were released;
533 * returns one if one or more locks were not released
534 * On error: return code is negative errno value
535 */
Chuck Leverb046ccd2008-12-12 16:57:13 -0500536static ssize_t write_unlock_fs(struct file *file, char *buf, size_t size)
Wendy Cheng17efa372008-01-17 11:10:12 -0500537{
Al Viroa63bb992008-08-02 01:03:36 -0400538 struct path path;
Wendy Cheng17efa372008-01-17 11:10:12 -0500539 char *fo_path;
540 int error;
541
542 /* sanity check */
543 if (size == 0)
544 return -EINVAL;
545
546 if (buf[size-1] != '\n')
547 return -EINVAL;
548
549 fo_path = buf;
550 if (qword_get(&buf, fo_path, size) < 0)
551 return -EINVAL;
552
Al Viroa63bb992008-08-02 01:03:36 -0400553 error = kern_path(fo_path, 0, &path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500554 if (error)
555 return error;
556
Chuck Lever262a0982008-12-12 16:57:35 -0500557 /*
558 * XXX: Needs better sanity checking. Otherwise we could end up
559 * releasing locks on the wrong file system.
560 *
561 * For example:
562 * 1. Does the path refer to a directory?
563 * 2. Is that directory a mount point, or
564 * 3. Is that directory the root of an exported file system?
565 */
Al Viroa63bb992008-08-02 01:03:36 -0400566 error = nlmsvc_unlock_all_by_sb(path.mnt->mnt_sb);
Wendy Cheng17efa372008-01-17 11:10:12 -0500567
Al Viroa63bb992008-08-02 01:03:36 -0400568 path_put(&path);
Wendy Cheng17efa372008-01-17 11:10:12 -0500569 return error;
570}
571
Chuck Lever262a0982008-12-12 16:57:35 -0500572/**
573 * write_filehandle - Get a variable-length NFS file handle by path
574 *
575 * On input, the buffer contains a '\n'-terminated C string comprised of
576 * three alphanumeric words separated by whitespace. The string may
577 * contain escape sequences.
578 *
579 * Input:
580 * buf:
581 * domain: client domain name
582 * path: export pathname
583 * maxsize: numeric maximum size of
584 * @buf
585 * size: length of C string in @buf
586 * Output:
587 * On success: passed-in buffer filled with '\n'-terminated C
588 * string containing a ASCII hex text version
589 * of the NFS file handle;
590 * return code is the size in bytes of the string
591 * On error: return code is negative errno value
592 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
594{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 char *dname, *path;
Andrew Morton246d95b2007-08-09 00:53:50 -0700596 int uninitialized_var(maxsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 char *mesg = buf;
598 int len;
599 struct auth_domain *dom;
600 struct knfsd_fh fh;
601
J. Bruce Fields87d26ea2008-01-22 17:40:42 -0500602 if (size == 0)
603 return -EINVAL;
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (buf[size-1] != '\n')
606 return -EINVAL;
607 buf[size-1] = 0;
608
609 dname = mesg;
610 len = qword_get(&mesg, dname, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500611 if (len <= 0)
612 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 path = dname+len+1;
615 len = qword_get(&mesg, path, size);
Chuck Lever54224f02008-12-12 16:57:20 -0500616 if (len <= 0)
617 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 len = get_int(&mesg, &maxsize);
620 if (len)
621 return len;
622
623 if (maxsize < NFS_FHSIZE)
624 return -EINVAL;
625 if (maxsize > NFS3_FHSIZE)
626 maxsize = NFS3_FHSIZE;
627
628 if (qword_get(&mesg, mesg, size)>0)
629 return -EINVAL;
630
631 /* we have all the words, they are in buf.. */
632 dom = unix_domain_find(dname);
633 if (!dom)
634 return -ENOMEM;
635
636 len = exp_rootfh(dom, path, &fh, maxsize);
637 auth_domain_put(dom);
638 if (len)
639 return len;
640
Chuck Lever54224f02008-12-12 16:57:20 -0500641 mesg = buf;
642 len = SIMPLE_TRANSACTION_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 qword_addhex(&mesg, &len, (char*)&fh.fh_base, fh.fh_size);
644 mesg[-1] = '\n';
645 return mesg - buf;
646}
647
Chuck Lever262a0982008-12-12 16:57:35 -0500648/**
649 * write_threads - Start NFSD, or report the current number of running threads
650 *
651 * Input:
652 * buf: ignored
653 * size: zero
654 * Output:
655 * On success: passed-in buffer filled with '\n'-terminated C
656 * string numeric value representing the number of
657 * running NFSD threads;
658 * return code is the size in bytes of the string
659 * On error: return code is zero
660 *
661 * OR
662 *
663 * Input:
664 * buf: C string containing an unsigned
665 * integer value representing the
666 * number of NFSD threads to start
667 * size: non-zero length of C string in @buf
668 * Output:
669 * On success: NFS service is started;
670 * passed-in buffer filled with '\n'-terminated C
671 * string numeric value representing the number of
672 * running NFSD threads;
673 * return code is the size in bytes of the string
674 * On error: return code is zero or a negative errno value
675 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676static ssize_t write_threads(struct file *file, char *buf, size_t size)
677{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 char *mesg = buf;
679 int rv;
680 if (size > 0) {
681 int newthreads;
682 rv = get_int(&mesg, &newthreads);
683 if (rv)
684 return rv;
Chuck Lever9e074852008-12-12 16:57:27 -0500685 if (newthreads < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return -EINVAL;
Chuck Lever9e074852008-12-12 16:57:27 -0500687 rv = nfsd_svc(NFS_PORT, newthreads);
NeilBrown82e12fe2009-06-16 11:03:07 +1000688 if (rv < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return rv;
NeilBrown82e12fe2009-06-16 11:03:07 +1000690 } else
691 rv = nfsd_nrthreads();
Chuck Levere06b6402009-04-23 19:33:25 -0400692
NeilBrown82e12fe2009-06-16 11:03:07 +1000693 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n", rv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Chuck Lever262a0982008-12-12 16:57:35 -0500696/**
697 * write_pool_threads - Set or report the current number of threads per pool
698 *
699 * Input:
700 * buf: ignored
701 * size: zero
702 *
703 * OR
704 *
705 * Input:
706 * buf: C string containing whitespace-
707 * separated unsigned integer values
708 * representing the number of NFSD
709 * threads to start in each pool
710 * size: non-zero length of C string in @buf
711 * Output:
712 * On success: passed-in buffer filled with '\n'-terminated C
713 * string containing integer values representing the
714 * number of NFSD threads in each pool;
715 * return code is the size in bytes of the string
716 * On error: return code is zero or a negative errno value
717 */
Greg Bankseed29652006-10-02 02:18:02 -0700718static ssize_t write_pool_threads(struct file *file, char *buf, size_t size)
719{
720 /* if size > 0, look for an array of number of threads per node
721 * and apply them then write out number of threads per node as reply
722 */
723 char *mesg = buf;
724 int i;
725 int rv;
726 int len;
Neil Brownbedbdd82008-06-10 08:40:35 -0400727 int npools;
Greg Bankseed29652006-10-02 02:18:02 -0700728 int *nthreads;
729
Neil Brownbedbdd82008-06-10 08:40:35 -0400730 mutex_lock(&nfsd_mutex);
731 npools = nfsd_nrpools();
Greg Bankseed29652006-10-02 02:18:02 -0700732 if (npools == 0) {
733 /*
734 * NFS is shut down. The admin can start it by
735 * writing to the threads file but NOT the pool_threads
736 * file, sorry. Report zero threads.
737 */
Neil Brownbedbdd82008-06-10 08:40:35 -0400738 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700739 strcpy(buf, "0\n");
740 return strlen(buf);
741 }
742
743 nthreads = kcalloc(npools, sizeof(int), GFP_KERNEL);
Neil Brownbedbdd82008-06-10 08:40:35 -0400744 rv = -ENOMEM;
Greg Bankseed29652006-10-02 02:18:02 -0700745 if (nthreads == NULL)
Neil Brownbedbdd82008-06-10 08:40:35 -0400746 goto out_free;
Greg Bankseed29652006-10-02 02:18:02 -0700747
748 if (size > 0) {
749 for (i = 0; i < npools; i++) {
750 rv = get_int(&mesg, &nthreads[i]);
751 if (rv == -ENOENT)
752 break; /* fewer numbers than pools */
753 if (rv)
754 goto out_free; /* syntax error */
755 rv = -EINVAL;
756 if (nthreads[i] < 0)
757 goto out_free;
758 }
759 rv = nfsd_set_nrthreads(i, nthreads);
760 if (rv)
761 goto out_free;
762 }
763
764 rv = nfsd_get_nrthreads(npools, nthreads);
765 if (rv)
766 goto out_free;
767
768 mesg = buf;
769 size = SIMPLE_TRANSACTION_LIMIT;
770 for (i = 0; i < npools && size > 0; i++) {
771 snprintf(mesg, size, "%d%c", nthreads[i], (i == npools-1 ? '\n' : ' '));
772 len = strlen(mesg);
773 size -= len;
774 mesg += len;
775 }
J. Bruce Fields413d63d7102009-07-28 11:37:25 -0400776 rv = mesg - buf;
Greg Bankseed29652006-10-02 02:18:02 -0700777out_free:
778 kfree(nthreads);
Neil Brownbedbdd82008-06-10 08:40:35 -0400779 mutex_unlock(&nfsd_mutex);
Greg Bankseed29652006-10-02 02:18:02 -0700780 return rv;
781}
782
Jeff Layton3dd98a32008-06-10 08:40:36 -0400783static ssize_t __write_versions(struct file *file, char *buf, size_t size)
NeilBrown70c3b762005-11-07 01:00:25 -0800784{
NeilBrown70c3b762005-11-07 01:00:25 -0800785 char *mesg = buf;
Benny Halevy8daf2202009-04-03 08:28:59 +0300786 char *vers, *minorp, sign;
Chuck Lever261758b2009-04-23 19:33:18 -0400787 int len, num, remaining;
Benny Halevy8daf2202009-04-03 08:28:59 +0300788 unsigned minor;
NeilBrown70c3b762005-11-07 01:00:25 -0800789 ssize_t tlen = 0;
790 char *sep;
791
792 if (size>0) {
793 if (nfsd_serv)
NeilBrown6658d3a2006-10-02 02:17:46 -0700794 /* Cannot change versions without updating
795 * nfsd_serv->sv_xdrsize, and reallocing
796 * rq_argp and rq_resp
797 */
NeilBrown70c3b762005-11-07 01:00:25 -0800798 return -EBUSY;
799 if (buf[size-1] != '\n')
800 return -EINVAL;
801 buf[size-1] = 0;
802
803 vers = mesg;
804 len = qword_get(&mesg, vers, size);
805 if (len <= 0) return -EINVAL;
806 do {
807 sign = *vers;
808 if (sign == '+' || sign == '-')
Benny Halevy8daf2202009-04-03 08:28:59 +0300809 num = simple_strtol((vers+1), &minorp, 0);
NeilBrown70c3b762005-11-07 01:00:25 -0800810 else
Benny Halevy8daf2202009-04-03 08:28:59 +0300811 num = simple_strtol(vers, &minorp, 0);
812 if (*minorp == '.') {
813 if (num < 4)
814 return -EINVAL;
815 minor = simple_strtoul(minorp+1, NULL, 0);
816 if (minor == 0)
817 return -EINVAL;
818 if (nfsd_minorversion(minor, sign == '-' ?
819 NFSD_CLEAR : NFSD_SET) < 0)
820 return -EINVAL;
821 goto next;
822 }
NeilBrown70c3b762005-11-07 01:00:25 -0800823 switch(num) {
824 case 2:
825 case 3:
826 case 4:
NeilBrown6658d3a2006-10-02 02:17:46 -0700827 nfsd_vers(num, sign == '-' ? NFSD_CLEAR : NFSD_SET);
NeilBrown70c3b762005-11-07 01:00:25 -0800828 break;
829 default:
830 return -EINVAL;
831 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300832 next:
NeilBrown70c3b762005-11-07 01:00:25 -0800833 vers += len + 1;
NeilBrown70c3b762005-11-07 01:00:25 -0800834 } while ((len = qword_get(&mesg, vers, size)) > 0);
835 /* If all get turned off, turn them back on, as
836 * having no versions is BAD
837 */
NeilBrown6658d3a2006-10-02 02:17:46 -0700838 nfsd_reset_versions();
NeilBrown70c3b762005-11-07 01:00:25 -0800839 }
Chuck Lever261758b2009-04-23 19:33:18 -0400840
NeilBrown70c3b762005-11-07 01:00:25 -0800841 /* Now write current state into reply buffer */
842 len = 0;
843 sep = "";
Chuck Lever261758b2009-04-23 19:33:18 -0400844 remaining = SIMPLE_TRANSACTION_LIMIT;
NeilBrown70c3b762005-11-07 01:00:25 -0800845 for (num=2 ; num <= 4 ; num++)
NeilBrown6658d3a2006-10-02 02:17:46 -0700846 if (nfsd_vers(num, NFSD_AVAIL)) {
Chuck Lever261758b2009-04-23 19:33:18 -0400847 len = snprintf(buf, remaining, "%s%c%d", sep,
NeilBrown6658d3a2006-10-02 02:17:46 -0700848 nfsd_vers(num, NFSD_TEST)?'+':'-',
NeilBrown70c3b762005-11-07 01:00:25 -0800849 num);
850 sep = " ";
Chuck Lever261758b2009-04-23 19:33:18 -0400851
852 if (len > remaining)
853 break;
854 remaining -= len;
855 buf += len;
856 tlen += len;
NeilBrown70c3b762005-11-07 01:00:25 -0800857 }
Benny Halevy8daf2202009-04-03 08:28:59 +0300858 if (nfsd_vers(4, NFSD_AVAIL))
Chuck Lever261758b2009-04-23 19:33:18 -0400859 for (minor = 1; minor <= NFSD_SUPPORTED_MINOR_VERSION;
860 minor++) {
861 len = snprintf(buf, remaining, " %c4.%u",
Benny Halevy8daf2202009-04-03 08:28:59 +0300862 (nfsd_vers(4, NFSD_TEST) &&
863 nfsd_minorversion(minor, NFSD_TEST)) ?
864 '+' : '-',
865 minor);
Chuck Lever261758b2009-04-23 19:33:18 -0400866
867 if (len > remaining)
868 break;
869 remaining -= len;
870 buf += len;
871 tlen += len;
872 }
873
874 len = snprintf(buf, remaining, "\n");
875 if (len > remaining)
876 return -EINVAL;
877 return tlen + len;
NeilBrown70c3b762005-11-07 01:00:25 -0800878}
879
Chuck Lever262a0982008-12-12 16:57:35 -0500880/**
881 * write_versions - Set or report the available NFS protocol versions
882 *
883 * Input:
884 * buf: ignored
885 * size: zero
886 * Output:
887 * On success: passed-in buffer filled with '\n'-terminated C
888 * string containing positive or negative integer
889 * values representing the current status of each
890 * protocol version;
891 * return code is the size in bytes of the string
892 * On error: return code is zero or a negative errno value
893 *
894 * OR
895 *
896 * Input:
897 * buf: C string containing whitespace-
898 * separated positive or negative
899 * integer values representing NFS
900 * protocol versions to enable ("+n")
901 * or disable ("-n")
902 * size: non-zero length of C string in @buf
903 * Output:
904 * On success: status of zero or more protocol versions has
905 * been updated; passed-in buffer filled with
906 * '\n'-terminated C string containing positive
907 * or negative integer values representing the
908 * current status of each protocol version;
909 * return code is the size in bytes of the string
910 * On error: return code is zero or a negative errno value
911 */
Jeff Layton3dd98a32008-06-10 08:40:36 -0400912static ssize_t write_versions(struct file *file, char *buf, size_t size)
913{
914 ssize_t rv;
915
916 mutex_lock(&nfsd_mutex);
917 rv = __write_versions(file, buf, size);
918 mutex_unlock(&nfsd_mutex);
919 return rv;
920}
921
Chuck Lever4cd5dc72009-04-23 19:31:32 -0400922/*
Chuck Lever0a5372d2009-04-23 19:32:10 -0400923 * Zero-length write. Return a list of NFSD's current listener
924 * transports.
925 */
926static ssize_t __write_ports_names(char *buf)
927{
928 if (nfsd_serv == NULL)
929 return 0;
Chuck Lever335c54b2009-04-23 19:32:25 -0400930 return svc_xprt_names(nfsd_serv, buf, SIMPLE_TRANSACTION_LIMIT);
Chuck Lever0a5372d2009-04-23 19:32:10 -0400931}
932
933/*
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400934 * A single 'fd' number was written, in which case it must be for
935 * a socket of a supported family/protocol, and we use it as an
936 * nfsd listener.
937 */
938static ssize_t __write_ports_addfd(char *buf)
939{
940 char *mesg = buf;
941 int fd, err;
942
943 err = get_int(&mesg, &fd);
944 if (err != 0 || fd < 0)
945 return -EINVAL;
946
947 err = nfsd_create_serv();
948 if (err != 0)
949 return err;
950
Chuck Leverea068ba2009-04-23 19:32:18 -0400951 err = lockd_up();
952 if (err != 0)
953 goto out;
954
Chuck Leverbfba9ab2009-04-23 19:32:33 -0400955 err = svc_addsock(nfsd_serv, fd, buf, SIMPLE_TRANSACTION_LIMIT);
Chuck Leverea068ba2009-04-23 19:32:18 -0400956 if (err < 0)
957 lockd_down();
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400958
Chuck Leverea068ba2009-04-23 19:32:18 -0400959out:
960 /* Decrease the count, but don't shut down the service */
961 nfsd_serv->sv_nrthreads--;
962 return err;
Chuck Lever0b7c2f62009-04-23 19:31:55 -0400963}
964
965/*
Chuck Lever82d56592009-04-23 19:31:48 -0400966 * A '-' followed by the 'name' of a socket means we close the socket.
967 */
968static ssize_t __write_ports_delfd(char *buf)
969{
970 char *toclose;
971 int len = 0;
972
973 toclose = kstrdup(buf + 1, GFP_KERNEL);
974 if (toclose == NULL)
975 return -ENOMEM;
976
977 if (nfsd_serv != NULL)
Chuck Lever8435d342009-04-23 19:32:40 -0400978 len = svc_sock_names(nfsd_serv, buf,
979 SIMPLE_TRANSACTION_LIMIT, toclose);
Chuck Lever82d56592009-04-23 19:31:48 -0400980 if (len >= 0)
981 lockd_down();
982
983 kfree(toclose);
984 return len;
985}
986
987/*
Chuck Lever4eb68c22009-04-23 19:31:40 -0400988 * A transport listener is added by writing it's transport name and
989 * a port number.
990 */
991static ssize_t __write_ports_addxprt(char *buf)
992{
993 char transport[16];
Chuck Lever37498292010-01-26 14:04:22 -0500994 struct svc_xprt *xprt;
Chuck Lever4eb68c22009-04-23 19:31:40 -0400995 int port, err;
996
997 if (sscanf(buf, "%15s %4u", transport, &port) != 2)
998 return -EINVAL;
999
1000 if (port < 1 || port > USHORT_MAX)
1001 return -EINVAL;
1002
1003 err = nfsd_create_serv();
1004 if (err != 0)
1005 return err;
1006
1007 err = svc_create_xprt(nfsd_serv, transport,
1008 PF_INET, port, SVC_SOCK_ANONYMOUS);
Chuck Lever68717902010-01-26 14:04:13 -05001009 if (err < 0)
Chuck Lever37498292010-01-26 14:04:22 -05001010 goto out_err;
1011
1012 err = svc_create_xprt(nfsd_serv, transport,
1013 PF_INET6, port, SVC_SOCK_ANONYMOUS);
1014 if (err < 0 && err != -EAFNOSUPPORT)
1015 goto out_close;
Chuck Lever4eb68c22009-04-23 19:31:40 -04001016 return 0;
Chuck Lever37498292010-01-26 14:04:22 -05001017out_close:
1018 xprt = svc_find_xprt(nfsd_serv, transport, PF_INET, port);
1019 if (xprt != NULL) {
1020 svc_close_xprt(xprt);
1021 svc_xprt_put(xprt);
1022 }
1023out_err:
1024 /* Decrease the count, but don't shut down the service */
1025 nfsd_serv->sv_nrthreads--;
1026 return err;
Chuck Lever4eb68c22009-04-23 19:31:40 -04001027}
1028
1029/*
Chuck Lever4cd5dc72009-04-23 19:31:32 -04001030 * A transport listener is removed by writing a "-", it's transport
1031 * name, and it's port number.
1032 */
1033static ssize_t __write_ports_delxprt(char *buf)
1034{
1035 struct svc_xprt *xprt;
1036 char transport[16];
1037 int port;
1038
1039 if (sscanf(&buf[1], "%15s %4u", transport, &port) != 2)
1040 return -EINVAL;
1041
1042 if (port < 1 || port > USHORT_MAX || nfsd_serv == NULL)
1043 return -EINVAL;
1044
1045 xprt = svc_find_xprt(nfsd_serv, transport, AF_UNSPEC, port);
1046 if (xprt == NULL)
1047 return -ENOTCONN;
1048
1049 svc_close_xprt(xprt);
1050 svc_xprt_put(xprt);
1051 return 0;
1052}
1053
Neil Brownbedbdd82008-06-10 08:40:35 -04001054static ssize_t __write_ports(struct file *file, char *buf, size_t size)
NeilBrown80212d52006-10-02 02:17:47 -07001055{
Chuck Lever0a5372d2009-04-23 19:32:10 -04001056 if (size == 0)
1057 return __write_ports_names(buf);
Chuck Lever0b7c2f62009-04-23 19:31:55 -04001058
1059 if (isdigit(buf[0]))
1060 return __write_ports_addfd(buf);
Chuck Lever82d56592009-04-23 19:31:48 -04001061
1062 if (buf[0] == '-' && isdigit(buf[1]))
1063 return __write_ports_delfd(buf);
Chuck Lever4eb68c22009-04-23 19:31:40 -04001064
1065 if (isalpha(buf[0]))
1066 return __write_ports_addxprt(buf);
Chuck Lever4cd5dc72009-04-23 19:31:32 -04001067
1068 if (buf[0] == '-' && isalpha(buf[1]))
1069 return __write_ports_delxprt(buf);
1070
NeilBrownb41b66d2006-10-02 02:17:48 -07001071 return -EINVAL;
NeilBrown80212d52006-10-02 02:17:47 -07001072}
1073
Chuck Lever262a0982008-12-12 16:57:35 -05001074/**
1075 * write_ports - Pass a socket file descriptor or transport name to listen on
1076 *
1077 * Input:
1078 * buf: ignored
1079 * size: zero
1080 * Output:
1081 * On success: passed-in buffer filled with a '\n'-terminated C
1082 * string containing a whitespace-separated list of
1083 * named NFSD listeners;
1084 * return code is the size in bytes of the string
1085 * On error: return code is zero or a negative errno value
1086 *
1087 * OR
1088 *
1089 * Input:
1090 * buf: C string containing an unsigned
1091 * integer value representing a bound
1092 * but unconnected socket that is to be
Chuck Leverc71206a2009-04-23 19:32:03 -04001093 * used as an NFSD listener; listen(3)
1094 * must be called for a SOCK_STREAM
1095 * socket, otherwise it is ignored
Chuck Lever262a0982008-12-12 16:57:35 -05001096 * size: non-zero length of C string in @buf
1097 * Output:
1098 * On success: NFS service is started;
1099 * passed-in buffer filled with a '\n'-terminated C
1100 * string containing a unique alphanumeric name of
1101 * the listener;
1102 * return code is the size in bytes of the string
1103 * On error: return code is a negative errno value
1104 *
1105 * OR
1106 *
1107 * Input:
1108 * buf: C string containing a "-" followed
1109 * by an integer value representing a
1110 * previously passed in socket file
1111 * descriptor
1112 * size: non-zero length of C string in @buf
1113 * Output:
1114 * On success: NFS service no longer listens on that socket;
1115 * passed-in buffer filled with a '\n'-terminated C
1116 * string containing a unique name of the listener;
1117 * return code is the size in bytes of the string
1118 * On error: return code is a negative errno value
1119 *
1120 * OR
1121 *
1122 * Input:
1123 * buf: C string containing a transport
1124 * name and an unsigned integer value
1125 * representing the port to listen on,
1126 * separated by whitespace
1127 * size: non-zero length of C string in @buf
1128 * Output:
1129 * On success: returns zero; NFS service is started
1130 * On error: return code is a negative errno value
1131 *
1132 * OR
1133 *
1134 * Input:
1135 * buf: C string containing a "-" followed
1136 * by a transport name and an unsigned
1137 * integer value representing the port
1138 * to listen on, separated by whitespace
1139 * size: non-zero length of C string in @buf
1140 * Output:
1141 * On success: returns zero; NFS service no longer listens
1142 * on that transport
1143 * On error: return code is a negative errno value
1144 */
Neil Brownbedbdd82008-06-10 08:40:35 -04001145static ssize_t write_ports(struct file *file, char *buf, size_t size)
1146{
1147 ssize_t rv;
Jeff Layton3dd98a32008-06-10 08:40:36 -04001148
Neil Brownbedbdd82008-06-10 08:40:35 -04001149 mutex_lock(&nfsd_mutex);
1150 rv = __write_ports(file, buf, size);
1151 mutex_unlock(&nfsd_mutex);
1152 return rv;
1153}
1154
1155
NeilBrown596bbe52006-10-04 02:15:48 -07001156int nfsd_max_blksize;
1157
Chuck Lever262a0982008-12-12 16:57:35 -05001158/**
1159 * write_maxblksize - Set or report the current NFS blksize
1160 *
1161 * Input:
1162 * buf: ignored
1163 * size: zero
1164 *
1165 * OR
1166 *
1167 * Input:
1168 * buf: C string containing an unsigned
1169 * integer value representing the new
1170 * NFS blksize
1171 * size: non-zero length of C string in @buf
1172 * Output:
1173 * On success: passed-in buffer filled with '\n'-terminated C string
1174 * containing numeric value of the current NFS blksize
1175 * setting;
1176 * return code is the size in bytes of the string
1177 * On error: return code is zero or a negative errno value
1178 */
NeilBrown596bbe52006-10-04 02:15:48 -07001179static ssize_t write_maxblksize(struct file *file, char *buf, size_t size)
1180{
1181 char *mesg = buf;
1182 if (size > 0) {
1183 int bsize;
1184 int rv = get_int(&mesg, &bsize);
1185 if (rv)
1186 return rv;
1187 /* force bsize into allowed range and
1188 * required alignment.
1189 */
1190 if (bsize < 1024)
1191 bsize = 1024;
1192 if (bsize > NFSSVC_MAXBLKSIZE)
1193 bsize = NFSSVC_MAXBLKSIZE;
1194 bsize &= ~(1024-1);
Neil Brownbedbdd82008-06-10 08:40:35 -04001195 mutex_lock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -07001196 if (nfsd_serv && nfsd_serv->sv_nrthreads) {
Neil Brownbedbdd82008-06-10 08:40:35 -04001197 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -07001198 return -EBUSY;
1199 }
1200 nfsd_max_blksize = bsize;
Neil Brownbedbdd82008-06-10 08:40:35 -04001201 mutex_unlock(&nfsd_mutex);
NeilBrown596bbe52006-10-04 02:15:48 -07001202 }
Chuck Levere06b6402009-04-23 19:33:25 -04001203
1204 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%d\n",
1205 nfsd_max_blksize);
NeilBrown596bbe52006-10-04 02:15:48 -07001206}
1207
NeilBrown70c3b762005-11-07 01:00:25 -08001208#ifdef CONFIG_NFSD_V4
J. Bruce Fieldsf0135742010-03-01 19:32:36 -05001209static ssize_t __nfsd4_write_time(struct file *file, char *buf, size_t size, time_t *time)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
1211 /* if size > 10 seconds, call
1212 * nfs4_reset_lease() then write out the new lease (seconds) as reply
1213 */
1214 char *mesg = buf;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -05001215 int rv, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 if (size > 0) {
Jeff Layton3dd98a32008-06-10 08:40:36 -04001218 if (nfsd_serv)
1219 return -EBUSY;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -05001220 rv = get_int(&mesg, &i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (rv)
1222 return rv;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -05001223 if (i < 10 || i > 3600)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return -EINVAL;
J. Bruce Fieldsf0135742010-03-01 19:32:36 -05001225 *time = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 }
Chuck Levere06b6402009-04-23 19:33:25 -04001227
J. Bruce Fieldsf0135742010-03-01 19:32:36 -05001228 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%ld\n", *time);
1229}
1230
1231static ssize_t nfsd4_write_time(struct file *file, char *buf, size_t size, time_t *time)
1232{
1233 ssize_t rv;
1234
1235 mutex_lock(&nfsd_mutex);
1236 rv = __nfsd4_write_time(file, buf, size, time);
1237 mutex_unlock(&nfsd_mutex);
1238 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
Chuck Lever262a0982008-12-12 16:57:35 -05001241/**
1242 * write_leasetime - Set or report the current NFSv4 lease time
1243 *
1244 * Input:
1245 * buf: ignored
1246 * size: zero
1247 *
1248 * OR
1249 *
1250 * Input:
1251 * buf: C string containing an unsigned
1252 * integer value representing the new
1253 * NFSv4 lease expiry time
1254 * size: non-zero length of C string in @buf
1255 * Output:
1256 * On success: passed-in buffer filled with '\n'-terminated C
1257 * string containing unsigned integer value of the
1258 * current lease expiry time;
1259 * return code is the size in bytes of the string
1260 * On error: return code is zero or a negative errno value
1261 */
Jeff Layton3dd98a32008-06-10 08:40:36 -04001262static ssize_t write_leasetime(struct file *file, char *buf, size_t size)
1263{
J. Bruce Fieldsf0135742010-03-01 19:32:36 -05001264 return nfsd4_write_time(file, buf, size, &nfsd4_lease);
Jeff Layton3dd98a32008-06-10 08:40:36 -04001265}
1266
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001267/**
1268 * write_gracetime - Set or report current NFSv4 grace period time
1269 *
1270 * As above, but sets the time of the NFSv4 grace period.
1271 *
1272 * Note this should never be set to less than the *previous*
1273 * lease-period time, but we don't try to enforce this. (In the common
1274 * case (a new boot), we don't know what the previous lease time was
1275 * anyway.)
1276 */
1277static ssize_t write_gracetime(struct file *file, char *buf, size_t size)
1278{
1279 return nfsd4_write_time(file, buf, size, &nfsd4_grace);
1280}
1281
Jeff Layton3dd98a32008-06-10 08:40:36 -04001282extern char *nfs4_recoverydir(void);
1283
1284static ssize_t __write_recoverydir(struct file *file, char *buf, size_t size)
NeilBrown0964a3d2005-06-23 22:04:32 -07001285{
1286 char *mesg = buf;
1287 char *recdir;
1288 int len, status;
1289
Jeff Layton3dd98a32008-06-10 08:40:36 -04001290 if (size > 0) {
1291 if (nfsd_serv)
1292 return -EBUSY;
1293 if (size > PATH_MAX || buf[size-1] != '\n')
1294 return -EINVAL;
1295 buf[size-1] = 0;
NeilBrown0964a3d2005-06-23 22:04:32 -07001296
Jeff Layton3dd98a32008-06-10 08:40:36 -04001297 recdir = mesg;
1298 len = qword_get(&mesg, recdir, size);
1299 if (len <= 0)
1300 return -EINVAL;
NeilBrown0964a3d2005-06-23 22:04:32 -07001301
Jeff Layton3dd98a32008-06-10 08:40:36 -04001302 status = nfs4_reset_recoverydir(recdir);
1303 }
Chuck Lever3d72ab82009-04-23 19:33:10 -04001304
1305 return scnprintf(buf, SIMPLE_TRANSACTION_LIMIT, "%s\n",
1306 nfs4_recoverydir());
NeilBrown0964a3d2005-06-23 22:04:32 -07001307}
Jeff Layton3dd98a32008-06-10 08:40:36 -04001308
Chuck Lever262a0982008-12-12 16:57:35 -05001309/**
1310 * write_recoverydir - Set or report the pathname of the recovery directory
1311 *
1312 * Input:
1313 * buf: ignored
1314 * size: zero
1315 *
1316 * OR
1317 *
1318 * Input:
1319 * buf: C string containing the pathname
1320 * of the directory on a local file
1321 * system containing permanent NFSv4
1322 * recovery data
1323 * size: non-zero length of C string in @buf
1324 * Output:
1325 * On success: passed-in buffer filled with '\n'-terminated C string
1326 * containing the current recovery pathname setting;
1327 * return code is the size in bytes of the string
1328 * On error: return code is zero or a negative errno value
1329 */
Jeff Layton3dd98a32008-06-10 08:40:36 -04001330static ssize_t write_recoverydir(struct file *file, char *buf, size_t size)
1331{
1332 ssize_t rv;
1333
1334 mutex_lock(&nfsd_mutex);
1335 rv = __write_recoverydir(file, buf, size);
1336 mutex_unlock(&nfsd_mutex);
1337 return rv;
1338}
1339
NeilBrown70c3b762005-11-07 01:00:25 -08001340#endif
NeilBrown0964a3d2005-06-23 22:04:32 -07001341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342/*----------------------------------------------------------------------------*/
1343/*
1344 * populating the filesystem.
1345 */
1346
1347static int nfsd_fill_super(struct super_block * sb, void * data, int silent)
1348{
1349 static struct tree_descr nfsd_files[] = {
1350 [NFSD_Svc] = {".svc", &transaction_ops, S_IWUSR},
1351 [NFSD_Add] = {".add", &transaction_ops, S_IWUSR},
1352 [NFSD_Del] = {".del", &transaction_ops, S_IWUSR},
1353 [NFSD_Export] = {".export", &transaction_ops, S_IWUSR},
1354 [NFSD_Unexport] = {".unexport", &transaction_ops, S_IWUSR},
1355 [NFSD_Getfd] = {".getfd", &transaction_ops, S_IWUSR|S_IRUSR},
1356 [NFSD_Getfs] = {".getfs", &transaction_ops, S_IWUSR|S_IRUSR},
1357 [NFSD_List] = {"exports", &exports_operations, S_IRUGO},
J. Bruce Fieldse8e87532009-12-14 12:53:32 -05001358 [NFSD_Export_features] = {"export_features",
1359 &export_features_operations, S_IRUGO},
Wendy Cheng4373ea82008-01-17 11:10:12 -05001360 [NFSD_FO_UnlockIP] = {"unlock_ip",
1361 &transaction_ops, S_IWUSR|S_IRUSR},
Wendy Cheng17efa372008-01-17 11:10:12 -05001362 [NFSD_FO_UnlockFS] = {"unlock_filesystem",
1363 &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 [NFSD_Fh] = {"filehandle", &transaction_ops, S_IWUSR|S_IRUSR},
1365 [NFSD_Threads] = {"threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Bankseed29652006-10-02 02:18:02 -07001366 [NFSD_Pool_Threads] = {"pool_threads", &transaction_ops, S_IWUSR|S_IRUSR},
Greg Banks03cf6c92009-01-13 21:26:36 +11001367 [NFSD_Pool_Stats] = {"pool_stats", &pool_stats_operations, S_IRUGO},
NeilBrown70c3b762005-11-07 01:00:25 -08001368 [NFSD_Versions] = {"versions", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown80212d52006-10-02 02:17:47 -07001369 [NFSD_Ports] = {"portlist", &transaction_ops, S_IWUSR|S_IRUGO},
NeilBrown596bbe52006-10-04 02:15:48 -07001370 [NFSD_MaxBlkSize] = {"max_block_size", &transaction_ops, S_IWUSR|S_IRUGO},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371#ifdef CONFIG_NFSD_V4
1372 [NFSD_Leasetime] = {"nfsv4leasetime", &transaction_ops, S_IWUSR|S_IRUSR},
J. Bruce Fieldsefc4bb4f2010-03-02 11:04:06 -05001373 [NFSD_Gracetime] = {"nfsv4gracetime", &transaction_ops, S_IWUSR|S_IRUSR},
NeilBrown0964a3d2005-06-23 22:04:32 -07001374 [NFSD_RecoveryDir] = {"nfsv4recoverydir", &transaction_ops, S_IWUSR|S_IRUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375#endif
1376 /* last one */ {""}
1377 };
1378 return simple_fill_super(sb, 0x6e667364, nfsd_files);
1379}
1380
David Howells454e2392006-06-23 02:02:57 -07001381static int nfsd_get_sb(struct file_system_type *fs_type,
1382 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
David Howells454e2392006-06-23 02:02:57 -07001384 return get_sb_single(fs_type, flags, data, nfsd_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
1387static struct file_system_type nfsd_fs_type = {
1388 .owner = THIS_MODULE,
1389 .name = "nfsd",
1390 .get_sb = nfsd_get_sb,
1391 .kill_sb = kill_litter_super,
1392};
1393
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001394#ifdef CONFIG_PROC_FS
1395static int create_proc_exports_entry(void)
1396{
1397 struct proc_dir_entry *entry;
1398
1399 entry = proc_mkdir("fs/nfs", NULL);
1400 if (!entry)
1401 return -ENOMEM;
Denis V. Lunev9ef2db22008-04-29 01:02:04 -07001402 entry = proc_create("exports", 0, entry, &exports_operations);
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001403 if (!entry)
1404 return -ENOMEM;
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001405 return 0;
1406}
1407#else /* CONFIG_PROC_FS */
1408static int create_proc_exports_entry(void)
1409{
1410 return 0;
1411}
1412#endif
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414static int __init init_nfsd(void)
1415{
1416 int retval;
1417 printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
1418
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001419 retval = nfs4_state_init(); /* nfs4 locking state */
1420 if (retval)
1421 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 nfsd_stat_init(); /* Statistics */
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001423 retval = nfsd_reply_cache_init();
1424 if (retval)
1425 goto out_free_stat;
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001426 retval = nfsd_export_init();
1427 if (retval)
1428 goto out_free_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 nfsd_lockd_init(); /* lockd->nfsd callbacks */
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001430 retval = nfsd_idmap_init();
1431 if (retval)
1432 goto out_free_lockd;
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001433 retval = create_proc_exports_entry();
1434 if (retval)
1435 goto out_free_idmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 retval = register_filesystem(&nfsd_fs_type);
J. Bruce Fields26808d32007-11-09 13:44:06 -05001437 if (retval)
1438 goto out_free_all;
1439 return 0;
1440out_free_all:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001441 remove_proc_entry("fs/nfs/exports", NULL);
1442 remove_proc_entry("fs/nfs", NULL);
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001443out_free_idmap:
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001444 nfsd_idmap_shutdown();
1445out_free_lockd:
J. Bruce Fields26808d32007-11-09 13:44:06 -05001446 nfsd_lockd_shutdown();
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001447 nfsd_export_shutdown();
J. Bruce Fieldsdbf847e2007-11-08 17:20:34 -05001448out_free_cache:
J. Bruce Fieldse331f602007-11-12 17:32:21 -05001449 nfsd_reply_cache_shutdown();
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001450out_free_stat:
1451 nfsd_stat_shutdown();
J. Bruce Fields26808d32007-11-09 13:44:06 -05001452 nfsd4_free_slabs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return retval;
1454}
1455
1456static void __exit exit_nfsd(void)
1457{
1458 nfsd_export_shutdown();
J. Bruce Fieldsd5c34282007-11-09 14:10:56 -05001459 nfsd_reply_cache_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 remove_proc_entry("fs/nfs/exports", NULL);
1461 remove_proc_entry("fs/nfs", NULL);
1462 nfsd_stat_shutdown();
1463 nfsd_lockd_shutdown();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 nfsd_idmap_shutdown();
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -04001465 nfsd4_free_slabs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 unregister_filesystem(&nfsd_fs_type);
1467}
1468
1469MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1470MODULE_LICENSE("GPL");
1471module_init(init_nfsd)
1472module_exit(exit_nfsd)