blob: e5dcfa57e099f92e41209aad2c6b3b7c8e3d00a9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
13#include <linux/in.h>
Chuck Lever1b333c52008-08-27 16:57:23 -040014#include <linux/in6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sunrpc/clnt.h>
16#include <linux/sunrpc/svc.h>
17#include <linux/lockd/lockd.h>
18#include <linux/lockd/sm_inter.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080019#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Chuck Lever1b333c52008-08-27 16:57:23 -040021#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#define NLMDBG_FACILITY NLMDBG_HOSTCACHE
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define NLM_HOST_NRHASH 32
25#define NLM_ADDRHASH(addr) (ntohl(addr) & (NLM_HOST_NRHASH-1))
26#define NLM_HOST_REBIND (60 * HZ)
NeilBrown1447d252008-02-08 13:03:37 +110027#define NLM_HOST_EXPIRE (300 * HZ)
28#define NLM_HOST_COLLECT (120 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Olaf Kirch0cea3272006-10-04 02:15:56 -070030static struct hlist_head nlm_hosts[NLM_HOST_NRHASH];
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static unsigned long next_gc;
32static int nrhosts;
Ingo Molnar353ab6e2006-03-26 01:37:12 -080033static DEFINE_MUTEX(nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
36static void nlm_gc_hosts(void);
Olaf Kirch8dead0d2006-10-04 02:15:53 -070037static struct nsm_handle * __nsm_find(const struct sockaddr_in *,
Chuck Lever48df0202007-11-01 16:56:53 -040038 const char *, unsigned int, int);
Adrian Bunkc5856462006-12-06 20:38:29 -080039static struct nsm_handle * nsm_find(const struct sockaddr_in *sin,
40 const char *hostname,
Chuck Lever48df0202007-11-01 16:56:53 -040041 unsigned int hostname_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Chuck Lever1b333c52008-08-27 16:57:23 -040043static void nlm_display_address(const struct sockaddr *sap,
44 char *buf, const size_t len)
45{
46 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
47 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
48
49 switch (sap->sa_family) {
50 case AF_UNSPEC:
51 snprintf(buf, len, "unspecified");
52 break;
53 case AF_INET:
54 snprintf(buf, len, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
55 break;
56 case AF_INET6:
57 if (ipv6_addr_v4mapped(&sin6->sin6_addr))
58 snprintf(buf, len, NIPQUAD_FMT,
59 NIPQUAD(sin6->sin6_addr.s6_addr32[3]));
60 else
61 snprintf(buf, len, NIP6_FMT, NIP6(sin6->sin6_addr));
62 break;
63 default:
64 snprintf(buf, len, "unsupported address family");
65 break;
66 }
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * Common host lookup routine for server & client
71 */
Chuck Levereb188602008-03-14 14:18:37 -040072static struct nlm_host *nlm_lookup_host(int server,
73 const struct sockaddr_in *sin,
74 int proto, u32 version,
75 const char *hostname,
76 unsigned int hostname_len,
77 const struct sockaddr_in *ssin)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Olaf Kirch0cea3272006-10-04 02:15:56 -070079 struct hlist_head *chain;
80 struct hlist_node *pos;
81 struct nlm_host *host;
Olaf Kirch8dead0d2006-10-04 02:15:53 -070082 struct nsm_handle *nsm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 int hash;
84
Chuck Lever1b333c52008-08-27 16:57:23 -040085 dprintk("lockd: nlm_lookup_host(proto=%d, vers=%u,"
86 " my role is %s, hostname=%.*s)\n",
87 proto, version, server ? "server" : "client",
88 hostname_len, hostname ? hostname : "<none>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 hash = NLM_ADDRHASH(sin->sin_addr.s_addr);
91
92 /* Lock hash table */
Ingo Molnar353ab6e2006-03-26 01:37:12 -080093 mutex_lock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 if (time_after_eq(jiffies, next_gc))
96 nlm_gc_hosts();
97
Olaf Kirch8dead0d2006-10-04 02:15:53 -070098 /* We may keep several nlm_host objects for a peer, because each
99 * nlm_host is identified by
100 * (address, protocol, version, server/client)
101 * We could probably simplify this a little by putting all those
102 * different NLM rpc_clients into one single nlm_host object.
103 * This would allow us to have one nlm_host per address.
104 */
Olaf Kirch0cea3272006-10-04 02:15:56 -0700105 chain = &nlm_hosts[hash];
106 hlist_for_each_entry(host, pos, chain, h_hash) {
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700107 if (!nlm_cmp_addr(&host->h_addr, sin))
108 continue;
109
110 /* See if we have an NSM handle for this client */
NeilBrown6b54dae2006-10-04 02:16:15 -0700111 if (!nsm)
112 nsm = host->h_nsmhandle;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (host->h_proto != proto)
115 continue;
116 if (host->h_version != version)
117 continue;
118 if (host->h_server != server)
119 continue;
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200120 if (!nlm_cmp_addr(&host->h_saddr, ssin))
121 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Olaf Kirch0cea3272006-10-04 02:15:56 -0700123 /* Move to head of hash chain. */
124 hlist_del(&host->h_hash);
125 hlist_add_head(&host->h_hash, chain);
126
Olaf Kirchf0737a32006-10-04 02:15:54 -0700127 nlm_get_host(host);
Chuck Lever1b333c52008-08-27 16:57:23 -0400128 dprintk("lockd: nlm_lookup_host found host %s (%s)\n",
129 host->h_name, host->h_addrbuf);
Olaf Kirchf0737a32006-10-04 02:15:54 -0700130 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
Chuck Leverc2526f42008-08-27 16:57:15 -0400132
133 /*
134 * The host wasn't in our hash table. If we don't
135 * have an NSM handle for it yet, create one.
136 */
NeilBrown6b54dae2006-10-04 02:16:15 -0700137 if (nsm)
138 atomic_inc(&nsm->sm_count);
Chuck Leverc2526f42008-08-27 16:57:15 -0400139 else {
140 host = NULL;
141 nsm = nsm_find(sin, hostname, hostname_len);
Chuck Lever1b333c52008-08-27 16:57:23 -0400142 if (!nsm) {
143 dprintk("lockd: nlm_lookup_host failed; "
144 "no nsm handle\n");
Chuck Leverc2526f42008-08-27 16:57:15 -0400145 goto out;
Chuck Lever1b333c52008-08-27 16:57:23 -0400146 }
Chuck Leverc2526f42008-08-27 16:57:15 -0400147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700149 host = kzalloc(sizeof(*host), GFP_KERNEL);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700150 if (!host) {
151 nsm_release(nsm);
Chuck Lever1b333c52008-08-27 16:57:23 -0400152 dprintk("lockd: nlm_lookup_host failed; no memory\n");
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700153 goto out;
154 }
155 host->h_name = nsm->sm_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 host->h_addr = *sin;
157 host->h_addr.sin_port = 0; /* ouch! */
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200158 host->h_saddr = *ssin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 host->h_version = version;
160 host->h_proto = proto;
161 host->h_rpcclnt = NULL;
Trond Myklebust50467912006-06-09 09:40:24 -0400162 mutex_init(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
164 host->h_expires = jiffies + NLM_HOST_EXPIRE;
165 atomic_set(&host->h_count, 1);
166 init_waitqueue_head(&host->h_gracewait);
Trond Myklebust28df9552006-06-09 09:40:27 -0400167 init_rwsem(&host->h_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 host->h_state = 0; /* pseudo NSM state */
169 host->h_nsmstate = 0; /* real NSM state */
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700170 host->h_nsmhandle = nsm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 host->h_server = server;
Olaf Kirch0cea3272006-10-04 02:15:56 -0700172 hlist_add_head(&host->h_hash, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 INIT_LIST_HEAD(&host->h_lockowners);
174 spin_lock_init(&host->h_lock);
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500175 INIT_LIST_HEAD(&host->h_granted);
176 INIT_LIST_HEAD(&host->h_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
NeilBrown1447d252008-02-08 13:03:37 +1100178 nrhosts++;
Chuck Lever1b333c52008-08-27 16:57:23 -0400179
180 nlm_display_address((struct sockaddr *)&host->h_addr,
181 host->h_addrbuf, sizeof(host->h_addrbuf));
182 nlm_display_address((struct sockaddr *)&host->h_saddr,
183 host->h_saddrbuf, sizeof(host->h_saddrbuf));
184
185 dprintk("lockd: nlm_lookup_host created host %s\n",
186 host->h_name);
187
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700188out:
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800189 mutex_unlock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return host;
191}
192
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700193/*
194 * Destroy a host
195 */
196static void
197nlm_destroy_host(struct nlm_host *host)
198{
199 struct rpc_clnt *clnt;
200
201 BUG_ON(!list_empty(&host->h_lockowners));
202 BUG_ON(atomic_read(&host->h_count));
203
204 /*
205 * Release NSM handle and unmonitor host.
206 */
207 nsm_unmonitor(host);
208
Trond Myklebust34f52e32007-06-14 16:40:31 -0400209 clnt = host->h_rpcclnt;
210 if (clnt != NULL)
211 rpc_shutdown_client(clnt);
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700212 kfree(host);
213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*
Adrian Bunkc5856462006-12-06 20:38:29 -0800216 * Find an NLM server handle in the cache. If there is none, create it.
217 */
Chuck Levereb188602008-03-14 14:18:37 -0400218struct nlm_host *nlmclnt_lookup_host(const struct sockaddr_in *sin,
219 int proto, u32 version,
220 const char *hostname,
221 unsigned int hostname_len)
Adrian Bunkc5856462006-12-06 20:38:29 -0800222{
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200223 struct sockaddr_in ssin = {0};
224
Adrian Bunkc5856462006-12-06 20:38:29 -0800225 return nlm_lookup_host(0, sin, proto, version,
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200226 hostname, hostname_len, &ssin);
Adrian Bunkc5856462006-12-06 20:38:29 -0800227}
228
229/*
230 * Find an NLM client handle in the cache. If there is none, create it.
231 */
232struct nlm_host *
233nlmsvc_lookup_host(struct svc_rqst *rqstp,
Chuck Lever48df0202007-11-01 16:56:53 -0400234 const char *hostname, unsigned int hostname_len)
Adrian Bunkc5856462006-12-06 20:38:29 -0800235{
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200236 struct sockaddr_in ssin = {0};
237
238 ssin.sin_addr = rqstp->rq_daddr.addr;
Chuck Lever27459f02007-02-12 00:53:34 -0800239 return nlm_lookup_host(1, svc_addr_in(rqstp),
Adrian Bunkc5856462006-12-06 20:38:29 -0800240 rqstp->rq_prot, rqstp->rq_vers,
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200241 hostname, hostname_len, &ssin);
Adrian Bunkc5856462006-12-06 20:38:29 -0800242}
243
244/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * Create the NLM RPC client for an NLM peer
246 */
247struct rpc_clnt *
248nlm_bind_host(struct nlm_host *host)
249{
250 struct rpc_clnt *clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Chuck Lever1b333c52008-08-27 16:57:23 -0400252 dprintk("lockd: nlm_bind_host %s (%s), my addr=%s\n",
253 host->h_name, host->h_addrbuf, host->h_saddrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 /* Lock host handle */
Trond Myklebust50467912006-06-09 09:40:24 -0400256 mutex_lock(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /* If we've already created an RPC client, check whether
259 * RPC rebind is required
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
261 if ((clnt = host->h_rpcclnt) != NULL) {
Chuck Lever43118c22005-08-25 16:25:49 -0700262 if (time_after_eq(jiffies, host->h_nextrebind)) {
Chuck Lever35f5a422006-01-03 09:55:50 +0100263 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
Chuck Lever1b333c52008-08-27 16:57:23 -0400265 dprintk("lockd: next rebind in %lu jiffies\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 host->h_nextrebind - jiffies);
267 }
268 } else {
Trond Myklebust21051ba2007-05-14 16:50:44 -0400269 unsigned long increment = nlmsvc_timeout;
Chuck Levere1ec7892006-08-22 20:06:20 -0400270 struct rpc_timeout timeparms = {
271 .to_initval = increment,
272 .to_increment = increment,
273 .to_maxval = increment * 6UL,
274 .to_retries = 5U,
275 };
276 struct rpc_create_args args = {
277 .protocol = host->h_proto,
278 .address = (struct sockaddr *)&host->h_addr,
279 .addrsize = sizeof(host->h_addr),
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200280 .saddress = (struct sockaddr *)&host->h_saddr,
Chuck Levere1ec7892006-08-22 20:06:20 -0400281 .timeout = &timeparms,
282 .servername = host->h_name,
283 .program = &nlm_program,
284 .version = host->h_version,
285 .authflavor = RPC_AUTH_UNIX,
Jeff Layton90bd17c2008-02-06 11:34:11 -0500286 .flags = (RPC_CLNT_CREATE_NOPING |
Chuck Levere1ec7892006-08-22 20:06:20 -0400287 RPC_CLNT_CREATE_AUTOBIND),
288 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Jeff Layton90bd17c2008-02-06 11:34:11 -0500290 /*
291 * lockd retries server side blocks automatically so we want
292 * those to be soft RPC calls. Client side calls need to be
293 * hard RPC tasks.
294 */
295 if (!host->h_server)
296 args.flags |= RPC_CLNT_CREATE_HARDRTRY;
297
Chuck Levere1ec7892006-08-22 20:06:20 -0400298 clnt = rpc_create(&args);
299 if (!IS_ERR(clnt))
300 host->h_rpcclnt = clnt;
301 else {
302 printk("lockd: couldn't create RPC handle for %s\n", host->h_name);
303 clnt = NULL;
304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 }
306
Trond Myklebust50467912006-06-09 09:40:24 -0400307 mutex_unlock(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311/*
312 * Force a portmap lookup of the remote lockd port
313 */
314void
315nlm_rebind_host(struct nlm_host *host)
316{
317 dprintk("lockd: rebind host %s\n", host->h_name);
318 if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) {
Chuck Lever35f5a422006-01-03 09:55:50 +0100319 rpc_force_rebind(host->h_rpcclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
321 }
322}
323
324/*
325 * Increment NLM host count
326 */
327struct nlm_host * nlm_get_host(struct nlm_host *host)
328{
329 if (host) {
330 dprintk("lockd: get host %s\n", host->h_name);
331 atomic_inc(&host->h_count);
332 host->h_expires = jiffies + NLM_HOST_EXPIRE;
333 }
334 return host;
335}
336
337/*
338 * Release NLM host after use
339 */
340void nlm_release_host(struct nlm_host *host)
341{
342 if (host != NULL) {
343 dprintk("lockd: release host %s\n", host->h_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 BUG_ON(atomic_read(&host->h_count) < 0);
Trond Myklebust4c060b52006-03-20 13:44:41 -0500345 if (atomic_dec_and_test(&host->h_count)) {
346 BUG_ON(!list_empty(&host->h_lockowners));
347 BUG_ON(!list_empty(&host->h_granted));
348 BUG_ON(!list_empty(&host->h_reclaim));
349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351}
352
353/*
Olaf Kirchcf712c22006-10-04 02:15:52 -0700354 * We were notified that the host indicated by address &sin
355 * has rebooted.
356 * Release all resources held by that peer.
357 */
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700358void nlm_host_rebooted(const struct sockaddr_in *sin,
Chuck Lever48df0202007-11-01 16:56:53 -0400359 const char *hostname,
360 unsigned int hostname_len,
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700361 u32 new_state)
Olaf Kirchcf712c22006-10-04 02:15:52 -0700362{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700363 struct hlist_head *chain;
364 struct hlist_node *pos;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700365 struct nsm_handle *nsm;
Olaf Kirch0cea3272006-10-04 02:15:56 -0700366 struct nlm_host *host;
Olaf Kirchcf712c22006-10-04 02:15:52 -0700367
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700368 /* Find the NSM handle for this peer */
Chuck Lever1b333c52008-08-27 16:57:23 -0400369 nsm = __nsm_find(sin, hostname, hostname_len, 0);
370 if (nsm == NULL) {
371 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
372 hostname_len, hostname);
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700373 return;
Chuck Lever1b333c52008-08-27 16:57:23 -0400374 }
375
376 dprintk("lockd: nlm_host_rebooted(%.*s, %s)\n",
377 hostname_len, hostname, nsm->sm_addrbuf);
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700378
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700379 /* When reclaiming locks on this peer, make sure that
380 * we set up a new notification */
381 nsm->sm_monitored = 0;
382
383 /* Mark all hosts tied to this NSM state as having rebooted.
384 * We run the loop repeatedly, because we drop the host table
385 * lock for this.
386 * To avoid processing a host several times, we match the nsmstate.
387 */
388again: mutex_lock(&nlm_host_mutex);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700389 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
390 hlist_for_each_entry(host, pos, chain, h_hash) {
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700391 if (host->h_nsmhandle == nsm
392 && host->h_nsmstate != new_state) {
393 host->h_nsmstate = new_state;
394 host->h_state++;
395
396 nlm_get_host(host);
397 mutex_unlock(&nlm_host_mutex);
398
399 if (host->h_server) {
400 /* We're server for this guy, just ditch
401 * all the locks he held. */
402 nlmsvc_free_host_resources(host);
403 } else {
404 /* He's the server, initiate lock recovery. */
405 nlmclnt_recovery(host);
406 }
407
408 nlm_release_host(host);
409 goto again;
410 }
411 }
Olaf Kirchcf712c22006-10-04 02:15:52 -0700412 }
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700413
414 mutex_unlock(&nlm_host_mutex);
Olaf Kirchcf712c22006-10-04 02:15:52 -0700415}
416
417/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * Shut down the hosts module.
419 * Note that this routine is called only at server shutdown time.
420 */
421void
422nlm_shutdown_hosts(void)
423{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700424 struct hlist_head *chain;
425 struct hlist_node *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct nlm_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 dprintk("lockd: shutting down host module\n");
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800429 mutex_lock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 /* First, make all hosts eligible for gc */
432 dprintk("lockd: nuking all hosts...\n");
Olaf Kirch0cea3272006-10-04 02:15:56 -0700433 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
Jeff Laytond801b862008-01-29 10:30:55 -0500434 hlist_for_each_entry(host, pos, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 host->h_expires = jiffies - 1;
Jeff Laytond801b862008-01-29 10:30:55 -0500436 if (host->h_rpcclnt) {
437 rpc_shutdown_client(host->h_rpcclnt);
438 host->h_rpcclnt = NULL;
439 }
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 /* Then, perform a garbage collection pass */
444 nlm_gc_hosts();
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800445 mutex_unlock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /* complain if any hosts are left */
448 if (nrhosts) {
449 printk(KERN_WARNING "lockd: couldn't shutdown host module!\n");
450 dprintk("lockd: %d hosts left:\n", nrhosts);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700451 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
452 hlist_for_each_entry(host, pos, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 dprintk(" %s (cnt %d use %d exp %ld)\n",
454 host->h_name, atomic_read(&host->h_count),
455 host->h_inuse, host->h_expires);
456 }
457 }
458 }
459}
460
461/*
462 * Garbage collect any unused NLM hosts.
463 * This GC combines reference counting for async operations with
464 * mark & sweep for resources held by remote clients.
465 */
466static void
467nlm_gc_hosts(void)
468{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700469 struct hlist_head *chain;
470 struct hlist_node *pos, *next;
471 struct nlm_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 dprintk("lockd: host garbage collection\n");
Olaf Kirch0cea3272006-10-04 02:15:56 -0700474 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
475 hlist_for_each_entry(host, pos, chain, h_hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 host->h_inuse = 0;
477 }
478
479 /* Mark all hosts that hold locks, blocks or shares */
480 nlmsvc_mark_resources();
481
Olaf Kirch0cea3272006-10-04 02:15:56 -0700482 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
483 hlist_for_each_entry_safe(host, pos, next, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (atomic_read(&host->h_count) || host->h_inuse
485 || time_before(jiffies, host->h_expires)) {
486 dprintk("nlm_gc_hosts skipping %s (cnt %d use %d exp %ld)\n",
487 host->h_name, atomic_read(&host->h_count),
488 host->h_inuse, host->h_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 continue;
490 }
491 dprintk("lockd: delete host %s\n", host->h_name);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700492 hlist_del_init(&host->h_hash);
Olaf Kirch977faf32006-10-04 02:15:51 -0700493
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700494 nlm_destroy_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 nrhosts--;
496 }
497 }
498
499 next_gc = jiffies + NLM_HOST_COLLECT;
500}
501
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700502
503/*
504 * Manage NSM handles
505 */
506static LIST_HEAD(nsm_handles);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500507static DEFINE_SPINLOCK(nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700508
509static struct nsm_handle *
510__nsm_find(const struct sockaddr_in *sin,
Chuck Lever48df0202007-11-01 16:56:53 -0400511 const char *hostname, unsigned int hostname_len,
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700512 int create)
513{
514 struct nsm_handle *nsm = NULL;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500515 struct nsm_handle *pos;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700516
517 if (!sin)
518 return NULL;
519
520 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
521 if (printk_ratelimit()) {
522 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
523 "in NFS lock request\n",
524 hostname_len, hostname);
525 }
526 return NULL;
527 }
528
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500529retry:
530 spin_lock(&nsm_lock);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500531 list_for_each_entry(pos, &nsm_handles, sm_link) {
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700532
Olaf Kirchabd1f502006-10-04 02:16:01 -0700533 if (hostname && nsm_use_hostnames) {
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500534 if (strlen(pos->sm_name) != hostname_len
535 || memcmp(pos->sm_name, hostname, hostname_len))
Olaf Kirchabd1f502006-10-04 02:16:01 -0700536 continue;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500537 } else if (!nlm_cmp_addr(&pos->sm_addr, sin))
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700538 continue;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500539 atomic_inc(&pos->sm_count);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500540 kfree(nsm);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500541 nsm = pos;
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500542 goto found;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700543 }
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500544 if (nsm) {
545 list_add(&nsm->sm_link, &nsm_handles);
546 goto found;
547 }
548 spin_unlock(&nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700549
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500550 if (!create)
551 return NULL;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700552
553 nsm = kzalloc(sizeof(*nsm) + hostname_len + 1, GFP_KERNEL);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500554 if (nsm == NULL)
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500555 return NULL;
556
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500557 nsm->sm_addr = *sin;
558 nsm->sm_name = (char *) (nsm + 1);
559 memcpy(nsm->sm_name, hostname, hostname_len);
560 nsm->sm_name[hostname_len] = '\0';
Chuck Lever1b333c52008-08-27 16:57:23 -0400561 nlm_display_address((struct sockaddr *)&nsm->sm_addr,
562 nsm->sm_addrbuf, sizeof(nsm->sm_addrbuf));
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500563 atomic_set(&nsm->sm_count, 1);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500564 goto retry;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700565
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500566found:
567 spin_unlock(&nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700568 return nsm;
569}
570
Adrian Bunkc5856462006-12-06 20:38:29 -0800571static struct nsm_handle *
Chuck Lever48df0202007-11-01 16:56:53 -0400572nsm_find(const struct sockaddr_in *sin, const char *hostname,
573 unsigned int hostname_len)
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700574{
575 return __nsm_find(sin, hostname, hostname_len, 1);
576}
577
578/*
579 * Release an NSM handle
580 */
581void
582nsm_release(struct nsm_handle *nsm)
583{
584 if (!nsm)
585 return;
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500586 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
J. Bruce Fields164f98a2008-02-20 14:02:47 -0500587 list_del(&nsm->sm_link);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500588 spin_unlock(&nsm_lock);
J. Bruce Fields164f98a2008-02-20 14:02:47 -0500589 kfree(nsm);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700590 }
591}