blob: cbd2398e594c5833df70862c959085cf42cb0891 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#define NLM_HOST_REBIND (60 * HZ)
NeilBrown1447d252008-02-08 13:03:37 +110026#define NLM_HOST_EXPIRE (300 * HZ)
27#define NLM_HOST_COLLECT (120 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Olaf Kirch0cea3272006-10-04 02:15:56 -070029static struct hlist_head nlm_hosts[NLM_HOST_NRHASH];
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static unsigned long next_gc;
31static int nrhosts;
Ingo Molnar353ab6e2006-03-26 01:37:12 -080032static DEFINE_MUTEX(nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static void nlm_gc_hosts(void);
Chuck Levere0180402008-09-03 14:36:23 -040035static struct nsm_handle *nsm_find(const struct sockaddr *sap,
36 const size_t salen,
Chuck Leverbc48e4d2008-09-03 14:36:16 -040037 const char *hostname,
38 const size_t hostname_len,
39 const int create);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Chuck Lever7f1ed182008-10-03 12:50:07 -040041struct nlm_lookup_host_info {
42 const int server; /* search for server|client */
Chuck Lever88541c82008-10-03 12:50:14 -040043 const struct sockaddr *sap; /* address to search for */
44 const size_t salen; /* it's length */
Chuck Lever7f1ed182008-10-03 12:50:07 -040045 const unsigned short protocol; /* transport to search for*/
46 const u32 version; /* NLM version to search for */
47 const char *hostname; /* remote's hostname */
48 const size_t hostname_len; /* it's length */
Chuck Lever88541c82008-10-03 12:50:14 -040049 const struct sockaddr *src_sap; /* our address (optional) */
Chuck Lever7f1ed182008-10-03 12:50:07 -040050 const size_t src_len; /* it's length */
51};
52
Chuck Leverede2fea2008-09-03 14:36:08 -040053/*
54 * Hash function must work well on big- and little-endian platforms
55 */
56static unsigned int __nlm_hash32(const __be32 n)
57{
58 unsigned int hash = (__force u32)n ^ ((__force u32)n >> 16);
59 return hash ^ (hash >> 8);
60}
61
62static unsigned int __nlm_hash_addr4(const struct sockaddr *sap)
63{
64 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
65 return __nlm_hash32(sin->sin_addr.s_addr);
66}
67
68static unsigned int __nlm_hash_addr6(const struct sockaddr *sap)
69{
70 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
71 const struct in6_addr addr = sin6->sin6_addr;
72 return __nlm_hash32(addr.s6_addr32[0]) ^
73 __nlm_hash32(addr.s6_addr32[1]) ^
74 __nlm_hash32(addr.s6_addr32[2]) ^
75 __nlm_hash32(addr.s6_addr32[3]);
76}
77
78static unsigned int nlm_hash_address(const struct sockaddr *sap)
79{
80 unsigned int hash;
81
82 switch (sap->sa_family) {
83 case AF_INET:
84 hash = __nlm_hash_addr4(sap);
85 break;
86 case AF_INET6:
87 hash = __nlm_hash_addr6(sap);
88 break;
89 default:
90 hash = 0;
91 }
92 return hash & (NLM_HOST_NRHASH - 1);
93}
94
Chuck Lever396cb3d2008-08-27 16:57:38 -040095static void nlm_clear_port(struct sockaddr *sap)
96{
97 switch (sap->sa_family) {
98 case AF_INET:
99 ((struct sockaddr_in *)sap)->sin_port = 0;
100 break;
101 case AF_INET6:
102 ((struct sockaddr_in6 *)sap)->sin6_port = 0;
103 break;
104 }
105}
106
Chuck Lever1b333c52008-08-27 16:57:23 -0400107static void nlm_display_address(const struct sockaddr *sap,
108 char *buf, const size_t len)
109{
110 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
111 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
112
113 switch (sap->sa_family) {
114 case AF_UNSPEC:
115 snprintf(buf, len, "unspecified");
116 break;
117 case AF_INET:
118 snprintf(buf, len, NIPQUAD_FMT, NIPQUAD(sin->sin_addr.s_addr));
119 break;
120 case AF_INET6:
121 if (ipv6_addr_v4mapped(&sin6->sin6_addr))
122 snprintf(buf, len, NIPQUAD_FMT,
123 NIPQUAD(sin6->sin6_addr.s6_addr32[3]));
124 else
125 snprintf(buf, len, NIP6_FMT, NIP6(sin6->sin6_addr));
126 break;
127 default:
128 snprintf(buf, len, "unsupported address family");
129 break;
130 }
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/*
134 * Common host lookup routine for server & client
135 */
Chuck Lever7f1ed182008-10-03 12:50:07 -0400136static struct nlm_host *nlm_lookup_host(struct nlm_lookup_host_info *ni)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700138 struct hlist_head *chain;
139 struct hlist_node *pos;
140 struct nlm_host *host;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700141 struct nsm_handle *nsm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800143 mutex_lock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 if (time_after_eq(jiffies, next_gc))
146 nlm_gc_hosts();
147
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700148 /* We may keep several nlm_host objects for a peer, because each
149 * nlm_host is identified by
150 * (address, protocol, version, server/client)
151 * We could probably simplify this a little by putting all those
152 * different NLM rpc_clients into one single nlm_host object.
153 * This would allow us to have one nlm_host per address.
154 */
Chuck Lever88541c82008-10-03 12:50:14 -0400155 chain = &nlm_hosts[nlm_hash_address(ni->sap)];
Olaf Kirch0cea3272006-10-04 02:15:56 -0700156 hlist_for_each_entry(host, pos, chain, h_hash) {
Chuck Lever88541c82008-10-03 12:50:14 -0400157 if (!nlm_cmp_addr(nlm_addr(host), ni->sap))
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700158 continue;
159
160 /* See if we have an NSM handle for this client */
NeilBrown6b54dae2006-10-04 02:16:15 -0700161 if (!nsm)
162 nsm = host->h_nsmhandle;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700163
Chuck Lever7f1ed182008-10-03 12:50:07 -0400164 if (host->h_proto != ni->protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 continue;
Chuck Lever7f1ed182008-10-03 12:50:07 -0400166 if (host->h_version != ni->version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 continue;
Chuck Lever7f1ed182008-10-03 12:50:07 -0400168 if (host->h_server != ni->server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 continue;
Chuck Lever88541c82008-10-03 12:50:14 -0400170 if (!nlm_cmp_addr(nlm_srcaddr(host), ni->src_sap))
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200171 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Olaf Kirch0cea3272006-10-04 02:15:56 -0700173 /* Move to head of hash chain. */
174 hlist_del(&host->h_hash);
175 hlist_add_head(&host->h_hash, chain);
176
Olaf Kirchf0737a32006-10-04 02:15:54 -0700177 nlm_get_host(host);
Chuck Lever1b333c52008-08-27 16:57:23 -0400178 dprintk("lockd: nlm_lookup_host found host %s (%s)\n",
179 host->h_name, host->h_addrbuf);
Olaf Kirchf0737a32006-10-04 02:15:54 -0700180 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Chuck Leverc2526f42008-08-27 16:57:15 -0400182
183 /*
184 * The host wasn't in our hash table. If we don't
185 * have an NSM handle for it yet, create one.
186 */
NeilBrown6b54dae2006-10-04 02:16:15 -0700187 if (nsm)
188 atomic_inc(&nsm->sm_count);
Chuck Leverc2526f42008-08-27 16:57:15 -0400189 else {
190 host = NULL;
Chuck Lever88541c82008-10-03 12:50:14 -0400191 nsm = nsm_find(ni->sap, ni->salen,
Chuck Lever7f1ed182008-10-03 12:50:07 -0400192 ni->hostname, ni->hostname_len, 1);
Chuck Lever1b333c52008-08-27 16:57:23 -0400193 if (!nsm) {
194 dprintk("lockd: nlm_lookup_host failed; "
195 "no nsm handle\n");
Chuck Leverc2526f42008-08-27 16:57:15 -0400196 goto out;
Chuck Lever1b333c52008-08-27 16:57:23 -0400197 }
Chuck Leverc2526f42008-08-27 16:57:15 -0400198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700200 host = kzalloc(sizeof(*host), GFP_KERNEL);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700201 if (!host) {
202 nsm_release(nsm);
Chuck Lever1b333c52008-08-27 16:57:23 -0400203 dprintk("lockd: nlm_lookup_host failed; no memory\n");
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700204 goto out;
205 }
206 host->h_name = nsm->sm_name;
Chuck Lever88541c82008-10-03 12:50:14 -0400207 memcpy(nlm_addr(host), ni->sap, ni->salen);
208 host->h_addrlen = ni->salen;
Chuck Leverb4ed58f2008-09-03 14:35:39 -0400209 nlm_clear_port(nlm_addr(host));
Chuck Lever88541c82008-10-03 12:50:14 -0400210 memcpy(nlm_srcaddr(host), ni->src_sap, ni->src_len);
Chuck Lever7f1ed182008-10-03 12:50:07 -0400211 host->h_version = ni->version;
212 host->h_proto = ni->protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 host->h_rpcclnt = NULL;
Trond Myklebust50467912006-06-09 09:40:24 -0400214 mutex_init(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
216 host->h_expires = jiffies + NLM_HOST_EXPIRE;
217 atomic_set(&host->h_count, 1);
218 init_waitqueue_head(&host->h_gracewait);
Trond Myklebust28df9552006-06-09 09:40:27 -0400219 init_rwsem(&host->h_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 host->h_state = 0; /* pseudo NSM state */
221 host->h_nsmstate = 0; /* real NSM state */
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700222 host->h_nsmhandle = nsm;
Chuck Lever7f1ed182008-10-03 12:50:07 -0400223 host->h_server = ni->server;
Olaf Kirch0cea3272006-10-04 02:15:56 -0700224 hlist_add_head(&host->h_hash, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 INIT_LIST_HEAD(&host->h_lockowners);
226 spin_lock_init(&host->h_lock);
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500227 INIT_LIST_HEAD(&host->h_granted);
228 INIT_LIST_HEAD(&host->h_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
NeilBrown1447d252008-02-08 13:03:37 +1100230 nrhosts++;
Chuck Lever1b333c52008-08-27 16:57:23 -0400231
232 nlm_display_address((struct sockaddr *)&host->h_addr,
233 host->h_addrbuf, sizeof(host->h_addrbuf));
Chuck Lever90151e62008-09-03 14:35:46 -0400234 nlm_display_address((struct sockaddr *)&host->h_srcaddr,
235 host->h_srcaddrbuf, sizeof(host->h_srcaddrbuf));
Chuck Lever1b333c52008-08-27 16:57:23 -0400236
237 dprintk("lockd: nlm_lookup_host created host %s\n",
238 host->h_name);
239
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700240out:
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800241 mutex_unlock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return host;
243}
244
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700245/*
246 * Destroy a host
247 */
248static void
249nlm_destroy_host(struct nlm_host *host)
250{
251 struct rpc_clnt *clnt;
252
253 BUG_ON(!list_empty(&host->h_lockowners));
254 BUG_ON(atomic_read(&host->h_count));
255
256 /*
257 * Release NSM handle and unmonitor host.
258 */
259 nsm_unmonitor(host);
260
Trond Myklebust34f52e32007-06-14 16:40:31 -0400261 clnt = host->h_rpcclnt;
262 if (clnt != NULL)
263 rpc_shutdown_client(clnt);
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700264 kfree(host);
265}
266
Chuck Leverd7d20442008-10-03 12:50:21 -0400267/**
268 * nlmclnt_lookup_host - Find an NLM host handle matching a remote server
269 * @sap: network address of server
270 * @salen: length of server address
271 * @protocol: transport protocol to use
272 * @version: NLM protocol version
273 * @hostname: '\0'-terminated hostname of server
274 *
275 * Returns an nlm_host structure that matches the passed-in
276 * [server address, transport protocol, NLM version, server hostname].
277 * If one doesn't already exist in the host cache, a new handle is
278 * created and returned.
Adrian Bunkc5856462006-12-06 20:38:29 -0800279 */
Chuck Leverd7d20442008-10-03 12:50:21 -0400280struct nlm_host *nlmclnt_lookup_host(const struct sockaddr *sap,
281 const size_t salen,
282 const unsigned short protocol,
283 const u32 version, const char *hostname)
Adrian Bunkc5856462006-12-06 20:38:29 -0800284{
Chuck Lever88541c82008-10-03 12:50:14 -0400285 const struct sockaddr source = {
286 .sa_family = AF_UNSPEC,
Chuck Lever2860a022008-08-27 16:57:31 -0400287 };
Chuck Lever7f1ed182008-10-03 12:50:07 -0400288 struct nlm_lookup_host_info ni = {
289 .server = 0,
Chuck Leverd7d20442008-10-03 12:50:21 -0400290 .sap = sap,
291 .salen = salen,
292 .protocol = protocol,
Chuck Lever7f1ed182008-10-03 12:50:07 -0400293 .version = version,
294 .hostname = hostname,
Chuck Leverd7d20442008-10-03 12:50:21 -0400295 .hostname_len = strlen(hostname),
Chuck Lever88541c82008-10-03 12:50:14 -0400296 .src_sap = &source,
297 .src_len = sizeof(source),
Chuck Lever7f1ed182008-10-03 12:50:07 -0400298 };
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200299
Chuck Lever7f1ed182008-10-03 12:50:07 -0400300 dprintk("lockd: %s(host='%s', vers=%u, proto=%s)\n", __func__,
301 (hostname ? hostname : "<none>"), version,
Chuck Leverd7d20442008-10-03 12:50:21 -0400302 (protocol == IPPROTO_UDP ? "udp" : "tcp"));
Chuck Lever7f1ed182008-10-03 12:50:07 -0400303
304 return nlm_lookup_host(&ni);
Adrian Bunkc5856462006-12-06 20:38:29 -0800305}
306
307/*
308 * Find an NLM client handle in the cache. If there is none, create it.
309 */
310struct nlm_host *
311nlmsvc_lookup_host(struct svc_rqst *rqstp,
Chuck Lever48df0202007-11-01 16:56:53 -0400312 const char *hostname, unsigned int hostname_len)
Adrian Bunkc5856462006-12-06 20:38:29 -0800313{
Chuck Lever2860a022008-08-27 16:57:31 -0400314 const struct sockaddr_in source = {
315 .sin_family = AF_INET,
316 .sin_addr = rqstp->rq_daddr.addr,
317 };
Chuck Lever7f1ed182008-10-03 12:50:07 -0400318 struct nlm_lookup_host_info ni = {
319 .server = 1,
Chuck Lever88541c82008-10-03 12:50:14 -0400320 .sap = svc_addr(rqstp),
321 .salen = rqstp->rq_addrlen,
Chuck Lever7f1ed182008-10-03 12:50:07 -0400322 .protocol = rqstp->rq_prot,
323 .version = rqstp->rq_vers,
324 .hostname = hostname,
325 .hostname_len = hostname_len,
Chuck Lever88541c82008-10-03 12:50:14 -0400326 .src_sap = (struct sockaddr *)&source,
327 .src_len = sizeof(source),
Chuck Lever7f1ed182008-10-03 12:50:07 -0400328 };
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200329
Chuck Lever7f1ed182008-10-03 12:50:07 -0400330 dprintk("lockd: %s(host='%*s', vers=%u, proto=%s)\n", __func__,
331 (int)hostname_len, hostname, rqstp->rq_vers,
332 (rqstp->rq_prot == IPPROTO_UDP ? "udp" : "tcp"));
333
334 return nlm_lookup_host(&ni);
Adrian Bunkc5856462006-12-06 20:38:29 -0800335}
336
337/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * Create the NLM RPC client for an NLM peer
339 */
340struct rpc_clnt *
341nlm_bind_host(struct nlm_host *host)
342{
343 struct rpc_clnt *clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Chuck Lever1b333c52008-08-27 16:57:23 -0400345 dprintk("lockd: nlm_bind_host %s (%s), my addr=%s\n",
Chuck Lever90151e62008-09-03 14:35:46 -0400346 host->h_name, host->h_addrbuf, host->h_srcaddrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 /* Lock host handle */
Trond Myklebust50467912006-06-09 09:40:24 -0400349 mutex_lock(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /* If we've already created an RPC client, check whether
352 * RPC rebind is required
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 */
354 if ((clnt = host->h_rpcclnt) != NULL) {
Chuck Lever43118c22005-08-25 16:25:49 -0700355 if (time_after_eq(jiffies, host->h_nextrebind)) {
Chuck Lever35f5a422006-01-03 09:55:50 +0100356 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
Chuck Lever1b333c52008-08-27 16:57:23 -0400358 dprintk("lockd: next rebind in %lu jiffies\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 host->h_nextrebind - jiffies);
360 }
361 } else {
Trond Myklebust21051ba2007-05-14 16:50:44 -0400362 unsigned long increment = nlmsvc_timeout;
Chuck Levere1ec7892006-08-22 20:06:20 -0400363 struct rpc_timeout timeparms = {
364 .to_initval = increment,
365 .to_increment = increment,
366 .to_maxval = increment * 6UL,
367 .to_retries = 5U,
368 };
369 struct rpc_create_args args = {
370 .protocol = host->h_proto,
Chuck Leverb4ed58f2008-09-03 14:35:39 -0400371 .address = nlm_addr(host),
372 .addrsize = host->h_addrlen,
Chuck Lever90151e62008-09-03 14:35:46 -0400373 .saddress = nlm_srcaddr(host),
Chuck Levere1ec7892006-08-22 20:06:20 -0400374 .timeout = &timeparms,
375 .servername = host->h_name,
376 .program = &nlm_program,
377 .version = host->h_version,
378 .authflavor = RPC_AUTH_UNIX,
Jeff Layton90bd17c2008-02-06 11:34:11 -0500379 .flags = (RPC_CLNT_CREATE_NOPING |
Chuck Levere1ec7892006-08-22 20:06:20 -0400380 RPC_CLNT_CREATE_AUTOBIND),
381 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Jeff Layton90bd17c2008-02-06 11:34:11 -0500383 /*
384 * lockd retries server side blocks automatically so we want
385 * those to be soft RPC calls. Client side calls need to be
386 * hard RPC tasks.
387 */
388 if (!host->h_server)
389 args.flags |= RPC_CLNT_CREATE_HARDRTRY;
390
Chuck Levere1ec7892006-08-22 20:06:20 -0400391 clnt = rpc_create(&args);
392 if (!IS_ERR(clnt))
393 host->h_rpcclnt = clnt;
394 else {
395 printk("lockd: couldn't create RPC handle for %s\n", host->h_name);
396 clnt = NULL;
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
Trond Myklebust50467912006-06-09 09:40:24 -0400400 mutex_unlock(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404/*
405 * Force a portmap lookup of the remote lockd port
406 */
407void
408nlm_rebind_host(struct nlm_host *host)
409{
410 dprintk("lockd: rebind host %s\n", host->h_name);
411 if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) {
Chuck Lever35f5a422006-01-03 09:55:50 +0100412 rpc_force_rebind(host->h_rpcclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
414 }
415}
416
417/*
418 * Increment NLM host count
419 */
420struct nlm_host * nlm_get_host(struct nlm_host *host)
421{
422 if (host) {
423 dprintk("lockd: get host %s\n", host->h_name);
424 atomic_inc(&host->h_count);
425 host->h_expires = jiffies + NLM_HOST_EXPIRE;
426 }
427 return host;
428}
429
430/*
431 * Release NLM host after use
432 */
433void nlm_release_host(struct nlm_host *host)
434{
435 if (host != NULL) {
436 dprintk("lockd: release host %s\n", host->h_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 BUG_ON(atomic_read(&host->h_count) < 0);
Trond Myklebust4c060b52006-03-20 13:44:41 -0500438 if (atomic_dec_and_test(&host->h_count)) {
439 BUG_ON(!list_empty(&host->h_lockowners));
440 BUG_ON(!list_empty(&host->h_granted));
441 BUG_ON(!list_empty(&host->h_reclaim));
442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
444}
445
446/*
Olaf Kirchcf712c22006-10-04 02:15:52 -0700447 * We were notified that the host indicated by address &sin
448 * has rebooted.
449 * Release all resources held by that peer.
450 */
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700451void nlm_host_rebooted(const struct sockaddr_in *sin,
Chuck Lever48df0202007-11-01 16:56:53 -0400452 const char *hostname,
453 unsigned int hostname_len,
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700454 u32 new_state)
Olaf Kirchcf712c22006-10-04 02:15:52 -0700455{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700456 struct hlist_head *chain;
457 struct hlist_node *pos;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700458 struct nsm_handle *nsm;
Olaf Kirch0cea3272006-10-04 02:15:56 -0700459 struct nlm_host *host;
Olaf Kirchcf712c22006-10-04 02:15:52 -0700460
Chuck Levere0180402008-09-03 14:36:23 -0400461 nsm = nsm_find((struct sockaddr *)sin, sizeof(*sin),
462 hostname, hostname_len, 0);
Chuck Lever1b333c52008-08-27 16:57:23 -0400463 if (nsm == NULL) {
464 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
465 hostname_len, hostname);
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700466 return;
Chuck Lever1b333c52008-08-27 16:57:23 -0400467 }
468
469 dprintk("lockd: nlm_host_rebooted(%.*s, %s)\n",
470 hostname_len, hostname, nsm->sm_addrbuf);
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700471
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700472 /* When reclaiming locks on this peer, make sure that
473 * we set up a new notification */
474 nsm->sm_monitored = 0;
475
476 /* Mark all hosts tied to this NSM state as having rebooted.
477 * We run the loop repeatedly, because we drop the host table
478 * lock for this.
479 * To avoid processing a host several times, we match the nsmstate.
480 */
481again: mutex_lock(&nlm_host_mutex);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700482 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
483 hlist_for_each_entry(host, pos, chain, h_hash) {
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700484 if (host->h_nsmhandle == nsm
485 && host->h_nsmstate != new_state) {
486 host->h_nsmstate = new_state;
487 host->h_state++;
488
489 nlm_get_host(host);
490 mutex_unlock(&nlm_host_mutex);
491
492 if (host->h_server) {
493 /* We're server for this guy, just ditch
494 * all the locks he held. */
495 nlmsvc_free_host_resources(host);
496 } else {
497 /* He's the server, initiate lock recovery. */
498 nlmclnt_recovery(host);
499 }
500
501 nlm_release_host(host);
502 goto again;
503 }
504 }
Olaf Kirchcf712c22006-10-04 02:15:52 -0700505 }
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700506
507 mutex_unlock(&nlm_host_mutex);
Olaf Kirchcf712c22006-10-04 02:15:52 -0700508}
509
510/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * Shut down the hosts module.
512 * Note that this routine is called only at server shutdown time.
513 */
514void
515nlm_shutdown_hosts(void)
516{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700517 struct hlist_head *chain;
518 struct hlist_node *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct nlm_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 dprintk("lockd: shutting down host module\n");
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800522 mutex_lock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /* First, make all hosts eligible for gc */
525 dprintk("lockd: nuking all hosts...\n");
Olaf Kirch0cea3272006-10-04 02:15:56 -0700526 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
Jeff Laytond801b862008-01-29 10:30:55 -0500527 hlist_for_each_entry(host, pos, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 host->h_expires = jiffies - 1;
Jeff Laytond801b862008-01-29 10:30:55 -0500529 if (host->h_rpcclnt) {
530 rpc_shutdown_client(host->h_rpcclnt);
531 host->h_rpcclnt = NULL;
532 }
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535
536 /* Then, perform a garbage collection pass */
537 nlm_gc_hosts();
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800538 mutex_unlock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* complain if any hosts are left */
541 if (nrhosts) {
542 printk(KERN_WARNING "lockd: couldn't shutdown host module!\n");
543 dprintk("lockd: %d hosts left:\n", nrhosts);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700544 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
545 hlist_for_each_entry(host, pos, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 dprintk(" %s (cnt %d use %d exp %ld)\n",
547 host->h_name, atomic_read(&host->h_count),
548 host->h_inuse, host->h_expires);
549 }
550 }
551 }
552}
553
554/*
555 * Garbage collect any unused NLM hosts.
556 * This GC combines reference counting for async operations with
557 * mark & sweep for resources held by remote clients.
558 */
559static void
560nlm_gc_hosts(void)
561{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700562 struct hlist_head *chain;
563 struct hlist_node *pos, *next;
564 struct nlm_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 dprintk("lockd: host garbage collection\n");
Olaf Kirch0cea3272006-10-04 02:15:56 -0700567 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
568 hlist_for_each_entry(host, pos, chain, h_hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 host->h_inuse = 0;
570 }
571
572 /* Mark all hosts that hold locks, blocks or shares */
573 nlmsvc_mark_resources();
574
Olaf Kirch0cea3272006-10-04 02:15:56 -0700575 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
576 hlist_for_each_entry_safe(host, pos, next, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (atomic_read(&host->h_count) || host->h_inuse
578 || time_before(jiffies, host->h_expires)) {
579 dprintk("nlm_gc_hosts skipping %s (cnt %d use %d exp %ld)\n",
580 host->h_name, atomic_read(&host->h_count),
581 host->h_inuse, host->h_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 continue;
583 }
584 dprintk("lockd: delete host %s\n", host->h_name);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700585 hlist_del_init(&host->h_hash);
Olaf Kirch977faf32006-10-04 02:15:51 -0700586
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700587 nlm_destroy_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 nrhosts--;
589 }
590 }
591
592 next_gc = jiffies + NLM_HOST_COLLECT;
593}
594
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700595
596/*
597 * Manage NSM handles
598 */
599static LIST_HEAD(nsm_handles);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500600static DEFINE_SPINLOCK(nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700601
Chuck Levere0180402008-09-03 14:36:23 -0400602static struct nsm_handle *nsm_find(const struct sockaddr *sap,
603 const size_t salen,
Chuck Leverbc48e4d2008-09-03 14:36:16 -0400604 const char *hostname,
605 const size_t hostname_len,
606 const int create)
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700607{
608 struct nsm_handle *nsm = NULL;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500609 struct nsm_handle *pos;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700610
Chuck Levere0180402008-09-03 14:36:23 -0400611 if (!sap)
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700612 return NULL;
613
614 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
615 if (printk_ratelimit()) {
616 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
617 "in NFS lock request\n",
Chuck Leverbc48e4d2008-09-03 14:36:16 -0400618 (int)hostname_len, hostname);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700619 }
620 return NULL;
621 }
622
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500623retry:
624 spin_lock(&nsm_lock);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500625 list_for_each_entry(pos, &nsm_handles, sm_link) {
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700626
Olaf Kirchabd1f502006-10-04 02:16:01 -0700627 if (hostname && nsm_use_hostnames) {
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500628 if (strlen(pos->sm_name) != hostname_len
629 || memcmp(pos->sm_name, hostname, hostname_len))
Olaf Kirchabd1f502006-10-04 02:16:01 -0700630 continue;
Chuck Levere0180402008-09-03 14:36:23 -0400631 } else if (!nlm_cmp_addr(nsm_addr(pos), sap))
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700632 continue;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500633 atomic_inc(&pos->sm_count);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500634 kfree(nsm);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500635 nsm = pos;
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500636 goto found;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700637 }
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500638 if (nsm) {
639 list_add(&nsm->sm_link, &nsm_handles);
640 goto found;
641 }
642 spin_unlock(&nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700643
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500644 if (!create)
645 return NULL;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700646
647 nsm = kzalloc(sizeof(*nsm) + hostname_len + 1, GFP_KERNEL);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500648 if (nsm == NULL)
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500649 return NULL;
650
Chuck Levere0180402008-09-03 14:36:23 -0400651 memcpy(nsm_addr(nsm), sap, salen);
652 nsm->sm_addrlen = salen;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500653 nsm->sm_name = (char *) (nsm + 1);
654 memcpy(nsm->sm_name, hostname, hostname_len);
655 nsm->sm_name[hostname_len] = '\0';
Chuck Lever1b333c52008-08-27 16:57:23 -0400656 nlm_display_address((struct sockaddr *)&nsm->sm_addr,
657 nsm->sm_addrbuf, sizeof(nsm->sm_addrbuf));
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500658 atomic_set(&nsm->sm_count, 1);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500659 goto retry;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700660
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500661found:
662 spin_unlock(&nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700663 return nsm;
664}
665
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700666/*
667 * Release an NSM handle
668 */
669void
670nsm_release(struct nsm_handle *nsm)
671{
672 if (!nsm)
673 return;
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500674 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
J. Bruce Fields164f98a2008-02-20 14:02:47 -0500675 list_del(&nsm->sm_link);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500676 spin_unlock(&nsm_lock);
J. Bruce Fields164f98a2008-02-20 14:02:47 -0500677 kfree(nsm);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700678 }
679}