]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/lockd/host.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[mirror_ubuntu-artful-kernel.git] / fs / lockd / host.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/lockd/host.c
3 *
4 * Management for NLM peer hosts. The nlm_host struct is shared
5 * between client and server implementation. The only reason to
6 * do so is to reduce code bloat.
7 *
8 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
9 */
10
11#include <linux/types.h>
1da177e4
LT
12#include <linux/slab.h>
13#include <linux/in.h>
1b333c54 14#include <linux/in6.h>
1da177e4
LT
15#include <linux/sunrpc/clnt.h>
16#include <linux/sunrpc/svc.h>
17#include <linux/lockd/lockd.h>
353ab6e9 18#include <linux/mutex.h>
1da177e4 19
1b333c54 20#include <net/ipv6.h>
1da177e4
LT
21
22#define NLMDBG_FACILITY NLMDBG_HOSTCACHE
1da177e4 23#define NLM_HOST_NRHASH 32
1da177e4 24#define NLM_HOST_REBIND (60 * HZ)
1447d25e
N
25#define NLM_HOST_EXPIRE (300 * HZ)
26#define NLM_HOST_COLLECT (120 * HZ)
1da177e4 27
0cea3276 28static struct hlist_head nlm_hosts[NLM_HOST_NRHASH];
1da177e4
LT
29static unsigned long next_gc;
30static int nrhosts;
353ab6e9 31static DEFINE_MUTEX(nlm_host_mutex);
1da177e4 32
1da177e4 33static void nlm_gc_hosts(void);
1da177e4 34
7f1ed18b
CL
35struct nlm_lookup_host_info {
36 const int server; /* search for server|client */
88541c84
CL
37 const struct sockaddr *sap; /* address to search for */
38 const size_t salen; /* it's length */
7f1ed18b
CL
39 const unsigned short protocol; /* transport to search for*/
40 const u32 version; /* NLM version to search for */
41 const char *hostname; /* remote's hostname */
42 const size_t hostname_len; /* it's length */
88541c84 43 const struct sockaddr *src_sap; /* our address (optional) */
7f1ed18b 44 const size_t src_len; /* it's length */
0cb2659b 45 const int noresvport; /* use non-priv port */
7f1ed18b
CL
46};
47
ede2fea0
CL
48/*
49 * Hash function must work well on big- and little-endian platforms
50 */
51static unsigned int __nlm_hash32(const __be32 n)
52{
53 unsigned int hash = (__force u32)n ^ ((__force u32)n >> 16);
54 return hash ^ (hash >> 8);
55}
56
57static unsigned int __nlm_hash_addr4(const struct sockaddr *sap)
58{
59 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
60 return __nlm_hash32(sin->sin_addr.s_addr);
61}
62
63static unsigned int __nlm_hash_addr6(const struct sockaddr *sap)
64{
65 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
66 const struct in6_addr addr = sin6->sin6_addr;
67 return __nlm_hash32(addr.s6_addr32[0]) ^
68 __nlm_hash32(addr.s6_addr32[1]) ^
69 __nlm_hash32(addr.s6_addr32[2]) ^
70 __nlm_hash32(addr.s6_addr32[3]);
71}
72
73static unsigned int nlm_hash_address(const struct sockaddr *sap)
74{
75 unsigned int hash;
76
77 switch (sap->sa_family) {
78 case AF_INET:
79 hash = __nlm_hash_addr4(sap);
80 break;
81 case AF_INET6:
82 hash = __nlm_hash_addr6(sap);
83 break;
84 default:
85 hash = 0;
86 }
87 return hash & (NLM_HOST_NRHASH - 1);
88}
89
1da177e4
LT
90/*
91 * Common host lookup routine for server & client
92 */
7f1ed18b 93static struct nlm_host *nlm_lookup_host(struct nlm_lookup_host_info *ni)
1da177e4 94{
0cea3276
OK
95 struct hlist_head *chain;
96 struct hlist_node *pos;
97 struct nlm_host *host;
8dead0db 98 struct nsm_handle *nsm = NULL;
1da177e4 99
353ab6e9 100 mutex_lock(&nlm_host_mutex);
1da177e4
LT
101
102 if (time_after_eq(jiffies, next_gc))
103 nlm_gc_hosts();
104
8dead0db
OK
105 /* We may keep several nlm_host objects for a peer, because each
106 * nlm_host is identified by
107 * (address, protocol, version, server/client)
108 * We could probably simplify this a little by putting all those
109 * different NLM rpc_clients into one single nlm_host object.
110 * This would allow us to have one nlm_host per address.
111 */
88541c84 112 chain = &nlm_hosts[nlm_hash_address(ni->sap)];
0cea3276 113 hlist_for_each_entry(host, pos, chain, h_hash) {
4516fc04 114 if (!rpc_cmp_addr(nlm_addr(host), ni->sap))
8dead0db
OK
115 continue;
116
117 /* See if we have an NSM handle for this client */
6b54dae2
N
118 if (!nsm)
119 nsm = host->h_nsmhandle;
8dead0db 120
7f1ed18b 121 if (host->h_proto != ni->protocol)
1da177e4 122 continue;
7f1ed18b 123 if (host->h_version != ni->version)
1da177e4 124 continue;
7f1ed18b 125 if (host->h_server != ni->server)
1da177e4 126 continue;
8e35f8e7 127 if (ni->server && ni->src_len != 0 &&
4516fc04 128 !rpc_cmp_addr(nlm_srcaddr(host), ni->src_sap))
c98451bd 129 continue;
1da177e4 130
0cea3276
OK
131 /* Move to head of hash chain. */
132 hlist_del(&host->h_hash);
133 hlist_add_head(&host->h_hash, chain);
134
f0737a39 135 nlm_get_host(host);
1b333c54
CL
136 dprintk("lockd: nlm_lookup_host found host %s (%s)\n",
137 host->h_name, host->h_addrbuf);
f0737a39 138 goto out;
1da177e4
LT
139 }
140
c2526f42
CL
141 /*
142 * The host wasn't in our hash table. If we don't
143 * have an NSM handle for it yet, create one.
8dead0db 144 */
c2526f42
CL
145 if (nsm)
146 atomic_inc(&nsm->sm_count);
147 else {
148 host = NULL;
92fd91b9
CL
149 nsm = nsm_get_handle(ni->sap, ni->salen,
150 ni->hostname, ni->hostname_len);
1b333c54
CL
151 if (!nsm) {
152 dprintk("lockd: nlm_lookup_host failed; "
153 "no nsm handle\n");
c2526f42 154 goto out;
1b333c54 155 }
c2526f42 156 }
1da177e4 157
f8314dc6 158 host = kzalloc(sizeof(*host), GFP_KERNEL);
8dead0db
OK
159 if (!host) {
160 nsm_release(nsm);
1b333c54 161 dprintk("lockd: nlm_lookup_host failed; no memory\n");
8dead0db
OK
162 goto out;
163 }
164 host->h_name = nsm->sm_name;
1df40b60 165 host->h_addrbuf = nsm->sm_addrbuf;
88541c84
CL
166 memcpy(nlm_addr(host), ni->sap, ni->salen);
167 host->h_addrlen = ni->salen;
b97a5674 168 rpc_set_port(nlm_addr(host), 0);
88541c84 169 memcpy(nlm_srcaddr(host), ni->src_sap, ni->src_len);
8e35f8e7 170 host->h_srcaddrlen = ni->src_len;
7f1ed18b
CL
171 host->h_version = ni->version;
172 host->h_proto = ni->protocol;
1da177e4 173 host->h_rpcclnt = NULL;
50467914 174 mutex_init(&host->h_mutex);
1da177e4
LT
175 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
176 host->h_expires = jiffies + NLM_HOST_EXPIRE;
177 atomic_set(&host->h_count, 1);
178 init_waitqueue_head(&host->h_gracewait);
28df955a 179 init_rwsem(&host->h_rwsem);
1da177e4
LT
180 host->h_state = 0; /* pseudo NSM state */
181 host->h_nsmstate = 0; /* real NSM state */
8dead0db 182 host->h_nsmhandle = nsm;
7f1ed18b 183 host->h_server = ni->server;
0cb2659b 184 host->h_noresvport = ni->noresvport;
0cea3276 185 hlist_add_head(&host->h_hash, chain);
1da177e4
LT
186 INIT_LIST_HEAD(&host->h_lockowners);
187 spin_lock_init(&host->h_lock);
26bcbf96
CH
188 INIT_LIST_HEAD(&host->h_granted);
189 INIT_LIST_HEAD(&host->h_reclaim);
1da177e4 190
1447d25e 191 nrhosts++;
1b333c54 192
1b333c54
CL
193 dprintk("lockd: nlm_lookup_host created host %s\n",
194 host->h_name);
195
8dead0db 196out:
353ab6e9 197 mutex_unlock(&nlm_host_mutex);
1da177e4
LT
198 return host;
199}
200
c53c1bb9
OK
201/*
202 * Destroy a host
203 */
204static void
205nlm_destroy_host(struct nlm_host *host)
206{
207 struct rpc_clnt *clnt;
208
209 BUG_ON(!list_empty(&host->h_lockowners));
210 BUG_ON(atomic_read(&host->h_count));
211
c53c1bb9 212 nsm_unmonitor(host);
c8c23c42 213 nsm_release(host->h_nsmhandle);
c53c1bb9 214
34f52e35
TM
215 clnt = host->h_rpcclnt;
216 if (clnt != NULL)
217 rpc_shutdown_client(clnt);
c53c1bb9
OK
218 kfree(host);
219}
220
d7d20440
CL
221/**
222 * nlmclnt_lookup_host - Find an NLM host handle matching a remote server
223 * @sap: network address of server
224 * @salen: length of server address
225 * @protocol: transport protocol to use
226 * @version: NLM protocol version
227 * @hostname: '\0'-terminated hostname of server
0cb2659b 228 * @noresvport: 1 if non-privileged port should be used
d7d20440
CL
229 *
230 * Returns an nlm_host structure that matches the passed-in
231 * [server address, transport protocol, NLM version, server hostname].
232 * If one doesn't already exist in the host cache, a new handle is
233 * created and returned.
c585646d 234 */
d7d20440
CL
235struct nlm_host *nlmclnt_lookup_host(const struct sockaddr *sap,
236 const size_t salen,
237 const unsigned short protocol,
0cb2659b
CL
238 const u32 version,
239 const char *hostname,
240 int noresvport)
c585646d 241{
7f1ed18b
CL
242 struct nlm_lookup_host_info ni = {
243 .server = 0,
d7d20440
CL
244 .sap = sap,
245 .salen = salen,
246 .protocol = protocol,
7f1ed18b
CL
247 .version = version,
248 .hostname = hostname,
d7d20440 249 .hostname_len = strlen(hostname),
0cb2659b 250 .noresvport = noresvport,
7f1ed18b 251 };
c98451bd 252
7f1ed18b
CL
253 dprintk("lockd: %s(host='%s', vers=%u, proto=%s)\n", __func__,
254 (hostname ? hostname : "<none>"), version,
d7d20440 255 (protocol == IPPROTO_UDP ? "udp" : "tcp"));
7f1ed18b
CL
256
257 return nlm_lookup_host(&ni);
c585646d
AB
258}
259
6bfbe8af
CL
260/**
261 * nlmsvc_lookup_host - Find an NLM host handle matching a remote client
262 * @rqstp: incoming NLM request
263 * @hostname: name of client host
264 * @hostname_len: length of client hostname
265 *
266 * Returns an nlm_host structure that matches the [client address,
267 * transport protocol, NLM version, client hostname] of the passed-in
268 * NLM request. If one doesn't already exist in the host cache, a
269 * new handle is created and returned.
270 *
271 * Before possibly creating a new nlm_host, construct a sockaddr
272 * for a specific source address in case the local system has
273 * multiple network addresses. The family of the address in
274 * rq_daddr is guaranteed to be the same as the family of the
275 * address in rq_addr, so it's safe to use the same family for
276 * the source address.
c585646d 277 */
6bfbe8af
CL
278struct nlm_host *nlmsvc_lookup_host(const struct svc_rqst *rqstp,
279 const char *hostname,
280 const size_t hostname_len)
c585646d 281{
6bfbe8af 282 struct sockaddr_in sin = {
2860a022 283 .sin_family = AF_INET,
6bfbe8af
CL
284 };
285 struct sockaddr_in6 sin6 = {
286 .sin6_family = AF_INET6,
2860a022 287 };
7f1ed18b
CL
288 struct nlm_lookup_host_info ni = {
289 .server = 1,
88541c84
CL
290 .sap = svc_addr(rqstp),
291 .salen = rqstp->rq_addrlen,
7f1ed18b
CL
292 .protocol = rqstp->rq_prot,
293 .version = rqstp->rq_vers,
294 .hostname = hostname,
295 .hostname_len = hostname_len,
6bfbe8af 296 .src_len = rqstp->rq_addrlen,
7f1ed18b
CL
297 };
298
299 dprintk("lockd: %s(host='%*s', vers=%u, proto=%s)\n", __func__,
300 (int)hostname_len, hostname, rqstp->rq_vers,
301 (rqstp->rq_prot == IPPROTO_UDP ? "udp" : "tcp"));
c98451bd 302
6bfbe8af
CL
303 switch (ni.sap->sa_family) {
304 case AF_INET:
305 sin.sin_addr.s_addr = rqstp->rq_daddr.addr.s_addr;
306 ni.src_sap = (struct sockaddr *)&sin;
307 break;
308 case AF_INET6:
309 ipv6_addr_copy(&sin6.sin6_addr, &rqstp->rq_daddr.addr6);
310 ni.src_sap = (struct sockaddr *)&sin6;
311 break;
312 default:
313 return NULL;
314 }
315
7f1ed18b 316 return nlm_lookup_host(&ni);
c585646d
AB
317}
318
1da177e4
LT
319/*
320 * Create the NLM RPC client for an NLM peer
321 */
322struct rpc_clnt *
323nlm_bind_host(struct nlm_host *host)
324{
325 struct rpc_clnt *clnt;
1da177e4 326
1df40b60
CL
327 dprintk("lockd: nlm_bind_host %s (%s)\n",
328 host->h_name, host->h_addrbuf);
1da177e4
LT
329
330 /* Lock host handle */
50467914 331 mutex_lock(&host->h_mutex);
1da177e4
LT
332
333 /* If we've already created an RPC client, check whether
334 * RPC rebind is required
1da177e4
LT
335 */
336 if ((clnt = host->h_rpcclnt) != NULL) {
43118c29 337 if (time_after_eq(jiffies, host->h_nextrebind)) {
35f5a422 338 rpc_force_rebind(clnt);
1da177e4 339 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
1b333c54 340 dprintk("lockd: next rebind in %lu jiffies\n",
1da177e4
LT
341 host->h_nextrebind - jiffies);
342 }
343 } else {
21051ba6 344 unsigned long increment = nlmsvc_timeout;
e1ec7892
CL
345 struct rpc_timeout timeparms = {
346 .to_initval = increment,
347 .to_increment = increment,
348 .to_maxval = increment * 6UL,
349 .to_retries = 5U,
350 };
351 struct rpc_create_args args = {
c653ce3f 352 .net = &init_net,
e1ec7892 353 .protocol = host->h_proto,
b4ed58fd
CL
354 .address = nlm_addr(host),
355 .addrsize = host->h_addrlen,
e1ec7892
CL
356 .timeout = &timeparms,
357 .servername = host->h_name,
358 .program = &nlm_program,
359 .version = host->h_version,
360 .authflavor = RPC_AUTH_UNIX,
90bd17c8 361 .flags = (RPC_CLNT_CREATE_NOPING |
e1ec7892
CL
362 RPC_CLNT_CREATE_AUTOBIND),
363 };
364
90bd17c8
JL
365 /*
366 * lockd retries server side blocks automatically so we want
367 * those to be soft RPC calls. Client side calls need to be
368 * hard RPC tasks.
369 */
370 if (!host->h_server)
371 args.flags |= RPC_CLNT_CREATE_HARDRTRY;
0cb2659b
CL
372 if (host->h_noresvport)
373 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
8e35f8e7
TM
374 if (host->h_srcaddrlen)
375 args.saddress = nlm_srcaddr(host);
90bd17c8 376
e1ec7892
CL
377 clnt = rpc_create(&args);
378 if (!IS_ERR(clnt))
379 host->h_rpcclnt = clnt;
380 else {
381 printk("lockd: couldn't create RPC handle for %s\n", host->h_name);
382 clnt = NULL;
383 }
1da177e4
LT
384 }
385
50467914 386 mutex_unlock(&host->h_mutex);
1da177e4 387 return clnt;
1da177e4
LT
388}
389
390/*
391 * Force a portmap lookup of the remote lockd port
392 */
393void
394nlm_rebind_host(struct nlm_host *host)
395{
396 dprintk("lockd: rebind host %s\n", host->h_name);
397 if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) {
35f5a422 398 rpc_force_rebind(host->h_rpcclnt);
1da177e4
LT
399 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
400 }
401}
402
403/*
404 * Increment NLM host count
405 */
406struct nlm_host * nlm_get_host(struct nlm_host *host)
407{
408 if (host) {
409 dprintk("lockd: get host %s\n", host->h_name);
410 atomic_inc(&host->h_count);
411 host->h_expires = jiffies + NLM_HOST_EXPIRE;
412 }
413 return host;
414}
415
416/*
417 * Release NLM host after use
418 */
419void nlm_release_host(struct nlm_host *host)
420{
421 if (host != NULL) {
422 dprintk("lockd: release host %s\n", host->h_name);
1da177e4 423 BUG_ON(atomic_read(&host->h_count) < 0);
4c060b53
TM
424 if (atomic_dec_and_test(&host->h_count)) {
425 BUG_ON(!list_empty(&host->h_lockowners));
426 BUG_ON(!list_empty(&host->h_granted));
427 BUG_ON(!list_empty(&host->h_reclaim));
428 }
1da177e4
LT
429 }
430}
431
7fefc9cb
CL
432/**
433 * nlm_host_rebooted - Release all resources held by rebooted host
434 * @info: pointer to decoded results of NLM_SM_NOTIFY call
435 *
436 * We were notified that the specified host has rebooted. Release
437 * all resources held by that peer.
cf712c24 438 */
7fefc9cb 439void nlm_host_rebooted(const struct nlm_reboot *info)
cf712c24 440{
0cea3276
OK
441 struct hlist_head *chain;
442 struct hlist_node *pos;
5c8dd29c 443 struct nsm_handle *nsm;
0cea3276 444 struct nlm_host *host;
cf712c24 445
8c7378fd
CL
446 nsm = nsm_reboot_lookup(info);
447 if (unlikely(nsm == NULL))
db4e4c9a 448 return;
5c8dd29c
OK
449
450 /* Mark all hosts tied to this NSM state as having rebooted.
451 * We run the loop repeatedly, because we drop the host table
452 * lock for this.
453 * To avoid processing a host several times, we match the nsmstate.
454 */
455again: mutex_lock(&nlm_host_mutex);
0cea3276
OK
456 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
457 hlist_for_each_entry(host, pos, chain, h_hash) {
5c8dd29c 458 if (host->h_nsmhandle == nsm
7fefc9cb
CL
459 && host->h_nsmstate != info->state) {
460 host->h_nsmstate = info->state;
5c8dd29c
OK
461 host->h_state++;
462
463 nlm_get_host(host);
464 mutex_unlock(&nlm_host_mutex);
465
466 if (host->h_server) {
467 /* We're server for this guy, just ditch
468 * all the locks he held. */
469 nlmsvc_free_host_resources(host);
470 } else {
471 /* He's the server, initiate lock recovery. */
472 nlmclnt_recovery(host);
473 }
474
475 nlm_release_host(host);
476 goto again;
477 }
478 }
cf712c24 479 }
5c8dd29c 480 mutex_unlock(&nlm_host_mutex);
cdd30fa1 481 nsm_release(nsm);
cf712c24
OK
482}
483
1da177e4
LT
484/*
485 * Shut down the hosts module.
486 * Note that this routine is called only at server shutdown time.
487 */
488void
489nlm_shutdown_hosts(void)
490{
0cea3276
OK
491 struct hlist_head *chain;
492 struct hlist_node *pos;
1da177e4 493 struct nlm_host *host;
1da177e4
LT
494
495 dprintk("lockd: shutting down host module\n");
353ab6e9 496 mutex_lock(&nlm_host_mutex);
1da177e4
LT
497
498 /* First, make all hosts eligible for gc */
499 dprintk("lockd: nuking all hosts...\n");
0cea3276 500 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
d801b861 501 hlist_for_each_entry(host, pos, chain, h_hash) {
1da177e4 502 host->h_expires = jiffies - 1;
d801b861
JL
503 if (host->h_rpcclnt) {
504 rpc_shutdown_client(host->h_rpcclnt);
505 host->h_rpcclnt = NULL;
506 }
507 }
1da177e4
LT
508 }
509
510 /* Then, perform a garbage collection pass */
511 nlm_gc_hosts();
353ab6e9 512 mutex_unlock(&nlm_host_mutex);
1da177e4
LT
513
514 /* complain if any hosts are left */
515 if (nrhosts) {
516 printk(KERN_WARNING "lockd: couldn't shutdown host module!\n");
517 dprintk("lockd: %d hosts left:\n", nrhosts);
0cea3276
OK
518 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
519 hlist_for_each_entry(host, pos, chain, h_hash) {
1da177e4
LT
520 dprintk(" %s (cnt %d use %d exp %ld)\n",
521 host->h_name, atomic_read(&host->h_count),
522 host->h_inuse, host->h_expires);
523 }
524 }
525 }
526}
527
528/*
529 * Garbage collect any unused NLM hosts.
530 * This GC combines reference counting for async operations with
531 * mark & sweep for resources held by remote clients.
532 */
533static void
534nlm_gc_hosts(void)
535{
0cea3276
OK
536 struct hlist_head *chain;
537 struct hlist_node *pos, *next;
538 struct nlm_host *host;
1da177e4
LT
539
540 dprintk("lockd: host garbage collection\n");
0cea3276
OK
541 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
542 hlist_for_each_entry(host, pos, chain, h_hash)
1da177e4
LT
543 host->h_inuse = 0;
544 }
545
546 /* Mark all hosts that hold locks, blocks or shares */
547 nlmsvc_mark_resources();
548
0cea3276
OK
549 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
550 hlist_for_each_entry_safe(host, pos, next, chain, h_hash) {
1da177e4
LT
551 if (atomic_read(&host->h_count) || host->h_inuse
552 || time_before(jiffies, host->h_expires)) {
553 dprintk("nlm_gc_hosts skipping %s (cnt %d use %d exp %ld)\n",
554 host->h_name, atomic_read(&host->h_count),
555 host->h_inuse, host->h_expires);
1da177e4
LT
556 continue;
557 }
558 dprintk("lockd: delete host %s\n", host->h_name);
0cea3276 559 hlist_del_init(&host->h_hash);
977faf39 560
c53c1bb9 561 nlm_destroy_host(host);
1da177e4
LT
562 nrhosts--;
563 }
564 }
565
566 next_gc = jiffies + NLM_HOST_COLLECT;
567}