blob: 0dff13f41808add83dabf2149aeb5260f2e5f42a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/lockd/svc.c
3 *
4 * This is the central lockd service.
5 *
6 * FIXME: Separate the lockd NFS server functionality from the lockd NFS
7 * client functionality. Oh why didn't Sun create two separate
8 * services in the first place?
9 *
10 * Authors: Olaf Kirch (okir@monad.swb.de)
11 *
12 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/sysctl.h>
18#include <linux/moduleparam.h>
19
20#include <linux/sched.h>
21#include <linux/errno.h>
22#include <linux/in.h>
23#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/smp.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080025#include <linux/mutex.h>
Jeff Laytond751a7c2008-02-07 16:34:55 -050026#include <linux/kthread.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070027#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <linux/sunrpc/types.h>
30#include <linux/sunrpc/stats.h>
31#include <linux/sunrpc/clnt.h>
32#include <linux/sunrpc/svc.h>
33#include <linux/sunrpc/svcsock.h>
NeilBrown24e36662006-10-02 02:17:45 -070034#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/lockd/lockd.h>
36#include <linux/nfs.h>
37
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +040038#include "netns.h"
Jeff Laytond68e3c42014-09-12 16:40:20 -040039#include "procfs.h"
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +040040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define NLMDBG_FACILITY NLMDBG_SVC
42#define LOCKD_BUFSIZE (1024 + NLMSVC_XDRSIZE)
43#define ALLOWED_SIGS (sigmask(SIGKILL))
44
45static struct svc_program nlmsvc_program;
46
47struct nlmsvc_binding * nlmsvc_ops;
Trond Myklebust2de59872008-12-23 15:21:33 -050048EXPORT_SYMBOL_GPL(nlmsvc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Ingo Molnar353ab6e2006-03-26 01:37:12 -080050static DEFINE_MUTEX(nlmsvc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static unsigned int nlmsvc_users;
Jeff Laytond751a7c2008-02-07 16:34:55 -050052static struct task_struct *nlmsvc_task;
Jeff Laytonabd1ec42008-06-11 10:03:12 -040053static struct svc_rqst *nlmsvc_rqst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054unsigned long nlmsvc_timeout;
55
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +040056int lockd_net_id;
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
59 * These can be set at insmod time (useful for NFS as root filesystem),
60 * and also changed through the sysctl interface. -- Jamie Lokier, Aug 2003
61 */
62static unsigned long nlm_grace_period;
63static unsigned long nlm_timeout = LOCKD_DFLT_TIMEO;
64static int nlm_udpport, nlm_tcpport;
65
Jeff Laytonc72a4762008-10-20 11:51:58 -040066/* RLIM_NOFILE defaults to 1024. That seems like a reasonable default here. */
67static unsigned int nlm_max_connections = 1024;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * Constants needed for the sysctl interface.
71 */
72static const unsigned long nlm_grace_period_min = 0;
73static const unsigned long nlm_grace_period_max = 240;
74static const unsigned long nlm_timeout_min = 3;
75static const unsigned long nlm_timeout_max = 20;
76static const int nlm_port_min = 0, nlm_port_max = 65535;
77
Chuck Lever90d5b182008-03-14 14:18:30 -040078#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static struct ctl_table_header * nlm_sysctl_table;
Chuck Lever90d5b182008-03-14 14:18:30 -040080#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Marc Eshel9a8db972007-07-17 04:04:35 -070082static unsigned long get_lockd_grace_period(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 /* Note: nlm_timeout should always be nonzero */
85 if (nlm_grace_period)
Marc Eshel9a8db972007-07-17 04:04:35 -070086 return roundup(nlm_grace_period, nlm_timeout) * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 else
Marc Eshel9a8db972007-07-17 04:04:35 -070088 return nlm_timeout * 5 * HZ;
89}
90
Stanislav Kinsbursky08d44a32012-07-25 16:56:50 +040091static void grace_ender(struct work_struct *grace)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Stanislav Kinsbursky08d44a32012-07-25 16:56:50 +040093 struct delayed_work *dwork = container_of(grace, struct delayed_work,
94 work);
95 struct lockd_net *ln = container_of(dwork, struct lockd_net,
96 grace_period_end);
97
98 locks_end_grace(&ln->lockd_manager);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400101static void set_grace_period(struct net *net)
J. Bruce Fieldsc8ab5f22008-03-18 19:00:19 -0400102{
J. Bruce Fieldsaf558e32007-09-06 12:34:25 -0400103 unsigned long grace_period = get_lockd_grace_period();
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400104 struct lockd_net *ln = net_generic(net, lockd_net_id);
J. Bruce Fieldsc8ab5f22008-03-18 19:00:19 -0400105
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400106 locks_start_grace(net, &ln->lockd_manager);
Stanislav Kinsbursky66547b02012-07-25 16:56:43 +0400107 cancel_delayed_work_sync(&ln->grace_period_end);
108 schedule_delayed_work(&ln->grace_period_end, grace_period);
J. Bruce Fieldsc8ab5f22008-03-18 19:00:19 -0400109}
110
J. Bruce Fields89996df2009-05-06 16:32:54 -0400111static void restart_grace(void)
112{
113 if (nlmsvc_ops) {
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400114 struct net *net = &init_net;
115 struct lockd_net *ln = net_generic(net, lockd_net_id);
Stanislav Kinsbursky66547b02012-07-25 16:56:43 +0400116
117 cancel_delayed_work_sync(&ln->grace_period_end);
Stanislav Kinsbursky08d44a32012-07-25 16:56:50 +0400118 locks_end_grace(&ln->lockd_manager);
J. Bruce Fields89996df2009-05-06 16:32:54 -0400119 nlmsvc_invalidate_all();
Stanislav Kinsbursky5ccb0062012-07-25 16:57:22 +0400120 set_grace_period(net);
J. Bruce Fields89996df2009-05-06 16:32:54 -0400121 }
122}
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
125 * This is the lockd kernel thread
126 */
Jeff Laytond751a7c2008-02-07 16:34:55 -0500127static int
128lockd(void *vrqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
J. Bruce Fields5b444cc2012-08-17 21:47:53 -0400130 int err = 0;
Jeff Laytond751a7c2008-02-07 16:34:55 -0500131 struct svc_rqst *rqstp = vrqstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Jeff Laytond751a7c2008-02-07 16:34:55 -0500133 /* try_to_freeze() is called from svc_recv() */
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700134 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Jeff Laytond751a7c2008-02-07 16:34:55 -0500136 /* Allow SIGKILL to tell lockd to drop all of its locks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 allow_signal(SIGKILL);
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 dprintk("NFS locking service started (ver " LOCKD_VERSION ").\n");
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /*
142 * The main request loop. We don't terminate until the last
Jeff Laytond751a7c2008-02-07 16:34:55 -0500143 * NFS mount or NFS daemon has gone away.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
Jeff Laytond751a7c2008-02-07 16:34:55 -0500145 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 long timeout = MAX_SCHEDULE_TIMEOUT;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300147 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Jeff Laytonc72a4762008-10-20 11:51:58 -0400149 /* update sv_maxconn if it has changed */
150 rqstp->rq_server->sv_maxconn = nlm_max_connections;
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (signalled()) {
153 flush_signals(current);
J. Bruce Fields89996df2009-05-06 16:32:54 -0400154 restart_grace();
Jeff Laytond751a7c2008-02-07 16:34:55 -0500155 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157
J. Bruce Fields8fafa902008-01-24 11:11:34 -0500158 timeout = nlmsvc_retry_blocked();
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /*
161 * Find a socket with data available and call its
162 * recvfrom routine.
163 */
NeilBrown6fb2b472006-10-02 02:17:50 -0700164 err = svc_recv(rqstp, timeout);
J. Bruce Fields5b444cc2012-08-17 21:47:53 -0400165 if (err == -EAGAIN || err == -EINTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 continue;
Chuck Leverad06e4b2007-02-12 00:53:32 -0800167 dprintk("lockd: request from %s\n",
168 svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
NeilBrown6fb2b472006-10-02 02:17:50 -0700170 svc_process(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
Trond Myklebust2bd61572006-01-03 09:55:19 +0100172 flush_signals(current);
Jeff Laytond751a7c2008-02-07 16:34:55 -0500173 if (nlmsvc_ops)
174 nlmsvc_invalidate_all();
175 nlm_shutdown_hosts();
Jeff Laytond751a7c2008-02-07 16:34:55 -0500176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Chuck Levereb16e902009-03-18 20:47:59 -0400179static int create_lockd_listener(struct svc_serv *serv, const char *name,
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400180 struct net *net, const int family,
181 const unsigned short port)
Chuck Leverd3fe5ea2008-12-31 16:06:04 -0500182{
183 struct svc_xprt *xprt;
184
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400185 xprt = svc_find_xprt(serv, name, net, family, 0);
Chuck Leverd3fe5ea2008-12-31 16:06:04 -0500186 if (xprt == NULL)
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400187 return svc_create_xprt(serv, name, net, family, port,
Chuck Levereb16e902009-03-18 20:47:59 -0400188 SVC_SOCK_DEFAULTS);
Chuck Leverd3fe5ea2008-12-31 16:06:04 -0500189 svc_xprt_put(xprt);
190 return 0;
191}
192
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400193static int create_lockd_family(struct svc_serv *serv, struct net *net,
194 const int family)
Chuck Levereb16e902009-03-18 20:47:59 -0400195{
196 int err;
197
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400198 err = create_lockd_listener(serv, "udp", net, family, nlm_udpport);
Chuck Levereb16e902009-03-18 20:47:59 -0400199 if (err < 0)
200 return err;
201
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400202 return create_lockd_listener(serv, "tcp", net, family, nlm_tcpport);
Chuck Levereb16e902009-03-18 20:47:59 -0400203}
204
Chuck Lever482fb942007-02-12 00:53:29 -0800205/*
Chuck Lever8c3916f2008-10-03 17:15:23 -0400206 * Ensure there are active UDP and TCP listeners for lockd.
207 *
208 * Even if we have only TCP NFS mounts and/or TCP NFSDs, some
209 * local services (such as rpc.statd) still require UDP, and
210 * some NFS servers do not yet support NLM over TCP.
211 *
212 * Returns zero if all listeners are available; otherwise a
213 * negative errno value is returned.
Chuck Lever482fb942007-02-12 00:53:29 -0800214 */
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400215static int make_socks(struct svc_serv *serv, struct net *net)
NeilBrown24e36662006-10-02 02:17:45 -0700216{
Chuck Lever482fb942007-02-12 00:53:29 -0800217 static int warned;
Chuck Lever0dba7c22008-12-31 16:06:11 -0500218 int err;
Chuck Lever482fb942007-02-12 00:53:29 -0800219
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400220 err = create_lockd_family(serv, net, PF_INET);
Chuck Lever0dba7c22008-12-31 16:06:11 -0500221 if (err < 0)
222 goto out_err;
223
Stanislav Kinsburskyc228fa22012-01-31 15:07:48 +0400224 err = create_lockd_family(serv, net, PF_INET6);
Chuck Levereb16e902009-03-18 20:47:59 -0400225 if (err < 0 && err != -EAFNOSUPPORT)
Chuck Lever0dba7c22008-12-31 16:06:11 -0500226 goto out_err;
227
228 warned = 0;
229 return 0;
230
231out_err:
232 if (warned++ == 0)
NeilBrown7dcf91e2006-10-02 02:17:52 -0700233 printk(KERN_WARNING
Chuck Lever0dba7c22008-12-31 16:06:11 -0500234 "lockd_up: makesock failed, error=%d\n", err);
Jeff Layton679b0332014-03-25 11:55:26 -0700235 svc_shutdown_net(serv, net);
NeilBrown24e36662006-10-02 02:17:45 -0700236 return err;
237}
238
Stanislav Kinsbursky4db77692012-04-25 18:22:40 +0400239static int lockd_up_net(struct svc_serv *serv, struct net *net)
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400240{
241 struct lockd_net *ln = net_generic(net, lockd_net_id);
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400242 int error;
243
Stanislav Kinsbursky786185b2012-05-04 12:49:41 +0400244 if (ln->nlmsvc_users++)
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400245 return 0;
246
Stanislav Kinsburskydbf9b5d72012-04-25 18:22:47 +0400247 error = svc_bind(serv, net);
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400248 if (error)
Stanislav Kinsburskydbf9b5d72012-04-25 18:22:47 +0400249 goto err_bind;
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400250
251 error = make_socks(serv, net);
252 if (error < 0)
J. Bruce Fields7c177052014-08-29 16:25:50 -0400253 goto err_bind;
Stanislav Kinsbursky5630f7f2012-07-25 16:57:29 +0400254 set_grace_period(net);
Stanislav Kinsbursky8dbf28e2012-04-25 18:23:16 +0400255 dprintk("lockd_up_net: per-net data created; net=%p\n", net);
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400256 return 0;
257
Stanislav Kinsburskydbf9b5d72012-04-25 18:22:47 +0400258err_bind:
Stanislav Kinsbursky786185b2012-05-04 12:49:41 +0400259 ln->nlmsvc_users--;
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400260 return error;
261}
262
Stanislav Kinsbursky4db77692012-04-25 18:22:40 +0400263static void lockd_down_net(struct svc_serv *serv, struct net *net)
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400264{
265 struct lockd_net *ln = net_generic(net, lockd_net_id);
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400266
267 if (ln->nlmsvc_users) {
Stanislav Kinsbursky3b647392012-01-31 15:08:29 +0400268 if (--ln->nlmsvc_users == 0) {
269 nlm_shutdown_hosts_net(net);
Stanislav Kinsbursky5630f7f2012-07-25 16:57:29 +0400270 cancel_delayed_work_sync(&ln->grace_period_end);
271 locks_end_grace(&ln->lockd_manager);
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400272 svc_shutdown_net(serv, net);
Stanislav Kinsbursky8dbf28e2012-04-25 18:23:16 +0400273 dprintk("lockd_down_net: per-net data destroyed; net=%p\n", net);
Stanislav Kinsbursky3b647392012-01-31 15:08:29 +0400274 }
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400275 } else {
276 printk(KERN_ERR "lockd_down_net: no users! task=%p, net=%p\n",
277 nlmsvc_task, net);
278 BUG();
279 }
280}
281
Stanislav Kinsbursky3d1221d2012-04-25 18:23:09 +0400282static int lockd_start_svc(struct svc_serv *serv)
283{
284 int error;
285
286 if (nlmsvc_rqst)
287 return 0;
288
289 /*
290 * Create the kernel thread and wait for it to start.
291 */
292 nlmsvc_rqst = svc_prepare_thread(serv, &serv->sv_pools[0], NUMA_NO_NODE);
293 if (IS_ERR(nlmsvc_rqst)) {
294 error = PTR_ERR(nlmsvc_rqst);
295 printk(KERN_WARNING
296 "lockd_up: svc_rqst allocation failed, error=%d\n",
297 error);
298 goto out_rqst;
299 }
300
301 svc_sock_update_bufs(serv);
302 serv->sv_maxconn = nlm_max_connections;
303
Trond Myklebustd4e89902014-09-02 13:58:57 -0400304 nlmsvc_task = kthread_create(lockd, nlmsvc_rqst, "%s", serv->sv_name);
Stanislav Kinsbursky3d1221d2012-04-25 18:23:09 +0400305 if (IS_ERR(nlmsvc_task)) {
306 error = PTR_ERR(nlmsvc_task);
307 printk(KERN_WARNING
308 "lockd_up: kthread_run failed, error=%d\n", error);
309 goto out_task;
310 }
Trond Myklebustd6a7ce42014-08-03 13:03:07 -0400311 nlmsvc_rqst->rq_task = nlmsvc_task;
Trond Myklebustd4e89902014-09-02 13:58:57 -0400312 wake_up_process(nlmsvc_task);
Trond Myklebustd6a7ce42014-08-03 13:03:07 -0400313
Stanislav Kinsbursky3d1221d2012-04-25 18:23:09 +0400314 dprintk("lockd_up: service started\n");
315 return 0;
316
317out_task:
318 svc_exit_thread(nlmsvc_rqst);
319 nlmsvc_task = NULL;
320out_rqst:
321 nlmsvc_rqst = NULL;
322 return error;
323}
324
Jeff Laytonea126e72015-06-08 12:03:32 -0700325static struct svc_serv_ops lockd_sv_ops = {
Jeff Laytonb9e13cd2015-06-08 12:06:51 -0700326 .svo_shutdown = svc_rpcb_cleanup,
327 .svo_enqueue_xprt = svc_xprt_do_enqueue,
Jeff Laytonea126e72015-06-08 12:03:32 -0700328};
329
Stanislav Kinsbursky24452232012-04-25 18:22:54 +0400330static struct svc_serv *lockd_create_svc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Jeff Laytond751a7c2008-02-07 16:34:55 -0500332 struct svc_serv *serv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * Check whether we're already up and running.
336 */
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400337 if (nlmsvc_rqst) {
Stanislav Kinsbursky24452232012-04-25 18:22:54 +0400338 /*
339 * Note: increase service usage, because later in case of error
340 * svc_destroy() will be called.
341 */
342 svc_get(nlmsvc_rqst->rq_server);
343 return nlmsvc_rqst->rq_server;
Stanislav Kinsburskybb2224d2012-01-31 15:08:05 +0400344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 /*
347 * Sanity check: if there's no pid,
348 * we should be the first user ...
349 */
NeilBrown4a3ae422006-10-02 02:17:53 -0700350 if (nlmsvc_users)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 printk(KERN_WARNING
352 "lockd_up: no pid, %d users??\n", nlmsvc_users);
353
Trond Myklebust06bed7d2015-01-02 15:05:25 -0500354 if (!nlm_timeout)
355 nlm_timeout = LOCKD_DFLT_TIMEO;
356 nlmsvc_timeout = nlm_timeout * HZ;
357
Jeff Laytonea126e72015-06-08 12:03:32 -0700358 serv = svc_create(&nlmsvc_program, LOCKD_BUFSIZE, &lockd_sv_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (!serv) {
360 printk(KERN_WARNING "lockd_up: create service failed\n");
Stanislav Kinsbursky24452232012-04-25 18:22:54 +0400361 return ERR_PTR(-ENOMEM);
362 }
Stanislav Kinsbursky8dbf28e2012-04-25 18:23:16 +0400363 dprintk("lockd_up: service created\n");
Stanislav Kinsbursky24452232012-04-25 18:22:54 +0400364 return serv;
365}
366
367/*
368 * Bring up the lockd process if it's not already up.
369 */
370int lockd_up(struct net *net)
371{
372 struct svc_serv *serv;
Stanislav Kinsbursky7d13ec72012-04-25 18:23:02 +0400373 int error;
Stanislav Kinsbursky24452232012-04-25 18:22:54 +0400374
375 mutex_lock(&nlmsvc_mutex);
376
377 serv = lockd_create_svc();
378 if (IS_ERR(serv)) {
379 error = PTR_ERR(serv);
380 goto err_create;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
Stanislav Kinsburskydbf9b5d72012-04-25 18:22:47 +0400383 error = lockd_up_net(serv, net);
Chuck Lever8c3916f2008-10-03 17:15:23 -0400384 if (error < 0)
Stanislav Kinsburskydbf9b5d72012-04-25 18:22:47 +0400385 goto err_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Stanislav Kinsbursky3d1221d2012-04-25 18:23:09 +0400387 error = lockd_start_svc(serv);
388 if (error < 0)
Stanislav Kinsbursky786185b2012-05-04 12:49:41 +0400389 goto err_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Stanislav Kinsbursky7d13ec72012-04-25 18:23:02 +0400391 nlmsvc_users++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /*
393 * Note: svc_serv structures have an initial use count of 1,
394 * so we exit through here on both success and failure.
395 */
Stanislav Kinsburskydbf9b5d72012-04-25 18:22:47 +0400396err_net:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 svc_destroy(serv);
Stanislav Kinsbursky24452232012-04-25 18:22:54 +0400398err_create:
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800399 mutex_unlock(&nlmsvc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return error;
Stanislav Kinsbursky786185b2012-05-04 12:49:41 +0400401
402err_start:
Stanislav Kinsbursky4db77692012-04-25 18:22:40 +0400403 lockd_down_net(serv, net);
Stanislav Kinsburskydbf9b5d72012-04-25 18:22:47 +0400404 goto err_net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
Trond Myklebust2de59872008-12-23 15:21:33 -0500406EXPORT_SYMBOL_GPL(lockd_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408/*
409 * Decrement the user count and bring down lockd if we're the last.
410 */
411void
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +0400412lockd_down(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800414 mutex_lock(&nlmsvc_mutex);
Stanislav Kinsbursky4db77692012-04-25 18:22:40 +0400415 lockd_down_net(nlmsvc_rqst->rq_server, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (nlmsvc_users) {
Stanislav Kinsbursky786185b2012-05-04 12:49:41 +0400417 if (--nlmsvc_users)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 goto out;
Jeff Laytond751a7c2008-02-07 16:34:55 -0500419 } else {
420 printk(KERN_ERR "lockd_down: no users! task=%p\n",
421 nlmsvc_task);
422 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Jeff Laytond751a7c2008-02-07 16:34:55 -0500425 if (!nlmsvc_task) {
426 printk(KERN_ERR "lockd_down: no lockd running.\n");
427 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Jeff Laytond751a7c2008-02-07 16:34:55 -0500429 kthread_stop(nlmsvc_task);
Stanislav Kinsbursky8dbf28e2012-04-25 18:23:16 +0400430 dprintk("lockd_down: service stopped\n");
Jeff Laytonabd1ec42008-06-11 10:03:12 -0400431 svc_exit_thread(nlmsvc_rqst);
Stanislav Kinsbursky8dbf28e2012-04-25 18:23:16 +0400432 dprintk("lockd_down: service destroyed\n");
Jeff Laytonabd1ec42008-06-11 10:03:12 -0400433 nlmsvc_task = NULL;
434 nlmsvc_rqst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435out:
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800436 mutex_unlock(&nlmsvc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
Trond Myklebust2de59872008-12-23 15:21:33 -0500438EXPORT_SYMBOL_GPL(lockd_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Chuck Lever90d5b182008-03-14 14:18:30 -0400440#ifdef CONFIG_SYSCTL
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442/*
443 * Sysctl parameters (same as module parameters, different interface).
444 */
445
Joe Perches7ac9fe52014-06-06 14:38:02 -0700446static struct ctl_table nlm_sysctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 .procname = "nlm_grace_period",
449 .data = &nlm_grace_period,
Steve Dickson7ee91ec2005-07-13 01:10:47 -0700450 .maxlen = sizeof(unsigned long),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800452 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 .extra1 = (unsigned long *) &nlm_grace_period_min,
454 .extra2 = (unsigned long *) &nlm_grace_period_max,
455 },
456 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 .procname = "nlm_timeout",
458 .data = &nlm_timeout,
Steve Dickson7ee91ec2005-07-13 01:10:47 -0700459 .maxlen = sizeof(unsigned long),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800461 .proc_handler = proc_doulongvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 .extra1 = (unsigned long *) &nlm_timeout_min,
463 .extra2 = (unsigned long *) &nlm_timeout_max,
464 },
465 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 .procname = "nlm_udpport",
467 .data = &nlm_udpport,
468 .maxlen = sizeof(int),
469 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800470 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .extra1 = (int *) &nlm_port_min,
472 .extra2 = (int *) &nlm_port_max,
473 },
474 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 .procname = "nlm_tcpport",
476 .data = &nlm_tcpport,
477 .maxlen = sizeof(int),
478 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800479 .proc_handler = proc_dointvec_minmax,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 .extra1 = (int *) &nlm_port_min,
481 .extra2 = (int *) &nlm_port_max,
482 },
Olaf Kirchabd1f502006-10-04 02:16:01 -0700483 {
Olaf Kirchabd1f502006-10-04 02:16:01 -0700484 .procname = "nsm_use_hostnames",
485 .data = &nsm_use_hostnames,
486 .maxlen = sizeof(int),
487 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800488 .proc_handler = proc_dointvec,
Olaf Kirchabd1f502006-10-04 02:16:01 -0700489 },
Olaf Kirch460f5ca2006-10-04 02:16:03 -0700490 {
Olaf Kirch460f5ca2006-10-04 02:16:03 -0700491 .procname = "nsm_local_state",
492 .data = &nsm_local_state,
493 .maxlen = sizeof(int),
494 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -0800495 .proc_handler = proc_dointvec,
Olaf Kirch460f5ca2006-10-04 02:16:03 -0700496 },
Eric W. Biedermanab092032009-11-05 14:25:10 -0800497 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498};
499
Joe Perches7ac9fe52014-06-06 14:38:02 -0700500static struct ctl_table nlm_sysctl_dir[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 .procname = "nfs",
503 .mode = 0555,
504 .child = nlm_sysctls,
505 },
Eric W. Biedermanab092032009-11-05 14:25:10 -0800506 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507};
508
Joe Perches7ac9fe52014-06-06 14:38:02 -0700509static struct ctl_table nlm_sysctl_root[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 .procname = "fs",
512 .mode = 0555,
513 .child = nlm_sysctl_dir,
514 },
Eric W. Biedermanab092032009-11-05 14:25:10 -0800515 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516};
517
Chuck Lever90d5b182008-03-14 14:18:30 -0400518#endif /* CONFIG_SYSCTL */
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/*
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100521 * Module (and sysfs) parameters.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 */
523
524#define param_set_min_max(name, type, which_strtol, min, max) \
525static int param_set_##name(const char *val, struct kernel_param *kp) \
526{ \
527 char *endp; \
528 __typeof__(type) num = which_strtol(val, &endp, 0); \
529 if (endp == val || *endp || num < (min) || num > (max)) \
530 return -EINVAL; \
NeilBrownde5b8e82012-02-07 15:35:42 +1100531 *((type *) kp->arg) = num; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 return 0; \
533}
534
535static inline int is_callback(u32 proc)
536{
537 return proc == NLMPROC_GRANTED
538 || proc == NLMPROC_GRANTED_MSG
539 || proc == NLMPROC_TEST_RES
540 || proc == NLMPROC_LOCK_RES
541 || proc == NLMPROC_CANCEL_RES
542 || proc == NLMPROC_UNLOCK_RES
543 || proc == NLMPROC_NSM_NOTIFY;
544}
545
546
547static int lockd_authenticate(struct svc_rqst *rqstp)
548{
549 rqstp->rq_client = NULL;
550 switch (rqstp->rq_authop->flavour) {
551 case RPC_AUTH_NULL:
552 case RPC_AUTH_UNIX:
553 if (rqstp->rq_proc == 0)
554 return SVC_OK;
555 if (is_callback(rqstp->rq_proc)) {
556 /* Leave it to individual procedures to
557 * call nlmsvc_lookup_host(rqstp)
558 */
559 return SVC_OK;
560 }
561 return svc_set_client(rqstp);
562 }
563 return SVC_DENIED;
564}
565
566
567param_set_min_max(port, int, simple_strtol, 0, 65535)
568param_set_min_max(grace_period, unsigned long, simple_strtoul,
569 nlm_grace_period_min, nlm_grace_period_max)
570param_set_min_max(timeout, unsigned long, simple_strtoul,
571 nlm_timeout_min, nlm_timeout_max)
572
573MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
574MODULE_DESCRIPTION("NFS file locking service version " LOCKD_VERSION ".");
575MODULE_LICENSE("GPL");
576
577module_param_call(nlm_grace_period, param_set_grace_period, param_get_ulong,
578 &nlm_grace_period, 0644);
579module_param_call(nlm_timeout, param_set_timeout, param_get_ulong,
580 &nlm_timeout, 0644);
581module_param_call(nlm_udpport, param_set_port, param_get_int,
582 &nlm_udpport, 0644);
583module_param_call(nlm_tcpport, param_set_port, param_get_int,
584 &nlm_tcpport, 0644);
Olaf Kirchabd1f502006-10-04 02:16:01 -0700585module_param(nsm_use_hostnames, bool, 0644);
Jeff Laytonc72a4762008-10-20 11:51:58 -0400586module_param(nlm_max_connections, uint, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400588static int lockd_init_net(struct net *net)
589{
Stanislav Kinsbursky66547b02012-07-25 16:56:43 +0400590 struct lockd_net *ln = net_generic(net, lockd_net_id);
591
592 INIT_DELAYED_WORK(&ln->grace_period_end, grace_ender);
Jeff Laytonf7790022014-09-12 16:40:20 -0400593 INIT_LIST_HEAD(&ln->lockd_manager.list);
J. Bruce Fieldsc87fb4a2015-08-06 12:47:02 -0400594 ln->lockd_manager.block_opens = false;
Stanislav Kinsburskye9406db2012-09-18 13:37:12 +0400595 spin_lock_init(&ln->nsm_clnt_lock);
Andrey Ryabinin0ad95472015-09-23 15:49:29 +0300596 INIT_LIST_HEAD(&ln->nsm_handles);
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400597 return 0;
598}
599
600static void lockd_exit_net(struct net *net)
601{
602}
603
604static struct pernet_operations lockd_net_ops = {
605 .init = lockd_init_net,
606 .exit = lockd_exit_net,
607 .id = &lockd_net_id,
608 .size = sizeof(struct lockd_net),
609};
610
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/*
613 * Initialising and terminating the module.
614 */
615
616static int __init init_nlm(void)
617{
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400618 int err;
619
Chuck Lever90d5b182008-03-14 14:18:30 -0400620#ifdef CONFIG_SYSCTL
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400621 err = -ENOMEM;
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800622 nlm_sysctl_table = register_sysctl_table(nlm_sysctl_root);
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400623 if (nlm_sysctl_table == NULL)
624 goto err_sysctl;
Chuck Lever90d5b182008-03-14 14:18:30 -0400625#endif
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400626 err = register_pernet_subsys(&lockd_net_ops);
627 if (err)
628 goto err_pernet;
Jeff Laytond68e3c42014-09-12 16:40:20 -0400629
630 err = lockd_create_procfs();
631 if (err)
632 goto err_procfs;
633
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400634 return 0;
635
Jeff Laytond68e3c42014-09-12 16:40:20 -0400636err_procfs:
637 unregister_pernet_subsys(&lockd_net_ops);
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400638err_pernet:
639#ifdef CONFIG_SYSCTL
640 unregister_sysctl_table(nlm_sysctl_table);
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400641err_sysctl:
Kees Cook12dd7ec2014-05-01 14:15:02 -0700642#endif
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400643 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646static void __exit exit_nlm(void)
647{
648 /* FIXME: delete all NLM clients */
649 nlm_shutdown_hosts();
Jeff Laytond68e3c42014-09-12 16:40:20 -0400650 lockd_remove_procfs();
Stanislav Kinsburskya9c5d732012-01-31 15:07:57 +0400651 unregister_pernet_subsys(&lockd_net_ops);
Chuck Lever90d5b182008-03-14 14:18:30 -0400652#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 unregister_sysctl_table(nlm_sysctl_table);
Chuck Lever90d5b182008-03-14 14:18:30 -0400654#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
657module_init(init_nlm);
658module_exit(exit_nlm);
659
660/*
661 * Define NLM program and procedures
662 */
663static struct svc_version nlmsvc_version1 = {
664 .vs_vers = 1,
665 .vs_nproc = 17,
666 .vs_proc = nlmsvc_procedures,
667 .vs_xdrsize = NLMSVC_XDRSIZE,
668};
669static struct svc_version nlmsvc_version3 = {
670 .vs_vers = 3,
671 .vs_nproc = 24,
672 .vs_proc = nlmsvc_procedures,
673 .vs_xdrsize = NLMSVC_XDRSIZE,
674};
675#ifdef CONFIG_LOCKD_V4
676static struct svc_version nlmsvc_version4 = {
677 .vs_vers = 4,
678 .vs_nproc = 24,
679 .vs_proc = nlmsvc_procedures4,
680 .vs_xdrsize = NLMSVC_XDRSIZE,
681};
682#endif
683static struct svc_version * nlmsvc_version[] = {
684 [1] = &nlmsvc_version1,
685 [3] = &nlmsvc_version3,
686#ifdef CONFIG_LOCKD_V4
687 [4] = &nlmsvc_version4,
688#endif
689};
690
691static struct svc_stat nlmsvc_stats;
692
Tobias Klausere8c96f82006-03-24 03:15:34 -0800693#define NLM_NRVERS ARRAY_SIZE(nlmsvc_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694static struct svc_program nlmsvc_program = {
695 .pg_prog = NLM_PROGRAM, /* program number */
696 .pg_nvers = NLM_NRVERS, /* number of entries in nlmsvc_version */
697 .pg_vers = nlmsvc_version, /* version table */
698 .pg_name = "lockd", /* service name */
699 .pg_class = "nfsd", /* share authentication with nfsd */
700 .pg_stats = &nlmsvc_stats, /* stats table */
701 .pg_authenticate = &lockd_authenticate /* export authentication */
702};