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