2 * linux/fs/lockd/host.c
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.
8 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
11 #include <linux/types.h>
12 #include <linux/slab.h>
14 #include <linux/in6.h>
15 #include <linux/sunrpc/clnt.h>
16 #include <linux/sunrpc/svc.h>
17 #include <linux/lockd/lockd.h>
18 #include <linux/lockd/sm_inter.h>
19 #include <linux/mutex.h>
23 #define NLMDBG_FACILITY NLMDBG_HOSTCACHE
24 #define NLM_HOST_NRHASH 32
25 #define NLM_ADDRHASH(addr) (ntohl(addr) & (NLM_HOST_NRHASH-1))
26 #define NLM_HOST_REBIND (60 * HZ)
27 #define NLM_HOST_EXPIRE (300 * HZ)
28 #define NLM_HOST_COLLECT (120 * HZ)
30 static struct hlist_head nlm_hosts[NLM_HOST_NRHASH];
31 static unsigned long next_gc;
33 static DEFINE_MUTEX(nlm_host_mutex);
36 static void nlm_gc_hosts(void);
37 static struct nsm_handle * __nsm_find(const struct sockaddr_in *,
38 const char *, unsigned int, int);
39 static struct nsm_handle * nsm_find(const struct sockaddr_in *sin,
41 unsigned int hostname_len);
43 static void nlm_clear_port(struct sockaddr *sap)
45 switch (sap->sa_family) {
47 ((struct sockaddr_in *)sap)->sin_port = 0;
50 ((struct sockaddr_in6 *)sap)->sin6_port = 0;
55 static void nlm_display_address(const struct sockaddr *sap,
56 char *buf, const size_t len)
58 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
59 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
61 switch (sap->sa_family) {
63 snprintf(buf, len, "unspecified");
66 snprintf(buf, len, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
69 if (ipv6_addr_v4mapped(&sin6->sin6_addr))
70 snprintf(buf, len, NIPQUAD_FMT,
71 NIPQUAD(sin6->sin6_addr.s6_addr32[3]));
73 snprintf(buf, len, NIP6_FMT, NIP6(sin6->sin6_addr));
76 snprintf(buf, len, "unsupported address family");
82 * Common host lookup routine for server & client
84 static struct nlm_host *nlm_lookup_host(int server,
85 const struct sockaddr_in *sin,
86 int proto, u32 version,
88 unsigned int hostname_len,
89 const struct sockaddr_in *ssin)
91 struct hlist_head *chain;
92 struct hlist_node *pos;
93 struct nlm_host *host;
94 struct nsm_handle *nsm = NULL;
97 dprintk("lockd: nlm_lookup_host(proto=%d, vers=%u,"
98 " my role is %s, hostname=%.*s)\n",
99 proto, version, server ? "server" : "client",
100 hostname_len, hostname ? hostname : "<none>");
102 hash = NLM_ADDRHASH(sin->sin_addr.s_addr);
104 /* Lock hash table */
105 mutex_lock(&nlm_host_mutex);
107 if (time_after_eq(jiffies, next_gc))
110 /* We may keep several nlm_host objects for a peer, because each
111 * nlm_host is identified by
112 * (address, protocol, version, server/client)
113 * We could probably simplify this a little by putting all those
114 * different NLM rpc_clients into one single nlm_host object.
115 * This would allow us to have one nlm_host per address.
117 chain = &nlm_hosts[hash];
118 hlist_for_each_entry(host, pos, chain, h_hash) {
119 if (!nlm_cmp_addr(nlm_addr_in(host), sin))
122 /* See if we have an NSM handle for this client */
124 nsm = host->h_nsmhandle;
126 if (host->h_proto != proto)
128 if (host->h_version != version)
130 if (host->h_server != server)
132 if (!nlm_cmp_addr(nlm_srcaddr_in(host), ssin))
135 /* Move to head of hash chain. */
136 hlist_del(&host->h_hash);
137 hlist_add_head(&host->h_hash, chain);
140 dprintk("lockd: nlm_lookup_host found host %s (%s)\n",
141 host->h_name, host->h_addrbuf);
146 * The host wasn't in our hash table. If we don't
147 * have an NSM handle for it yet, create one.
150 atomic_inc(&nsm->sm_count);
153 nsm = nsm_find(sin, hostname, hostname_len);
155 dprintk("lockd: nlm_lookup_host failed; "
161 host = kzalloc(sizeof(*host), GFP_KERNEL);
164 dprintk("lockd: nlm_lookup_host failed; no memory\n");
167 host->h_name = nsm->sm_name;
168 memcpy(nlm_addr(host), sin, sizeof(*sin));
169 host->h_addrlen = sizeof(*sin);
170 nlm_clear_port(nlm_addr(host));
171 memcpy(nlm_srcaddr(host), ssin, sizeof(*ssin));
172 host->h_version = version;
173 host->h_proto = proto;
174 host->h_rpcclnt = NULL;
175 mutex_init(&host->h_mutex);
176 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
177 host->h_expires = jiffies + NLM_HOST_EXPIRE;
178 atomic_set(&host->h_count, 1);
179 init_waitqueue_head(&host->h_gracewait);
180 init_rwsem(&host->h_rwsem);
181 host->h_state = 0; /* pseudo NSM state */
182 host->h_nsmstate = 0; /* real NSM state */
183 host->h_nsmhandle = nsm;
184 host->h_server = server;
185 hlist_add_head(&host->h_hash, chain);
186 INIT_LIST_HEAD(&host->h_lockowners);
187 spin_lock_init(&host->h_lock);
188 INIT_LIST_HEAD(&host->h_granted);
189 INIT_LIST_HEAD(&host->h_reclaim);
193 nlm_display_address((struct sockaddr *)&host->h_addr,
194 host->h_addrbuf, sizeof(host->h_addrbuf));
195 nlm_display_address((struct sockaddr *)&host->h_srcaddr,
196 host->h_srcaddrbuf, sizeof(host->h_srcaddrbuf));
198 dprintk("lockd: nlm_lookup_host created host %s\n",
202 mutex_unlock(&nlm_host_mutex);
210 nlm_destroy_host(struct nlm_host *host)
212 struct rpc_clnt *clnt;
214 BUG_ON(!list_empty(&host->h_lockowners));
215 BUG_ON(atomic_read(&host->h_count));
218 * Release NSM handle and unmonitor host.
222 clnt = host->h_rpcclnt;
224 rpc_shutdown_client(clnt);
229 * Find an NLM server handle in the cache. If there is none, create it.
231 struct nlm_host *nlmclnt_lookup_host(const struct sockaddr_in *sin,
232 int proto, u32 version,
233 const char *hostname,
234 unsigned int hostname_len)
236 const struct sockaddr_in source = {
237 .sin_family = AF_UNSPEC,
240 return nlm_lookup_host(0, sin, proto, version,
241 hostname, hostname_len, &source);
245 * Find an NLM client handle in the cache. If there is none, create it.
248 nlmsvc_lookup_host(struct svc_rqst *rqstp,
249 const char *hostname, unsigned int hostname_len)
251 const struct sockaddr_in source = {
252 .sin_family = AF_INET,
253 .sin_addr = rqstp->rq_daddr.addr,
256 return nlm_lookup_host(1, svc_addr_in(rqstp),
257 rqstp->rq_prot, rqstp->rq_vers,
258 hostname, hostname_len, &source);
262 * Create the NLM RPC client for an NLM peer
265 nlm_bind_host(struct nlm_host *host)
267 struct rpc_clnt *clnt;
269 dprintk("lockd: nlm_bind_host %s (%s), my addr=%s\n",
270 host->h_name, host->h_addrbuf, host->h_srcaddrbuf);
272 /* Lock host handle */
273 mutex_lock(&host->h_mutex);
275 /* If we've already created an RPC client, check whether
276 * RPC rebind is required
278 if ((clnt = host->h_rpcclnt) != NULL) {
279 if (time_after_eq(jiffies, host->h_nextrebind)) {
280 rpc_force_rebind(clnt);
281 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
282 dprintk("lockd: next rebind in %lu jiffies\n",
283 host->h_nextrebind - jiffies);
286 unsigned long increment = nlmsvc_timeout;
287 struct rpc_timeout timeparms = {
288 .to_initval = increment,
289 .to_increment = increment,
290 .to_maxval = increment * 6UL,
293 struct rpc_create_args args = {
294 .protocol = host->h_proto,
295 .address = nlm_addr(host),
296 .addrsize = host->h_addrlen,
297 .saddress = nlm_srcaddr(host),
298 .timeout = &timeparms,
299 .servername = host->h_name,
300 .program = &nlm_program,
301 .version = host->h_version,
302 .authflavor = RPC_AUTH_UNIX,
303 .flags = (RPC_CLNT_CREATE_NOPING |
304 RPC_CLNT_CREATE_AUTOBIND),
308 * lockd retries server side blocks automatically so we want
309 * those to be soft RPC calls. Client side calls need to be
313 args.flags |= RPC_CLNT_CREATE_HARDRTRY;
315 clnt = rpc_create(&args);
317 host->h_rpcclnt = clnt;
319 printk("lockd: couldn't create RPC handle for %s\n", host->h_name);
324 mutex_unlock(&host->h_mutex);
329 * Force a portmap lookup of the remote lockd port
332 nlm_rebind_host(struct nlm_host *host)
334 dprintk("lockd: rebind host %s\n", host->h_name);
335 if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) {
336 rpc_force_rebind(host->h_rpcclnt);
337 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
342 * Increment NLM host count
344 struct nlm_host * nlm_get_host(struct nlm_host *host)
347 dprintk("lockd: get host %s\n", host->h_name);
348 atomic_inc(&host->h_count);
349 host->h_expires = jiffies + NLM_HOST_EXPIRE;
355 * Release NLM host after use
357 void nlm_release_host(struct nlm_host *host)
360 dprintk("lockd: release host %s\n", host->h_name);
361 BUG_ON(atomic_read(&host->h_count) < 0);
362 if (atomic_dec_and_test(&host->h_count)) {
363 BUG_ON(!list_empty(&host->h_lockowners));
364 BUG_ON(!list_empty(&host->h_granted));
365 BUG_ON(!list_empty(&host->h_reclaim));
371 * We were notified that the host indicated by address &sin
373 * Release all resources held by that peer.
375 void nlm_host_rebooted(const struct sockaddr_in *sin,
376 const char *hostname,
377 unsigned int hostname_len,
380 struct hlist_head *chain;
381 struct hlist_node *pos;
382 struct nsm_handle *nsm;
383 struct nlm_host *host;
385 /* Find the NSM handle for this peer */
386 nsm = __nsm_find(sin, hostname, hostname_len, 0);
388 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
389 hostname_len, hostname);
393 dprintk("lockd: nlm_host_rebooted(%.*s, %s)\n",
394 hostname_len, hostname, nsm->sm_addrbuf);
396 /* When reclaiming locks on this peer, make sure that
397 * we set up a new notification */
398 nsm->sm_monitored = 0;
400 /* Mark all hosts tied to this NSM state as having rebooted.
401 * We run the loop repeatedly, because we drop the host table
403 * To avoid processing a host several times, we match the nsmstate.
405 again: mutex_lock(&nlm_host_mutex);
406 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
407 hlist_for_each_entry(host, pos, chain, h_hash) {
408 if (host->h_nsmhandle == nsm
409 && host->h_nsmstate != new_state) {
410 host->h_nsmstate = new_state;
414 mutex_unlock(&nlm_host_mutex);
416 if (host->h_server) {
417 /* We're server for this guy, just ditch
418 * all the locks he held. */
419 nlmsvc_free_host_resources(host);
421 /* He's the server, initiate lock recovery. */
422 nlmclnt_recovery(host);
425 nlm_release_host(host);
431 mutex_unlock(&nlm_host_mutex);
435 * Shut down the hosts module.
436 * Note that this routine is called only at server shutdown time.
439 nlm_shutdown_hosts(void)
441 struct hlist_head *chain;
442 struct hlist_node *pos;
443 struct nlm_host *host;
445 dprintk("lockd: shutting down host module\n");
446 mutex_lock(&nlm_host_mutex);
448 /* First, make all hosts eligible for gc */
449 dprintk("lockd: nuking all hosts...\n");
450 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
451 hlist_for_each_entry(host, pos, chain, h_hash) {
452 host->h_expires = jiffies - 1;
453 if (host->h_rpcclnt) {
454 rpc_shutdown_client(host->h_rpcclnt);
455 host->h_rpcclnt = NULL;
460 /* Then, perform a garbage collection pass */
462 mutex_unlock(&nlm_host_mutex);
464 /* complain if any hosts are left */
466 printk(KERN_WARNING "lockd: couldn't shutdown host module!\n");
467 dprintk("lockd: %d hosts left:\n", nrhosts);
468 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
469 hlist_for_each_entry(host, pos, chain, h_hash) {
470 dprintk(" %s (cnt %d use %d exp %ld)\n",
471 host->h_name, atomic_read(&host->h_count),
472 host->h_inuse, host->h_expires);
479 * Garbage collect any unused NLM hosts.
480 * This GC combines reference counting for async operations with
481 * mark & sweep for resources held by remote clients.
486 struct hlist_head *chain;
487 struct hlist_node *pos, *next;
488 struct nlm_host *host;
490 dprintk("lockd: host garbage collection\n");
491 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
492 hlist_for_each_entry(host, pos, chain, h_hash)
496 /* Mark all hosts that hold locks, blocks or shares */
497 nlmsvc_mark_resources();
499 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
500 hlist_for_each_entry_safe(host, pos, next, chain, h_hash) {
501 if (atomic_read(&host->h_count) || host->h_inuse
502 || time_before(jiffies, host->h_expires)) {
503 dprintk("nlm_gc_hosts skipping %s (cnt %d use %d exp %ld)\n",
504 host->h_name, atomic_read(&host->h_count),
505 host->h_inuse, host->h_expires);
508 dprintk("lockd: delete host %s\n", host->h_name);
509 hlist_del_init(&host->h_hash);
511 nlm_destroy_host(host);
516 next_gc = jiffies + NLM_HOST_COLLECT;
523 static LIST_HEAD(nsm_handles);
524 static DEFINE_SPINLOCK(nsm_lock);
526 static struct nsm_handle *
527 __nsm_find(const struct sockaddr_in *sin,
528 const char *hostname, unsigned int hostname_len,
531 struct nsm_handle *nsm = NULL;
532 struct nsm_handle *pos;
537 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
538 if (printk_ratelimit()) {
539 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
540 "in NFS lock request\n",
541 hostname_len, hostname);
547 spin_lock(&nsm_lock);
548 list_for_each_entry(pos, &nsm_handles, sm_link) {
550 if (hostname && nsm_use_hostnames) {
551 if (strlen(pos->sm_name) != hostname_len
552 || memcmp(pos->sm_name, hostname, hostname_len))
554 } else if (!nlm_cmp_addr(nsm_addr_in(pos), sin))
556 atomic_inc(&pos->sm_count);
562 list_add(&nsm->sm_link, &nsm_handles);
565 spin_unlock(&nsm_lock);
570 nsm = kzalloc(sizeof(*nsm) + hostname_len + 1, GFP_KERNEL);
574 memcpy(nsm_addr(nsm), sin, sizeof(*sin));
575 nsm->sm_addrlen = sizeof(*sin);
576 nsm->sm_name = (char *) (nsm + 1);
577 memcpy(nsm->sm_name, hostname, hostname_len);
578 nsm->sm_name[hostname_len] = '\0';
579 nlm_display_address((struct sockaddr *)&nsm->sm_addr,
580 nsm->sm_addrbuf, sizeof(nsm->sm_addrbuf));
581 atomic_set(&nsm->sm_count, 1);
585 spin_unlock(&nsm_lock);
589 static struct nsm_handle *
590 nsm_find(const struct sockaddr_in *sin, const char *hostname,
591 unsigned int hostname_len)
593 return __nsm_find(sin, hostname, hostname_len, 1);
597 * Release an NSM handle
600 nsm_release(struct nsm_handle *nsm)
604 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
605 list_del(&nsm->sm_link);
606 spin_unlock(&nsm_lock);