LockD: pass actual network namespace to grace period management functions
[deliverable/linux.git] / fs / lockd / svc.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
15#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>
1da177e4 24#include <linux/smp.h>
353ab6e9 25#include <linux/mutex.h>
d751a7cd 26#include <linux/kthread.h>
83144186 27#include <linux/freezer.h>
1da177e4
LT
28
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>
24e36663 34#include <net/ip.h>
1da177e4
LT
35#include <linux/lockd/lockd.h>
36#include <linux/nfs.h>
37
a9c5d73a
SK
38#include "netns.h"
39
1da177e4
LT
40#define NLMDBG_FACILITY NLMDBG_SVC
41#define LOCKD_BUFSIZE (1024 + NLMSVC_XDRSIZE)
42#define ALLOWED_SIGS (sigmask(SIGKILL))
43
44static struct svc_program nlmsvc_program;
45
46struct nlmsvc_binding * nlmsvc_ops;
2de59872 47EXPORT_SYMBOL_GPL(nlmsvc_ops);
1da177e4 48
353ab6e9 49static DEFINE_MUTEX(nlmsvc_mutex);
1da177e4 50static unsigned int nlmsvc_users;
d751a7cd 51static struct task_struct *nlmsvc_task;
abd1ec4e 52static struct svc_rqst *nlmsvc_rqst;
1da177e4
LT
53unsigned long nlmsvc_timeout;
54
a9c5d73a
SK
55int lockd_net_id;
56
1da177e4
LT
57/*
58 * These can be set at insmod time (useful for NFS as root filesystem),
59 * and also changed through the sysctl interface. -- Jamie Lokier, Aug 2003
60 */
61static unsigned long nlm_grace_period;
62static unsigned long nlm_timeout = LOCKD_DFLT_TIMEO;
63static int nlm_udpport, nlm_tcpport;
64
c72a476b
JL
65/* RLIM_NOFILE defaults to 1024. That seems like a reasonable default here. */
66static unsigned int nlm_max_connections = 1024;
67
1da177e4
LT
68/*
69 * Constants needed for the sysctl interface.
70 */
71static const unsigned long nlm_grace_period_min = 0;
72static const unsigned long nlm_grace_period_max = 240;
73static const unsigned long nlm_timeout_min = 3;
74static const unsigned long nlm_timeout_max = 20;
75static const int nlm_port_min = 0, nlm_port_max = 65535;
76
90d5b180 77#ifdef CONFIG_SYSCTL
1da177e4 78static struct ctl_table_header * nlm_sysctl_table;
90d5b180 79#endif
1da177e4 80
9a8db97e 81static unsigned long get_lockd_grace_period(void)
1da177e4 82{
1da177e4
LT
83 /* Note: nlm_timeout should always be nonzero */
84 if (nlm_grace_period)
9a8db97e 85 return roundup(nlm_grace_period, nlm_timeout) * HZ;
1da177e4 86 else
9a8db97e
ME
87 return nlm_timeout * 5 * HZ;
88}
89
08d44a35 90static void grace_ender(struct work_struct *grace)
9a8db97e 91{
08d44a35
SK
92 struct delayed_work *dwork = container_of(grace, struct delayed_work,
93 work);
94 struct lockd_net *ln = container_of(dwork, struct lockd_net,
95 grace_period_end);
96
97 locks_end_grace(&ln->lockd_manager);
1da177e4
LT
98}
99
5ccb0066 100static void set_grace_period(struct net *net)
1da177e4 101{
af558e33 102 unsigned long grace_period = get_lockd_grace_period();
5ccb0066 103 struct lockd_net *ln = net_generic(net, lockd_net_id);
c8ab5f2a 104
5ccb0066 105 locks_start_grace(net, &ln->lockd_manager);
66547b02
SK
106 cancel_delayed_work_sync(&ln->grace_period_end);
107 schedule_delayed_work(&ln->grace_period_end, grace_period);
1da177e4
LT
108}
109
89996df4
BF
110static void restart_grace(void)
111{
112 if (nlmsvc_ops) {
5ccb0066
SK
113 struct net *net = &init_net;
114 struct lockd_net *ln = net_generic(net, lockd_net_id);
66547b02
SK
115
116 cancel_delayed_work_sync(&ln->grace_period_end);
08d44a35 117 locks_end_grace(&ln->lockd_manager);
89996df4 118 nlmsvc_invalidate_all();
5ccb0066 119 set_grace_period(net);
89996df4
BF
120 }
121}
122
1da177e4
LT
123/*
124 * This is the lockd kernel thread
125 */
d751a7cd
JL
126static int
127lockd(void *vrqstp)
1da177e4 128{
f97c650d 129 int err = 0, preverr = 0;
d751a7cd 130 struct svc_rqst *rqstp = vrqstp;
5ccb0066
SK
131 struct net *net = &init_net;
132 struct lockd_net *ln = net_generic(net, lockd_net_id);
1da177e4 133
d751a7cd 134 /* try_to_freeze() is called from svc_recv() */
83144186 135 set_freezable();
1da177e4 136
d751a7cd 137 /* Allow SIGKILL to tell lockd to drop all of its locks */
1da177e4
LT
138 allow_signal(SIGKILL);
139
1da177e4
LT
140 dprintk("NFS locking service started (ver " LOCKD_VERSION ").\n");
141
142 if (!nlm_timeout)
143 nlm_timeout = LOCKD_DFLT_TIMEO;
144 nlmsvc_timeout = nlm_timeout * HZ;
145
5ccb0066 146 set_grace_period(net);
1da177e4
LT
147
148 /*
149 * The main request loop. We don't terminate until the last
d751a7cd 150 * NFS mount or NFS daemon has gone away.
1da177e4 151 */
d751a7cd 152 while (!kthread_should_stop()) {
1da177e4 153 long timeout = MAX_SCHEDULE_TIMEOUT;
5216a8e7 154 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
1da177e4 155
c72a476b
JL
156 /* update sv_maxconn if it has changed */
157 rqstp->rq_server->sv_maxconn = nlm_max_connections;
158
1da177e4
LT
159 if (signalled()) {
160 flush_signals(current);
89996df4 161 restart_grace();
d751a7cd 162 continue;
1da177e4
LT
163 }
164
8fafa900
BF
165 timeout = nlmsvc_retry_blocked();
166
1da177e4
LT
167 /*
168 * Find a socket with data available and call its
169 * recvfrom routine.
170 */
6fb2b47f 171 err = svc_recv(rqstp, timeout);
f97c650d
JL
172 if (err == -EAGAIN || err == -EINTR) {
173 preverr = err;
1da177e4 174 continue;
f97c650d 175 }
1da177e4 176 if (err < 0) {
f97c650d
JL
177 if (err != preverr) {
178 printk(KERN_WARNING "%s: unexpected error "
179 "from svc_recv (%d)\n", __func__, err);
180 preverr = err;
181 }
182 schedule_timeout_interruptible(HZ);
183 continue;
1da177e4 184 }
f97c650d 185 preverr = err;
1da177e4 186
ad06e4bd
CL
187 dprintk("lockd: request from %s\n",
188 svc_print_addr(rqstp, buf, sizeof(buf)));
1da177e4 189
6fb2b47f 190 svc_process(rqstp);
1da177e4 191 }
2bd61579 192 flush_signals(current);
66547b02 193 cancel_delayed_work_sync(&ln->grace_period_end);
08d44a35 194 locks_end_grace(&ln->lockd_manager);
d751a7cd
JL
195 if (nlmsvc_ops)
196 nlmsvc_invalidate_all();
197 nlm_shutdown_hosts();
d751a7cd 198 return 0;
1da177e4
LT
199}
200
eb16e907 201static int create_lockd_listener(struct svc_serv *serv, const char *name,
c228fa20
SK
202 struct net *net, const int family,
203 const unsigned short port)
d3fe5ea7
CL
204{
205 struct svc_xprt *xprt;
206
c228fa20 207 xprt = svc_find_xprt(serv, name, net, family, 0);
d3fe5ea7 208 if (xprt == NULL)
c228fa20 209 return svc_create_xprt(serv, name, net, family, port,
eb16e907 210 SVC_SOCK_DEFAULTS);
d3fe5ea7
CL
211 svc_xprt_put(xprt);
212 return 0;
213}
214
c228fa20
SK
215static int create_lockd_family(struct svc_serv *serv, struct net *net,
216 const int family)
eb16e907
CL
217{
218 int err;
219
c228fa20 220 err = create_lockd_listener(serv, "udp", net, family, nlm_udpport);
eb16e907
CL
221 if (err < 0)
222 return err;
223
c228fa20 224 return create_lockd_listener(serv, "tcp", net, family, nlm_tcpport);
eb16e907
CL
225}
226
482fb94e 227/*
8c3916f4
CL
228 * Ensure there are active UDP and TCP listeners for lockd.
229 *
230 * Even if we have only TCP NFS mounts and/or TCP NFSDs, some
231 * local services (such as rpc.statd) still require UDP, and
232 * some NFS servers do not yet support NLM over TCP.
233 *
234 * Returns zero if all listeners are available; otherwise a
235 * negative errno value is returned.
482fb94e 236 */
c228fa20 237static int make_socks(struct svc_serv *serv, struct net *net)
24e36663 238{
482fb94e 239 static int warned;
0dba7c2a 240 int err;
482fb94e 241
c228fa20 242 err = create_lockd_family(serv, net, PF_INET);
0dba7c2a
CL
243 if (err < 0)
244 goto out_err;
245
c228fa20 246 err = create_lockd_family(serv, net, PF_INET6);
eb16e907 247 if (err < 0 && err != -EAFNOSUPPORT)
0dba7c2a
CL
248 goto out_err;
249
250 warned = 0;
251 return 0;
252
253out_err:
254 if (warned++ == 0)
7dcf91ec 255 printk(KERN_WARNING
0dba7c2a 256 "lockd_up: makesock failed, error=%d\n", err);
24e36663
N
257 return err;
258}
259
4db77695 260static int lockd_up_net(struct svc_serv *serv, struct net *net)
bb2224df
SK
261{
262 struct lockd_net *ln = net_generic(net, lockd_net_id);
bb2224df
SK
263 int error;
264
786185b5 265 if (ln->nlmsvc_users++)
bb2224df
SK
266 return 0;
267
dbf9b5d7 268 error = svc_bind(serv, net);
bb2224df 269 if (error)
dbf9b5d7 270 goto err_bind;
bb2224df
SK
271
272 error = make_socks(serv, net);
273 if (error < 0)
274 goto err_socks;
8dbf28e4 275 dprintk("lockd_up_net: per-net data created; net=%p\n", net);
bb2224df
SK
276 return 0;
277
278err_socks:
279 svc_rpcb_cleanup(serv, net);
dbf9b5d7 280err_bind:
786185b5 281 ln->nlmsvc_users--;
bb2224df
SK
282 return error;
283}
284
4db77695 285static void lockd_down_net(struct svc_serv *serv, struct net *net)
bb2224df
SK
286{
287 struct lockd_net *ln = net_generic(net, lockd_net_id);
bb2224df
SK
288
289 if (ln->nlmsvc_users) {
3b64739f
SK
290 if (--ln->nlmsvc_users == 0) {
291 nlm_shutdown_hosts_net(net);
bb2224df 292 svc_shutdown_net(serv, net);
8dbf28e4 293 dprintk("lockd_down_net: per-net data destroyed; net=%p\n", net);
3b64739f 294 }
bb2224df
SK
295 } else {
296 printk(KERN_ERR "lockd_down_net: no users! task=%p, net=%p\n",
297 nlmsvc_task, net);
298 BUG();
299 }
300}
301
3d1221df
SK
302static int lockd_start_svc(struct svc_serv *serv)
303{
304 int error;
305
306 if (nlmsvc_rqst)
307 return 0;
308
309 /*
310 * Create the kernel thread and wait for it to start.
311 */
312 nlmsvc_rqst = svc_prepare_thread(serv, &serv->sv_pools[0], NUMA_NO_NODE);
313 if (IS_ERR(nlmsvc_rqst)) {
314 error = PTR_ERR(nlmsvc_rqst);
315 printk(KERN_WARNING
316 "lockd_up: svc_rqst allocation failed, error=%d\n",
317 error);
318 goto out_rqst;
319 }
320
321 svc_sock_update_bufs(serv);
322 serv->sv_maxconn = nlm_max_connections;
323
324 nlmsvc_task = kthread_run(lockd, nlmsvc_rqst, serv->sv_name);
325 if (IS_ERR(nlmsvc_task)) {
326 error = PTR_ERR(nlmsvc_task);
327 printk(KERN_WARNING
328 "lockd_up: kthread_run failed, error=%d\n", error);
329 goto out_task;
330 }
331 dprintk("lockd_up: service started\n");
332 return 0;
333
334out_task:
335 svc_exit_thread(nlmsvc_rqst);
336 nlmsvc_task = NULL;
337out_rqst:
338 nlmsvc_rqst = NULL;
339 return error;
340}
341
24452239 342static struct svc_serv *lockd_create_svc(void)
1da177e4 343{
d751a7cd 344 struct svc_serv *serv;
1da177e4 345
1da177e4
LT
346 /*
347 * Check whether we're already up and running.
348 */
bb2224df 349 if (nlmsvc_rqst) {
24452239
SK
350 /*
351 * Note: increase service usage, because later in case of error
352 * svc_destroy() will be called.
353 */
354 svc_get(nlmsvc_rqst->rq_server);
355 return nlmsvc_rqst->rq_server;
bb2224df 356 }
1da177e4
LT
357
358 /*
359 * Sanity check: if there's no pid,
360 * we should be the first user ...
361 */
4a3ae42d 362 if (nlmsvc_users)
1da177e4
LT
363 printk(KERN_WARNING
364 "lockd_up: no pid, %d users??\n", nlmsvc_users);
365
49a9072f 366 serv = svc_create(&nlmsvc_program, LOCKD_BUFSIZE, NULL);
1da177e4
LT
367 if (!serv) {
368 printk(KERN_WARNING "lockd_up: create service failed\n");
24452239
SK
369 return ERR_PTR(-ENOMEM);
370 }
8dbf28e4 371 dprintk("lockd_up: service created\n");
24452239
SK
372 return serv;
373}
374
375/*
376 * Bring up the lockd process if it's not already up.
377 */
378int lockd_up(struct net *net)
379{
380 struct svc_serv *serv;
7d13ec76 381 int error;
24452239
SK
382
383 mutex_lock(&nlmsvc_mutex);
384
385 serv = lockd_create_svc();
386 if (IS_ERR(serv)) {
387 error = PTR_ERR(serv);
388 goto err_create;
1da177e4
LT
389 }
390
dbf9b5d7 391 error = lockd_up_net(serv, net);
8c3916f4 392 if (error < 0)
dbf9b5d7 393 goto err_net;
1da177e4 394
3d1221df
SK
395 error = lockd_start_svc(serv);
396 if (error < 0)
786185b5 397 goto err_start;
1da177e4 398
7d13ec76 399 nlmsvc_users++;
1da177e4
LT
400 /*
401 * Note: svc_serv structures have an initial use count of 1,
402 * so we exit through here on both success and failure.
403 */
dbf9b5d7 404err_net:
1da177e4 405 svc_destroy(serv);
24452239 406err_create:
353ab6e9 407 mutex_unlock(&nlmsvc_mutex);
1da177e4 408 return error;
786185b5
SK
409
410err_start:
4db77695 411 lockd_down_net(serv, net);
dbf9b5d7 412 goto err_net;
1da177e4 413}
2de59872 414EXPORT_SYMBOL_GPL(lockd_up);
1da177e4
LT
415
416/*
417 * Decrement the user count and bring down lockd if we're the last.
418 */
419void
e3f70ead 420lockd_down(struct net *net)
1da177e4 421{
353ab6e9 422 mutex_lock(&nlmsvc_mutex);
4db77695 423 lockd_down_net(nlmsvc_rqst->rq_server, net);
1da177e4 424 if (nlmsvc_users) {
786185b5 425 if (--nlmsvc_users)
1da177e4 426 goto out;
d751a7cd
JL
427 } else {
428 printk(KERN_ERR "lockd_down: no users! task=%p\n",
429 nlmsvc_task);
430 BUG();
1da177e4 431 }
1da177e4 432
d751a7cd
JL
433 if (!nlmsvc_task) {
434 printk(KERN_ERR "lockd_down: no lockd running.\n");
435 BUG();
1da177e4 436 }
d751a7cd 437 kthread_stop(nlmsvc_task);
8dbf28e4 438 dprintk("lockd_down: service stopped\n");
abd1ec4e 439 svc_exit_thread(nlmsvc_rqst);
8dbf28e4 440 dprintk("lockd_down: service destroyed\n");
abd1ec4e
JL
441 nlmsvc_task = NULL;
442 nlmsvc_rqst = NULL;
1da177e4 443out:
353ab6e9 444 mutex_unlock(&nlmsvc_mutex);
1da177e4 445}
2de59872 446EXPORT_SYMBOL_GPL(lockd_down);
1da177e4 447
90d5b180
CL
448#ifdef CONFIG_SYSCTL
449
1da177e4
LT
450/*
451 * Sysctl parameters (same as module parameters, different interface).
452 */
453
1da177e4
LT
454static ctl_table nlm_sysctls[] = {
455 {
1da177e4
LT
456 .procname = "nlm_grace_period",
457 .data = &nlm_grace_period,
7ee91ec1 458 .maxlen = sizeof(unsigned long),
1da177e4 459 .mode = 0644,
6d456111 460 .proc_handler = proc_doulongvec_minmax,
1da177e4
LT
461 .extra1 = (unsigned long *) &nlm_grace_period_min,
462 .extra2 = (unsigned long *) &nlm_grace_period_max,
463 },
464 {
1da177e4
LT
465 .procname = "nlm_timeout",
466 .data = &nlm_timeout,
7ee91ec1 467 .maxlen = sizeof(unsigned long),
1da177e4 468 .mode = 0644,
6d456111 469 .proc_handler = proc_doulongvec_minmax,
1da177e4
LT
470 .extra1 = (unsigned long *) &nlm_timeout_min,
471 .extra2 = (unsigned long *) &nlm_timeout_max,
472 },
473 {
1da177e4
LT
474 .procname = "nlm_udpport",
475 .data = &nlm_udpport,
476 .maxlen = sizeof(int),
477 .mode = 0644,
6d456111 478 .proc_handler = proc_dointvec_minmax,
1da177e4
LT
479 .extra1 = (int *) &nlm_port_min,
480 .extra2 = (int *) &nlm_port_max,
481 },
482 {
1da177e4
LT
483 .procname = "nlm_tcpport",
484 .data = &nlm_tcpport,
485 .maxlen = sizeof(int),
486 .mode = 0644,
6d456111 487 .proc_handler = proc_dointvec_minmax,
1da177e4
LT
488 .extra1 = (int *) &nlm_port_min,
489 .extra2 = (int *) &nlm_port_max,
490 },
abd1f500 491 {
abd1f500
OK
492 .procname = "nsm_use_hostnames",
493 .data = &nsm_use_hostnames,
494 .maxlen = sizeof(int),
495 .mode = 0644,
6d456111 496 .proc_handler = proc_dointvec,
abd1f500 497 },
460f5cac 498 {
460f5cac
OK
499 .procname = "nsm_local_state",
500 .data = &nsm_local_state,
501 .maxlen = sizeof(int),
502 .mode = 0644,
6d456111 503 .proc_handler = proc_dointvec,
460f5cac 504 },
ab09203e 505 { }
1da177e4
LT
506};
507
508static ctl_table nlm_sysctl_dir[] = {
509 {
1da177e4
LT
510 .procname = "nfs",
511 .mode = 0555,
512 .child = nlm_sysctls,
513 },
ab09203e 514 { }
1da177e4
LT
515};
516
517static ctl_table nlm_sysctl_root[] = {
518 {
1da177e4
LT
519 .procname = "fs",
520 .mode = 0555,
521 .child = nlm_sysctl_dir,
522 },
ab09203e 523 { }
1da177e4
LT
524};
525
90d5b180
CL
526#endif /* CONFIG_SYSCTL */
527
1da177e4 528/*
405ae7d3 529 * Module (and sysfs) parameters.
1da177e4
LT
530 */
531
532#define param_set_min_max(name, type, which_strtol, min, max) \
533static int param_set_##name(const char *val, struct kernel_param *kp) \
534{ \
535 char *endp; \
536 __typeof__(type) num = which_strtol(val, &endp, 0); \
537 if (endp == val || *endp || num < (min) || num > (max)) \
538 return -EINVAL; \
de5b8e8e 539 *((type *) kp->arg) = num; \
1da177e4
LT
540 return 0; \
541}
542
543static inline int is_callback(u32 proc)
544{
545 return proc == NLMPROC_GRANTED
546 || proc == NLMPROC_GRANTED_MSG
547 || proc == NLMPROC_TEST_RES
548 || proc == NLMPROC_LOCK_RES
549 || proc == NLMPROC_CANCEL_RES
550 || proc == NLMPROC_UNLOCK_RES
551 || proc == NLMPROC_NSM_NOTIFY;
552}
553
554
555static int lockd_authenticate(struct svc_rqst *rqstp)
556{
557 rqstp->rq_client = NULL;
558 switch (rqstp->rq_authop->flavour) {
559 case RPC_AUTH_NULL:
560 case RPC_AUTH_UNIX:
561 if (rqstp->rq_proc == 0)
562 return SVC_OK;
563 if (is_callback(rqstp->rq_proc)) {
564 /* Leave it to individual procedures to
565 * call nlmsvc_lookup_host(rqstp)
566 */
567 return SVC_OK;
568 }
569 return svc_set_client(rqstp);
570 }
571 return SVC_DENIED;
572}
573
574
575param_set_min_max(port, int, simple_strtol, 0, 65535)
576param_set_min_max(grace_period, unsigned long, simple_strtoul,
577 nlm_grace_period_min, nlm_grace_period_max)
578param_set_min_max(timeout, unsigned long, simple_strtoul,
579 nlm_timeout_min, nlm_timeout_max)
580
581MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
582MODULE_DESCRIPTION("NFS file locking service version " LOCKD_VERSION ".");
583MODULE_LICENSE("GPL");
584
585module_param_call(nlm_grace_period, param_set_grace_period, param_get_ulong,
586 &nlm_grace_period, 0644);
587module_param_call(nlm_timeout, param_set_timeout, param_get_ulong,
588 &nlm_timeout, 0644);
589module_param_call(nlm_udpport, param_set_port, param_get_int,
590 &nlm_udpport, 0644);
591module_param_call(nlm_tcpport, param_set_port, param_get_int,
592 &nlm_tcpport, 0644);
abd1f500 593module_param(nsm_use_hostnames, bool, 0644);
c72a476b 594module_param(nlm_max_connections, uint, 0644);
1da177e4 595
a9c5d73a
SK
596static int lockd_init_net(struct net *net)
597{
66547b02
SK
598 struct lockd_net *ln = net_generic(net, lockd_net_id);
599
600 INIT_DELAYED_WORK(&ln->grace_period_end, grace_ender);
db9c4553 601 INIT_LIST_HEAD(&ln->grace_list);
a9c5d73a
SK
602 return 0;
603}
604
605static void lockd_exit_net(struct net *net)
606{
607}
608
609static struct pernet_operations lockd_net_ops = {
610 .init = lockd_init_net,
611 .exit = lockd_exit_net,
612 .id = &lockd_net_id,
613 .size = sizeof(struct lockd_net),
614};
615
616
1da177e4
LT
617/*
618 * Initialising and terminating the module.
619 */
620
621static int __init init_nlm(void)
622{
a9c5d73a
SK
623 int err;
624
90d5b180 625#ifdef CONFIG_SYSCTL
a9c5d73a 626 err = -ENOMEM;
0b4d4147 627 nlm_sysctl_table = register_sysctl_table(nlm_sysctl_root);
a9c5d73a
SK
628 if (nlm_sysctl_table == NULL)
629 goto err_sysctl;
630#endif
631 err = register_pernet_subsys(&lockd_net_ops);
632 if (err)
633 goto err_pernet;
90d5b180 634 return 0;
a9c5d73a
SK
635
636err_pernet:
637#ifdef CONFIG_SYSCTL
638 unregister_sysctl_table(nlm_sysctl_table);
90d5b180 639#endif
a9c5d73a
SK
640err_sysctl:
641 return err;
1da177e4
LT
642}
643
644static void __exit exit_nlm(void)
645{
646 /* FIXME: delete all NLM clients */
647 nlm_shutdown_hosts();
a9c5d73a 648 unregister_pernet_subsys(&lockd_net_ops);
90d5b180 649#ifdef CONFIG_SYSCTL
1da177e4 650 unregister_sysctl_table(nlm_sysctl_table);
90d5b180 651#endif
1da177e4
LT
652}
653
654module_init(init_nlm);
655module_exit(exit_nlm);
656
657/*
658 * Define NLM program and procedures
659 */
660static struct svc_version nlmsvc_version1 = {
661 .vs_vers = 1,
662 .vs_nproc = 17,
663 .vs_proc = nlmsvc_procedures,
664 .vs_xdrsize = NLMSVC_XDRSIZE,
665};
666static struct svc_version nlmsvc_version3 = {
667 .vs_vers = 3,
668 .vs_nproc = 24,
669 .vs_proc = nlmsvc_procedures,
670 .vs_xdrsize = NLMSVC_XDRSIZE,
671};
672#ifdef CONFIG_LOCKD_V4
673static struct svc_version nlmsvc_version4 = {
674 .vs_vers = 4,
675 .vs_nproc = 24,
676 .vs_proc = nlmsvc_procedures4,
677 .vs_xdrsize = NLMSVC_XDRSIZE,
678};
679#endif
680static struct svc_version * nlmsvc_version[] = {
681 [1] = &nlmsvc_version1,
682 [3] = &nlmsvc_version3,
683#ifdef CONFIG_LOCKD_V4
684 [4] = &nlmsvc_version4,
685#endif
686};
687
688static struct svc_stat nlmsvc_stats;
689
e8c96f8c 690#define NLM_NRVERS ARRAY_SIZE(nlmsvc_version)
1da177e4
LT
691static struct svc_program nlmsvc_program = {
692 .pg_prog = NLM_PROGRAM, /* program number */
693 .pg_nvers = NLM_NRVERS, /* number of entries in nlmsvc_version */
694 .pg_vers = nlmsvc_version, /* version table */
695 .pg_name = "lockd", /* service name */
696 .pg_class = "nfsd", /* share authentication with nfsd */
697 .pg_stats = &nlmsvc_stats, /* stats table */
698 .pg_authenticate = &lockd_authenticate /* export authentication */
699};
This page took 0.614558 seconds and 5 git commands to generate.