blob: 008e4026f540ca29ac86c7003cd1a0eeb5fc7290 [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 Lever48df020a2007-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 Lever48df020a2007-11-01 16:56:53 -040041 unsigned int hostname_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Chuck Lever396cb3d2008-08-27 16:57:38 -040043static void nlm_clear_port(struct sockaddr *sap)
44{
45 switch (sap->sa_family) {
46 case AF_INET:
47 ((struct sockaddr_in *)sap)->sin_port = 0;
48 break;
49 case AF_INET6:
50 ((struct sockaddr_in6 *)sap)->sin6_port = 0;
51 break;
52 }
53}
54
Chuck Lever1b333c52008-08-27 16:57:23 -040055static void nlm_display_address(const struct sockaddr *sap,
56 char *buf, const size_t len)
57{
58 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
59 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
60
61 switch (sap->sa_family) {
62 case AF_UNSPEC:
63 snprintf(buf, len, "unspecified");
64 break;
65 case AF_INET:
66 snprintf(buf, len, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
67 break;
68 case AF_INET6:
69 if (ipv6_addr_v4mapped(&sin6->sin6_addr))
70 snprintf(buf, len, NIPQUAD_FMT,
71 NIPQUAD(sin6->sin6_addr.s6_addr32[3]));
72 else
73 snprintf(buf, len, NIP6_FMT, NIP6(sin6->sin6_addr));
74 break;
75 default:
76 snprintf(buf, len, "unsupported address family");
77 break;
78 }
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/*
82 * Common host lookup routine for server & client
83 */
Chuck Levereb188602008-03-14 14:18:37 -040084static struct nlm_host *nlm_lookup_host(int server,
85 const struct sockaddr_in *sin,
86 int proto, u32 version,
87 const char *hostname,
88 unsigned int hostname_len,
89 const struct sockaddr_in *ssin)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Olaf Kirch0cea3272006-10-04 02:15:56 -070091 struct hlist_head *chain;
92 struct hlist_node *pos;
93 struct nlm_host *host;
Olaf Kirch8dead0d2006-10-04 02:15:53 -070094 struct nsm_handle *nsm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int hash;
96
Chuck Lever1b333c52008-08-27 16:57:23 -040097 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>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 hash = NLM_ADDRHASH(sin->sin_addr.s_addr);
103
104 /* Lock hash table */
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800105 mutex_lock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (time_after_eq(jiffies, next_gc))
108 nlm_gc_hosts();
109
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700110 /* 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.
116 */
Olaf Kirch0cea3272006-10-04 02:15:56 -0700117 chain = &nlm_hosts[hash];
118 hlist_for_each_entry(host, pos, chain, h_hash) {
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700119 if (!nlm_cmp_addr(&host->h_addr, sin))
120 continue;
121
122 /* See if we have an NSM handle for this client */
NeilBrown6b54dae2006-10-04 02:16:15 -0700123 if (!nsm)
124 nsm = host->h_nsmhandle;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (host->h_proto != proto)
127 continue;
128 if (host->h_version != version)
129 continue;
130 if (host->h_server != server)
131 continue;
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200132 if (!nlm_cmp_addr(&host->h_saddr, ssin))
133 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Olaf Kirch0cea3272006-10-04 02:15:56 -0700135 /* Move to head of hash chain. */
136 hlist_del(&host->h_hash);
137 hlist_add_head(&host->h_hash, chain);
138
Olaf Kirchf0737a32006-10-04 02:15:54 -0700139 nlm_get_host(host);
Chuck Lever1b333c52008-08-27 16:57:23 -0400140 dprintk("lockd: nlm_lookup_host found host %s (%s)\n",
141 host->h_name, host->h_addrbuf);
Olaf Kirchf0737a32006-10-04 02:15:54 -0700142 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
Chuck Leverc2526f42008-08-27 16:57:15 -0400144
145 /*
146 * The host wasn't in our hash table. If we don't
147 * have an NSM handle for it yet, create one.
148 */
NeilBrown6b54dae2006-10-04 02:16:15 -0700149 if (nsm)
150 atomic_inc(&nsm->sm_count);
Chuck Leverc2526f42008-08-27 16:57:15 -0400151 else {
152 host = NULL;
153 nsm = nsm_find(sin, hostname, hostname_len);
Chuck Lever1b333c52008-08-27 16:57:23 -0400154 if (!nsm) {
155 dprintk("lockd: nlm_lookup_host failed; "
156 "no nsm handle\n");
Chuck Leverc2526f42008-08-27 16:57:15 -0400157 goto out;
Chuck Lever1b333c52008-08-27 16:57:23 -0400158 }
Chuck Leverc2526f42008-08-27 16:57:15 -0400159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700161 host = kzalloc(sizeof(*host), GFP_KERNEL);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700162 if (!host) {
163 nsm_release(nsm);
Chuck Lever1b333c52008-08-27 16:57:23 -0400164 dprintk("lockd: nlm_lookup_host failed; no memory\n");
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700165 goto out;
166 }
167 host->h_name = nsm->sm_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 host->h_addr = *sin;
Chuck Lever396cb3d2008-08-27 16:57:38 -0400169 nlm_clear_port((struct sockaddr *)&host->h_addr);
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200170 host->h_saddr = *ssin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 host->h_version = version;
172 host->h_proto = proto;
173 host->h_rpcclnt = NULL;
Trond Myklebust50467912006-06-09 09:40:24 -0400174 mutex_init(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 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);
Trond Myklebust28df9552006-06-09 09:40:27 -0400179 init_rwsem(&host->h_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 host->h_state = 0; /* pseudo NSM state */
181 host->h_nsmstate = 0; /* real NSM state */
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700182 host->h_nsmhandle = nsm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 host->h_server = server;
Olaf Kirch0cea3272006-10-04 02:15:56 -0700184 hlist_add_head(&host->h_hash, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 INIT_LIST_HEAD(&host->h_lockowners);
186 spin_lock_init(&host->h_lock);
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500187 INIT_LIST_HEAD(&host->h_granted);
188 INIT_LIST_HEAD(&host->h_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
NeilBrown1447d252008-02-08 13:03:37 +1100190 nrhosts++;
Chuck Lever1b333c52008-08-27 16:57:23 -0400191
192 nlm_display_address((struct sockaddr *)&host->h_addr,
193 host->h_addrbuf, sizeof(host->h_addrbuf));
194 nlm_display_address((struct sockaddr *)&host->h_saddr,
195 host->h_saddrbuf, sizeof(host->h_saddrbuf));
196
197 dprintk("lockd: nlm_lookup_host created host %s\n",
198 host->h_name);
199
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700200out:
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800201 mutex_unlock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return host;
203}
204
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700205/*
206 * Destroy a host
207 */
208static void
209nlm_destroy_host(struct nlm_host *host)
210{
211 struct rpc_clnt *clnt;
212
213 BUG_ON(!list_empty(&host->h_lockowners));
214 BUG_ON(atomic_read(&host->h_count));
215
216 /*
217 * Release NSM handle and unmonitor host.
218 */
219 nsm_unmonitor(host);
220
Trond Myklebust34f52e32007-06-14 16:40:31 -0400221 clnt = host->h_rpcclnt;
222 if (clnt != NULL)
223 rpc_shutdown_client(clnt);
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700224 kfree(host);
225}
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/*
Adrian Bunkc5856462006-12-06 20:38:29 -0800228 * Find an NLM server handle in the cache. If there is none, create it.
229 */
Chuck Levereb188602008-03-14 14:18:37 -0400230struct nlm_host *nlmclnt_lookup_host(const struct sockaddr_in *sin,
231 int proto, u32 version,
232 const char *hostname,
233 unsigned int hostname_len)
Adrian Bunkc5856462006-12-06 20:38:29 -0800234{
Chuck Lever2860a022008-08-27 16:57:31 -0400235 const struct sockaddr_in source = {
236 .sin_family = AF_UNSPEC,
237 };
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200238
Adrian Bunkc5856462006-12-06 20:38:29 -0800239 return nlm_lookup_host(0, sin, proto, version,
Chuck Lever2860a022008-08-27 16:57:31 -0400240 hostname, hostname_len, &source);
Adrian Bunkc5856462006-12-06 20:38:29 -0800241}
242
243/*
244 * Find an NLM client handle in the cache. If there is none, create it.
245 */
246struct nlm_host *
247nlmsvc_lookup_host(struct svc_rqst *rqstp,
Chuck Lever48df020a2007-11-01 16:56:53 -0400248 const char *hostname, unsigned int hostname_len)
Adrian Bunkc5856462006-12-06 20:38:29 -0800249{
Chuck Lever2860a022008-08-27 16:57:31 -0400250 const struct sockaddr_in source = {
251 .sin_family = AF_INET,
252 .sin_addr = rqstp->rq_daddr.addr,
253 };
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200254
Chuck Lever27459f02007-02-12 00:53:34 -0800255 return nlm_lookup_host(1, svc_addr_in(rqstp),
Adrian Bunkc5856462006-12-06 20:38:29 -0800256 rqstp->rq_prot, rqstp->rq_vers,
Chuck Lever2860a022008-08-27 16:57:31 -0400257 hostname, hostname_len, &source);
Adrian Bunkc5856462006-12-06 20:38:29 -0800258}
259
260/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 * Create the NLM RPC client for an NLM peer
262 */
263struct rpc_clnt *
264nlm_bind_host(struct nlm_host *host)
265{
266 struct rpc_clnt *clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Chuck Lever1b333c52008-08-27 16:57:23 -0400268 dprintk("lockd: nlm_bind_host %s (%s), my addr=%s\n",
269 host->h_name, host->h_addrbuf, host->h_saddrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /* Lock host handle */
Trond Myklebust50467912006-06-09 09:40:24 -0400272 mutex_lock(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 /* If we've already created an RPC client, check whether
275 * RPC rebind is required
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 */
277 if ((clnt = host->h_rpcclnt) != NULL) {
Chuck Lever43118c22005-08-25 16:25:49 -0700278 if (time_after_eq(jiffies, host->h_nextrebind)) {
Chuck Lever35f5a422006-01-03 09:55:50 +0100279 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
Chuck Lever1b333c52008-08-27 16:57:23 -0400281 dprintk("lockd: next rebind in %lu jiffies\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 host->h_nextrebind - jiffies);
283 }
284 } else {
Trond Myklebust21051ba2007-05-14 16:50:44 -0400285 unsigned long increment = nlmsvc_timeout;
Chuck Levere1ec7892006-08-22 20:06:20 -0400286 struct rpc_timeout timeparms = {
287 .to_initval = increment,
288 .to_increment = increment,
289 .to_maxval = increment * 6UL,
290 .to_retries = 5U,
291 };
292 struct rpc_create_args args = {
293 .protocol = host->h_proto,
294 .address = (struct sockaddr *)&host->h_addr,
295 .addrsize = sizeof(host->h_addr),
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200296 .saddress = (struct sockaddr *)&host->h_saddr,
Chuck Levere1ec7892006-08-22 20:06:20 -0400297 .timeout = &timeparms,
298 .servername = host->h_name,
299 .program = &nlm_program,
300 .version = host->h_version,
301 .authflavor = RPC_AUTH_UNIX,
Jeff Layton90bd17c2008-02-06 11:34:11 -0500302 .flags = (RPC_CLNT_CREATE_NOPING |
Chuck Levere1ec7892006-08-22 20:06:20 -0400303 RPC_CLNT_CREATE_AUTOBIND),
304 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Jeff Layton90bd17c2008-02-06 11:34:11 -0500306 /*
307 * lockd retries server side blocks automatically so we want
308 * those to be soft RPC calls. Client side calls need to be
309 * hard RPC tasks.
310 */
311 if (!host->h_server)
312 args.flags |= RPC_CLNT_CREATE_HARDRTRY;
313
Chuck Levere1ec7892006-08-22 20:06:20 -0400314 clnt = rpc_create(&args);
315 if (!IS_ERR(clnt))
316 host->h_rpcclnt = clnt;
317 else {
318 printk("lockd: couldn't create RPC handle for %s\n", host->h_name);
319 clnt = NULL;
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
Trond Myklebust50467912006-06-09 09:40:24 -0400323 mutex_unlock(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327/*
328 * Force a portmap lookup of the remote lockd port
329 */
330void
331nlm_rebind_host(struct nlm_host *host)
332{
333 dprintk("lockd: rebind host %s\n", host->h_name);
334 if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) {
Chuck Lever35f5a422006-01-03 09:55:50 +0100335 rpc_force_rebind(host->h_rpcclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
337 }
338}
339
340/*
341 * Increment NLM host count
342 */
343struct nlm_host * nlm_get_host(struct nlm_host *host)
344{
345 if (host) {
346 dprintk("lockd: get host %s\n", host->h_name);
347 atomic_inc(&host->h_count);
348 host->h_expires = jiffies + NLM_HOST_EXPIRE;
349 }
350 return host;
351}
352
353/*
354 * Release NLM host after use
355 */
356void nlm_release_host(struct nlm_host *host)
357{
358 if (host != NULL) {
359 dprintk("lockd: release host %s\n", host->h_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 BUG_ON(atomic_read(&host->h_count) < 0);
Trond Myklebust4c060b52006-03-20 13:44:41 -0500361 if (atomic_dec_and_test(&host->h_count)) {
362 BUG_ON(!list_empty(&host->h_lockowners));
363 BUG_ON(!list_empty(&host->h_granted));
364 BUG_ON(!list_empty(&host->h_reclaim));
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367}
368
369/*
Olaf Kirchcf712c22006-10-04 02:15:52 -0700370 * We were notified that the host indicated by address &sin
371 * has rebooted.
372 * Release all resources held by that peer.
373 */
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700374void nlm_host_rebooted(const struct sockaddr_in *sin,
Chuck Lever48df020a2007-11-01 16:56:53 -0400375 const char *hostname,
376 unsigned int hostname_len,
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700377 u32 new_state)
Olaf Kirchcf712c22006-10-04 02:15:52 -0700378{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700379 struct hlist_head *chain;
380 struct hlist_node *pos;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700381 struct nsm_handle *nsm;
Olaf Kirch0cea3272006-10-04 02:15:56 -0700382 struct nlm_host *host;
Olaf Kirchcf712c22006-10-04 02:15:52 -0700383
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700384 /* Find the NSM handle for this peer */
Chuck Lever1b333c52008-08-27 16:57:23 -0400385 nsm = __nsm_find(sin, hostname, hostname_len, 0);
386 if (nsm == NULL) {
387 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
388 hostname_len, hostname);
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700389 return;
Chuck Lever1b333c52008-08-27 16:57:23 -0400390 }
391
392 dprintk("lockd: nlm_host_rebooted(%.*s, %s)\n",
393 hostname_len, hostname, nsm->sm_addrbuf);
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700394
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700395 /* When reclaiming locks on this peer, make sure that
396 * we set up a new notification */
397 nsm->sm_monitored = 0;
398
399 /* Mark all hosts tied to this NSM state as having rebooted.
400 * We run the loop repeatedly, because we drop the host table
401 * lock for this.
402 * To avoid processing a host several times, we match the nsmstate.
403 */
404again: mutex_lock(&nlm_host_mutex);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700405 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
406 hlist_for_each_entry(host, pos, chain, h_hash) {
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700407 if (host->h_nsmhandle == nsm
408 && host->h_nsmstate != new_state) {
409 host->h_nsmstate = new_state;
410 host->h_state++;
411
412 nlm_get_host(host);
413 mutex_unlock(&nlm_host_mutex);
414
415 if (host->h_server) {
416 /* We're server for this guy, just ditch
417 * all the locks he held. */
418 nlmsvc_free_host_resources(host);
419 } else {
420 /* He's the server, initiate lock recovery. */
421 nlmclnt_recovery(host);
422 }
423
424 nlm_release_host(host);
425 goto again;
426 }
427 }
Olaf Kirchcf712c22006-10-04 02:15:52 -0700428 }
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700429
430 mutex_unlock(&nlm_host_mutex);
Olaf Kirchcf712c22006-10-04 02:15:52 -0700431}
432
433/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 * Shut down the hosts module.
435 * Note that this routine is called only at server shutdown time.
436 */
437void
438nlm_shutdown_hosts(void)
439{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700440 struct hlist_head *chain;
441 struct hlist_node *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct nlm_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 dprintk("lockd: shutting down host module\n");
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800445 mutex_lock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /* First, make all hosts eligible for gc */
448 dprintk("lockd: nuking all hosts...\n");
Olaf Kirch0cea3272006-10-04 02:15:56 -0700449 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
Jeff Laytond801b862008-01-29 10:30:55 -0500450 hlist_for_each_entry(host, pos, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 host->h_expires = jiffies - 1;
Jeff Laytond801b862008-01-29 10:30:55 -0500452 if (host->h_rpcclnt) {
453 rpc_shutdown_client(host->h_rpcclnt);
454 host->h_rpcclnt = NULL;
455 }
456 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458
459 /* Then, perform a garbage collection pass */
460 nlm_gc_hosts();
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800461 mutex_unlock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* complain if any hosts are left */
464 if (nrhosts) {
465 printk(KERN_WARNING "lockd: couldn't shutdown host module!\n");
466 dprintk("lockd: %d hosts left:\n", nrhosts);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700467 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
468 hlist_for_each_entry(host, pos, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 dprintk(" %s (cnt %d use %d exp %ld)\n",
470 host->h_name, atomic_read(&host->h_count),
471 host->h_inuse, host->h_expires);
472 }
473 }
474 }
475}
476
477/*
478 * Garbage collect any unused NLM hosts.
479 * This GC combines reference counting for async operations with
480 * mark & sweep for resources held by remote clients.
481 */
482static void
483nlm_gc_hosts(void)
484{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700485 struct hlist_head *chain;
486 struct hlist_node *pos, *next;
487 struct nlm_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 dprintk("lockd: host garbage collection\n");
Olaf Kirch0cea3272006-10-04 02:15:56 -0700490 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
491 hlist_for_each_entry(host, pos, chain, h_hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 host->h_inuse = 0;
493 }
494
495 /* Mark all hosts that hold locks, blocks or shares */
496 nlmsvc_mark_resources();
497
Olaf Kirch0cea3272006-10-04 02:15:56 -0700498 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
499 hlist_for_each_entry_safe(host, pos, next, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (atomic_read(&host->h_count) || host->h_inuse
501 || time_before(jiffies, host->h_expires)) {
502 dprintk("nlm_gc_hosts skipping %s (cnt %d use %d exp %ld)\n",
503 host->h_name, atomic_read(&host->h_count),
504 host->h_inuse, host->h_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 continue;
506 }
507 dprintk("lockd: delete host %s\n", host->h_name);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700508 hlist_del_init(&host->h_hash);
Olaf Kirch977faf32006-10-04 02:15:51 -0700509
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700510 nlm_destroy_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 nrhosts--;
512 }
513 }
514
515 next_gc = jiffies + NLM_HOST_COLLECT;
516}
517
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700518
519/*
520 * Manage NSM handles
521 */
522static LIST_HEAD(nsm_handles);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500523static DEFINE_SPINLOCK(nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700524
525static struct nsm_handle *
526__nsm_find(const struct sockaddr_in *sin,
Chuck Lever48df020a2007-11-01 16:56:53 -0400527 const char *hostname, unsigned int hostname_len,
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700528 int create)
529{
530 struct nsm_handle *nsm = NULL;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500531 struct nsm_handle *pos;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700532
533 if (!sin)
534 return NULL;
535
536 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
537 if (printk_ratelimit()) {
538 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
539 "in NFS lock request\n",
540 hostname_len, hostname);
541 }
542 return NULL;
543 }
544
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500545retry:
546 spin_lock(&nsm_lock);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500547 list_for_each_entry(pos, &nsm_handles, sm_link) {
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700548
Olaf Kirchabd1f502006-10-04 02:16:01 -0700549 if (hostname && nsm_use_hostnames) {
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500550 if (strlen(pos->sm_name) != hostname_len
551 || memcmp(pos->sm_name, hostname, hostname_len))
Olaf Kirchabd1f502006-10-04 02:16:01 -0700552 continue;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500553 } else if (!nlm_cmp_addr(&pos->sm_addr, sin))
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700554 continue;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500555 atomic_inc(&pos->sm_count);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500556 kfree(nsm);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500557 nsm = pos;
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500558 goto found;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700559 }
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500560 if (nsm) {
561 list_add(&nsm->sm_link, &nsm_handles);
562 goto found;
563 }
564 spin_unlock(&nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700565
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500566 if (!create)
567 return NULL;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700568
569 nsm = kzalloc(sizeof(*nsm) + hostname_len + 1, GFP_KERNEL);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500570 if (nsm == NULL)
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500571 return NULL;
572
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500573 nsm->sm_addr = *sin;
574 nsm->sm_name = (char *) (nsm + 1);
575 memcpy(nsm->sm_name, hostname, hostname_len);
576 nsm->sm_name[hostname_len] = '\0';
Chuck Lever1b333c52008-08-27 16:57:23 -0400577 nlm_display_address((struct sockaddr *)&nsm->sm_addr,
578 nsm->sm_addrbuf, sizeof(nsm->sm_addrbuf));
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500579 atomic_set(&nsm->sm_count, 1);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500580 goto retry;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700581
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500582found:
583 spin_unlock(&nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700584 return nsm;
585}
586
Adrian Bunkc5856462006-12-06 20:38:29 -0800587static struct nsm_handle *
Chuck Lever48df020a2007-11-01 16:56:53 -0400588nsm_find(const struct sockaddr_in *sin, const char *hostname,
589 unsigned int hostname_len)
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700590{
591 return __nsm_find(sin, hostname, hostname_len, 1);
592}
593
594/*
595 * Release an NSM handle
596 */
597void
598nsm_release(struct nsm_handle *nsm)
599{
600 if (!nsm)
601 return;
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500602 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
J. Bruce Fields164f98a2008-02-20 14:02:47 -0500603 list_del(&nsm->sm_link);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500604 spin_unlock(&nsm_lock);
J. Bruce Fields164f98a2008-02-20 14:02:47 -0500605 kfree(nsm);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700606 }
607}