blob: 1d523c1a7b6278ee1894e77e19fbde13ab3b972d [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);
Chuck Leverc8c23c42008-12-04 14:21:31 -050040static void nsm_release(struct nsm_handle *nsm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Chuck Lever7f1ed182008-10-03 12:50:07 -040042struct nlm_lookup_host_info {
43 const int server; /* search for server|client */
Chuck Lever88541c82008-10-03 12:50:14 -040044 const struct sockaddr *sap; /* address to search for */
45 const size_t salen; /* it's length */
Chuck Lever7f1ed182008-10-03 12:50:07 -040046 const unsigned short protocol; /* transport to search for*/
47 const u32 version; /* NLM version to search for */
48 const char *hostname; /* remote's hostname */
49 const size_t hostname_len; /* it's length */
Chuck Lever88541c82008-10-03 12:50:14 -040050 const struct sockaddr *src_sap; /* our address (optional) */
Chuck Lever7f1ed182008-10-03 12:50:07 -040051 const size_t src_len; /* it's length */
Chuck Lever0cb26592008-12-23 15:21:38 -050052 const int noresvport; /* use non-priv port */
Chuck Lever7f1ed182008-10-03 12:50:07 -040053};
54
Chuck Leverede2fea2008-09-03 14:36:08 -040055/*
56 * Hash function must work well on big- and little-endian platforms
57 */
58static unsigned int __nlm_hash32(const __be32 n)
59{
60 unsigned int hash = (__force u32)n ^ ((__force u32)n >> 16);
61 return hash ^ (hash >> 8);
62}
63
64static unsigned int __nlm_hash_addr4(const struct sockaddr *sap)
65{
66 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
67 return __nlm_hash32(sin->sin_addr.s_addr);
68}
69
70static unsigned int __nlm_hash_addr6(const struct sockaddr *sap)
71{
72 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
73 const struct in6_addr addr = sin6->sin6_addr;
74 return __nlm_hash32(addr.s6_addr32[0]) ^
75 __nlm_hash32(addr.s6_addr32[1]) ^
76 __nlm_hash32(addr.s6_addr32[2]) ^
77 __nlm_hash32(addr.s6_addr32[3]);
78}
79
80static unsigned int nlm_hash_address(const struct sockaddr *sap)
81{
82 unsigned int hash;
83
84 switch (sap->sa_family) {
85 case AF_INET:
86 hash = __nlm_hash_addr4(sap);
87 break;
88 case AF_INET6:
89 hash = __nlm_hash_addr6(sap);
90 break;
91 default:
92 hash = 0;
93 }
94 return hash & (NLM_HOST_NRHASH - 1);
95}
96
Chuck Lever396cb3d2008-08-27 16:57:38 -040097static void nlm_clear_port(struct sockaddr *sap)
98{
99 switch (sap->sa_family) {
100 case AF_INET:
101 ((struct sockaddr_in *)sap)->sin_port = 0;
102 break;
103 case AF_INET6:
104 ((struct sockaddr_in6 *)sap)->sin6_port = 0;
105 break;
106 }
107}
108
Chuck Leverafb03692008-12-04 14:20:16 -0500109static void nlm_display_ipv4_address(const struct sockaddr *sap, char *buf,
110 const size_t len)
111{
112 const struct sockaddr_in *sin = (struct sockaddr_in *)sap;
113 snprintf(buf, len, "%pI4", &sin->sin_addr.s_addr);
114}
115
Chuck Leverbc995802008-12-04 14:20:08 -0500116static void nlm_display_ipv6_address(const struct sockaddr *sap, char *buf,
117 const size_t len)
118{
119 const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
120
121 if (ipv6_addr_v4mapped(&sin6->sin6_addr))
122 snprintf(buf, len, "%pI4", &sin6->sin6_addr.s6_addr32[3]);
123 else if (sin6->sin6_scope_id != 0)
124 snprintf(buf, len, "%pI6%%%u", &sin6->sin6_addr,
125 sin6->sin6_scope_id);
126 else
127 snprintf(buf, len, "%pI6", &sin6->sin6_addr);
128}
129
Chuck Lever1b333c52008-08-27 16:57:23 -0400130static void nlm_display_address(const struct sockaddr *sap,
131 char *buf, const size_t len)
132{
Chuck Lever1b333c52008-08-27 16:57:23 -0400133 switch (sap->sa_family) {
Chuck Lever1b333c52008-08-27 16:57:23 -0400134 case AF_INET:
Chuck Leverafb03692008-12-04 14:20:16 -0500135 nlm_display_ipv4_address(sap, buf, len);
Chuck Lever1b333c52008-08-27 16:57:23 -0400136 break;
137 case AF_INET6:
Chuck Leverbc995802008-12-04 14:20:08 -0500138 nlm_display_ipv6_address(sap, buf, len);
Chuck Lever1b333c52008-08-27 16:57:23 -0400139 break;
140 default:
141 snprintf(buf, len, "unsupported address family");
142 break;
143 }
144}
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/*
147 * Common host lookup routine for server & client
148 */
Chuck Lever7f1ed182008-10-03 12:50:07 -0400149static struct nlm_host *nlm_lookup_host(struct nlm_lookup_host_info *ni)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700151 struct hlist_head *chain;
152 struct hlist_node *pos;
153 struct nlm_host *host;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700154 struct nsm_handle *nsm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800156 mutex_lock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 if (time_after_eq(jiffies, next_gc))
159 nlm_gc_hosts();
160
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700161 /* We may keep several nlm_host objects for a peer, because each
162 * nlm_host is identified by
163 * (address, protocol, version, server/client)
164 * We could probably simplify this a little by putting all those
165 * different NLM rpc_clients into one single nlm_host object.
166 * This would allow us to have one nlm_host per address.
167 */
Chuck Lever88541c82008-10-03 12:50:14 -0400168 chain = &nlm_hosts[nlm_hash_address(ni->sap)];
Olaf Kirch0cea3272006-10-04 02:15:56 -0700169 hlist_for_each_entry(host, pos, chain, h_hash) {
Chuck Lever88541c82008-10-03 12:50:14 -0400170 if (!nlm_cmp_addr(nlm_addr(host), ni->sap))
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700171 continue;
172
173 /* See if we have an NSM handle for this client */
NeilBrown6b54dae2006-10-04 02:16:15 -0700174 if (!nsm)
175 nsm = host->h_nsmhandle;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700176
Chuck Lever7f1ed182008-10-03 12:50:07 -0400177 if (host->h_proto != ni->protocol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 continue;
Chuck Lever7f1ed182008-10-03 12:50:07 -0400179 if (host->h_version != ni->version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 continue;
Chuck Lever7f1ed182008-10-03 12:50:07 -0400181 if (host->h_server != ni->server)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 continue;
Chuck Levera8d82d92008-11-24 12:51:55 -0500183 if (ni->server &&
184 !nlm_cmp_addr(nlm_srcaddr(host), ni->src_sap))
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200185 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Olaf Kirch0cea3272006-10-04 02:15:56 -0700187 /* Move to head of hash chain. */
188 hlist_del(&host->h_hash);
189 hlist_add_head(&host->h_hash, chain);
190
Olaf Kirchf0737a32006-10-04 02:15:54 -0700191 nlm_get_host(host);
Chuck Lever1b333c52008-08-27 16:57:23 -0400192 dprintk("lockd: nlm_lookup_host found host %s (%s)\n",
193 host->h_name, host->h_addrbuf);
Olaf Kirchf0737a32006-10-04 02:15:54 -0700194 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Chuck Leverc2526f42008-08-27 16:57:15 -0400196
197 /*
198 * The host wasn't in our hash table. If we don't
199 * have an NSM handle for it yet, create one.
200 */
NeilBrown6b54dae2006-10-04 02:16:15 -0700201 if (nsm)
202 atomic_inc(&nsm->sm_count);
Chuck Leverc2526f42008-08-27 16:57:15 -0400203 else {
204 host = NULL;
Chuck Lever88541c82008-10-03 12:50:14 -0400205 nsm = nsm_find(ni->sap, ni->salen,
Chuck Lever7f1ed182008-10-03 12:50:07 -0400206 ni->hostname, ni->hostname_len, 1);
Chuck Lever1b333c52008-08-27 16:57:23 -0400207 if (!nsm) {
208 dprintk("lockd: nlm_lookup_host failed; "
209 "no nsm handle\n");
Chuck Leverc2526f42008-08-27 16:57:15 -0400210 goto out;
Chuck Lever1b333c52008-08-27 16:57:23 -0400211 }
Chuck Leverc2526f42008-08-27 16:57:15 -0400212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700214 host = kzalloc(sizeof(*host), GFP_KERNEL);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700215 if (!host) {
216 nsm_release(nsm);
Chuck Lever1b333c52008-08-27 16:57:23 -0400217 dprintk("lockd: nlm_lookup_host failed; no memory\n");
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700218 goto out;
219 }
220 host->h_name = nsm->sm_name;
Chuck Lever1df40b62008-12-04 14:19:53 -0500221 host->h_addrbuf = nsm->sm_addrbuf;
Chuck Lever88541c82008-10-03 12:50:14 -0400222 memcpy(nlm_addr(host), ni->sap, ni->salen);
223 host->h_addrlen = ni->salen;
Chuck Leverb4ed58f2008-09-03 14:35:39 -0400224 nlm_clear_port(nlm_addr(host));
Chuck Lever88541c82008-10-03 12:50:14 -0400225 memcpy(nlm_srcaddr(host), ni->src_sap, ni->src_len);
Chuck Lever7f1ed182008-10-03 12:50:07 -0400226 host->h_version = ni->version;
227 host->h_proto = ni->protocol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 host->h_rpcclnt = NULL;
Trond Myklebust50467912006-06-09 09:40:24 -0400229 mutex_init(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
231 host->h_expires = jiffies + NLM_HOST_EXPIRE;
232 atomic_set(&host->h_count, 1);
233 init_waitqueue_head(&host->h_gracewait);
Trond Myklebust28df9552006-06-09 09:40:27 -0400234 init_rwsem(&host->h_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 host->h_state = 0; /* pseudo NSM state */
236 host->h_nsmstate = 0; /* real NSM state */
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700237 host->h_nsmhandle = nsm;
Chuck Lever7f1ed182008-10-03 12:50:07 -0400238 host->h_server = ni->server;
Chuck Lever0cb26592008-12-23 15:21:38 -0500239 host->h_noresvport = ni->noresvport;
Olaf Kirch0cea3272006-10-04 02:15:56 -0700240 hlist_add_head(&host->h_hash, chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 INIT_LIST_HEAD(&host->h_lockowners);
242 spin_lock_init(&host->h_lock);
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500243 INIT_LIST_HEAD(&host->h_granted);
244 INIT_LIST_HEAD(&host->h_reclaim);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
NeilBrown1447d252008-02-08 13:03:37 +1100246 nrhosts++;
Chuck Lever1b333c52008-08-27 16:57:23 -0400247
Chuck Lever1b333c52008-08-27 16:57:23 -0400248 dprintk("lockd: nlm_lookup_host created host %s\n",
249 host->h_name);
250
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700251out:
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800252 mutex_unlock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return host;
254}
255
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700256/*
257 * Destroy a host
258 */
259static void
260nlm_destroy_host(struct nlm_host *host)
261{
262 struct rpc_clnt *clnt;
263
264 BUG_ON(!list_empty(&host->h_lockowners));
265 BUG_ON(atomic_read(&host->h_count));
266
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700267 nsm_unmonitor(host);
Chuck Leverc8c23c42008-12-04 14:21:31 -0500268 nsm_release(host->h_nsmhandle);
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700269
Trond Myklebust34f52e32007-06-14 16:40:31 -0400270 clnt = host->h_rpcclnt;
271 if (clnt != NULL)
272 rpc_shutdown_client(clnt);
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700273 kfree(host);
274}
275
Chuck Leverd7d20442008-10-03 12:50:21 -0400276/**
277 * nlmclnt_lookup_host - Find an NLM host handle matching a remote server
278 * @sap: network address of server
279 * @salen: length of server address
280 * @protocol: transport protocol to use
281 * @version: NLM protocol version
282 * @hostname: '\0'-terminated hostname of server
Chuck Lever0cb26592008-12-23 15:21:38 -0500283 * @noresvport: 1 if non-privileged port should be used
Chuck Leverd7d20442008-10-03 12:50:21 -0400284 *
285 * Returns an nlm_host structure that matches the passed-in
286 * [server address, transport protocol, NLM version, server hostname].
287 * If one doesn't already exist in the host cache, a new handle is
288 * created and returned.
Adrian Bunkc5856462006-12-06 20:38:29 -0800289 */
Chuck Leverd7d20442008-10-03 12:50:21 -0400290struct nlm_host *nlmclnt_lookup_host(const struct sockaddr *sap,
291 const size_t salen,
292 const unsigned short protocol,
Chuck Lever0cb26592008-12-23 15:21:38 -0500293 const u32 version,
294 const char *hostname,
295 int noresvport)
Adrian Bunkc5856462006-12-06 20:38:29 -0800296{
Chuck Lever88541c82008-10-03 12:50:14 -0400297 const struct sockaddr source = {
298 .sa_family = AF_UNSPEC,
Chuck Lever2860a022008-08-27 16:57:31 -0400299 };
Chuck Lever7f1ed182008-10-03 12:50:07 -0400300 struct nlm_lookup_host_info ni = {
301 .server = 0,
Chuck Leverd7d20442008-10-03 12:50:21 -0400302 .sap = sap,
303 .salen = salen,
304 .protocol = protocol,
Chuck Lever7f1ed182008-10-03 12:50:07 -0400305 .version = version,
306 .hostname = hostname,
Chuck Leverd7d20442008-10-03 12:50:21 -0400307 .hostname_len = strlen(hostname),
Chuck Lever88541c82008-10-03 12:50:14 -0400308 .src_sap = &source,
309 .src_len = sizeof(source),
Chuck Lever0cb26592008-12-23 15:21:38 -0500310 .noresvport = noresvport,
Chuck Lever7f1ed182008-10-03 12:50:07 -0400311 };
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200312
Chuck Lever7f1ed182008-10-03 12:50:07 -0400313 dprintk("lockd: %s(host='%s', vers=%u, proto=%s)\n", __func__,
314 (hostname ? hostname : "<none>"), version,
Chuck Leverd7d20442008-10-03 12:50:21 -0400315 (protocol == IPPROTO_UDP ? "udp" : "tcp"));
Chuck Lever7f1ed182008-10-03 12:50:07 -0400316
317 return nlm_lookup_host(&ni);
Adrian Bunkc5856462006-12-06 20:38:29 -0800318}
319
Chuck Lever6bfbe8a2008-10-03 12:50:29 -0400320/**
321 * nlmsvc_lookup_host - Find an NLM host handle matching a remote client
322 * @rqstp: incoming NLM request
323 * @hostname: name of client host
324 * @hostname_len: length of client hostname
325 *
326 * Returns an nlm_host structure that matches the [client address,
327 * transport protocol, NLM version, client hostname] of the passed-in
328 * NLM request. If one doesn't already exist in the host cache, a
329 * new handle is created and returned.
330 *
331 * Before possibly creating a new nlm_host, construct a sockaddr
332 * for a specific source address in case the local system has
333 * multiple network addresses. The family of the address in
334 * rq_daddr is guaranteed to be the same as the family of the
335 * address in rq_addr, so it's safe to use the same family for
336 * the source address.
Adrian Bunkc5856462006-12-06 20:38:29 -0800337 */
Chuck Lever6bfbe8a2008-10-03 12:50:29 -0400338struct nlm_host *nlmsvc_lookup_host(const struct svc_rqst *rqstp,
339 const char *hostname,
340 const size_t hostname_len)
Adrian Bunkc5856462006-12-06 20:38:29 -0800341{
Chuck Lever6bfbe8a2008-10-03 12:50:29 -0400342 struct sockaddr_in sin = {
Chuck Lever2860a022008-08-27 16:57:31 -0400343 .sin_family = AF_INET,
Chuck Lever6bfbe8a2008-10-03 12:50:29 -0400344 };
345 struct sockaddr_in6 sin6 = {
346 .sin6_family = AF_INET6,
Chuck Lever2860a022008-08-27 16:57:31 -0400347 };
Chuck Lever7f1ed182008-10-03 12:50:07 -0400348 struct nlm_lookup_host_info ni = {
349 .server = 1,
Chuck Lever88541c82008-10-03 12:50:14 -0400350 .sap = svc_addr(rqstp),
351 .salen = rqstp->rq_addrlen,
Chuck Lever7f1ed182008-10-03 12:50:07 -0400352 .protocol = rqstp->rq_prot,
353 .version = rqstp->rq_vers,
354 .hostname = hostname,
355 .hostname_len = hostname_len,
Chuck Lever6bfbe8a2008-10-03 12:50:29 -0400356 .src_len = rqstp->rq_addrlen,
Chuck Lever7f1ed182008-10-03 12:50:07 -0400357 };
Frank van Maarseveenc98451b2007-07-09 22:25:29 +0200358
Chuck Lever7f1ed182008-10-03 12:50:07 -0400359 dprintk("lockd: %s(host='%*s', vers=%u, proto=%s)\n", __func__,
360 (int)hostname_len, hostname, rqstp->rq_vers,
361 (rqstp->rq_prot == IPPROTO_UDP ? "udp" : "tcp"));
362
Chuck Lever6bfbe8a2008-10-03 12:50:29 -0400363 switch (ni.sap->sa_family) {
364 case AF_INET:
365 sin.sin_addr.s_addr = rqstp->rq_daddr.addr.s_addr;
366 ni.src_sap = (struct sockaddr *)&sin;
367 break;
368 case AF_INET6:
369 ipv6_addr_copy(&sin6.sin6_addr, &rqstp->rq_daddr.addr6);
370 ni.src_sap = (struct sockaddr *)&sin6;
371 break;
372 default:
373 return NULL;
374 }
375
Chuck Lever7f1ed182008-10-03 12:50:07 -0400376 return nlm_lookup_host(&ni);
Adrian Bunkc5856462006-12-06 20:38:29 -0800377}
378
379/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * Create the NLM RPC client for an NLM peer
381 */
382struct rpc_clnt *
383nlm_bind_host(struct nlm_host *host)
384{
385 struct rpc_clnt *clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Chuck Lever1df40b62008-12-04 14:19:53 -0500387 dprintk("lockd: nlm_bind_host %s (%s)\n",
388 host->h_name, host->h_addrbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /* Lock host handle */
Trond Myklebust50467912006-06-09 09:40:24 -0400391 mutex_lock(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 /* If we've already created an RPC client, check whether
394 * RPC rebind is required
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 */
396 if ((clnt = host->h_rpcclnt) != NULL) {
Chuck Lever43118c22005-08-25 16:25:49 -0700397 if (time_after_eq(jiffies, host->h_nextrebind)) {
Chuck Lever35f5a422006-01-03 09:55:50 +0100398 rpc_force_rebind(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
Chuck Lever1b333c52008-08-27 16:57:23 -0400400 dprintk("lockd: next rebind in %lu jiffies\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 host->h_nextrebind - jiffies);
402 }
403 } else {
Trond Myklebust21051ba2007-05-14 16:50:44 -0400404 unsigned long increment = nlmsvc_timeout;
Chuck Levere1ec7892006-08-22 20:06:20 -0400405 struct rpc_timeout timeparms = {
406 .to_initval = increment,
407 .to_increment = increment,
408 .to_maxval = increment * 6UL,
409 .to_retries = 5U,
410 };
411 struct rpc_create_args args = {
412 .protocol = host->h_proto,
Chuck Leverb4ed58f2008-09-03 14:35:39 -0400413 .address = nlm_addr(host),
414 .addrsize = host->h_addrlen,
Chuck Lever90151e62008-09-03 14:35:46 -0400415 .saddress = nlm_srcaddr(host),
Chuck Levere1ec7892006-08-22 20:06:20 -0400416 .timeout = &timeparms,
417 .servername = host->h_name,
418 .program = &nlm_program,
419 .version = host->h_version,
420 .authflavor = RPC_AUTH_UNIX,
Jeff Layton90bd17c2008-02-06 11:34:11 -0500421 .flags = (RPC_CLNT_CREATE_NOPING |
Chuck Levere1ec7892006-08-22 20:06:20 -0400422 RPC_CLNT_CREATE_AUTOBIND),
423 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Jeff Layton90bd17c2008-02-06 11:34:11 -0500425 /*
426 * lockd retries server side blocks automatically so we want
427 * those to be soft RPC calls. Client side calls need to be
428 * hard RPC tasks.
429 */
430 if (!host->h_server)
431 args.flags |= RPC_CLNT_CREATE_HARDRTRY;
Chuck Lever0cb26592008-12-23 15:21:38 -0500432 if (host->h_noresvport)
433 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
Jeff Layton90bd17c2008-02-06 11:34:11 -0500434
Chuck Levere1ec7892006-08-22 20:06:20 -0400435 clnt = rpc_create(&args);
436 if (!IS_ERR(clnt))
437 host->h_rpcclnt = clnt;
438 else {
439 printk("lockd: couldn't create RPC handle for %s\n", host->h_name);
440 clnt = NULL;
441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
Trond Myklebust50467912006-06-09 09:40:24 -0400444 mutex_unlock(&host->h_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
448/*
449 * Force a portmap lookup of the remote lockd port
450 */
451void
452nlm_rebind_host(struct nlm_host *host)
453{
454 dprintk("lockd: rebind host %s\n", host->h_name);
455 if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) {
Chuck Lever35f5a422006-01-03 09:55:50 +0100456 rpc_force_rebind(host->h_rpcclnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
458 }
459}
460
461/*
462 * Increment NLM host count
463 */
464struct nlm_host * nlm_get_host(struct nlm_host *host)
465{
466 if (host) {
467 dprintk("lockd: get host %s\n", host->h_name);
468 atomic_inc(&host->h_count);
469 host->h_expires = jiffies + NLM_HOST_EXPIRE;
470 }
471 return host;
472}
473
474/*
475 * Release NLM host after use
476 */
477void nlm_release_host(struct nlm_host *host)
478{
479 if (host != NULL) {
480 dprintk("lockd: release host %s\n", host->h_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 BUG_ON(atomic_read(&host->h_count) < 0);
Trond Myklebust4c060b52006-03-20 13:44:41 -0500482 if (atomic_dec_and_test(&host->h_count)) {
483 BUG_ON(!list_empty(&host->h_lockowners));
484 BUG_ON(!list_empty(&host->h_granted));
485 BUG_ON(!list_empty(&host->h_reclaim));
486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488}
489
490/*
Olaf Kirchcf712c22006-10-04 02:15:52 -0700491 * We were notified that the host indicated by address &sin
492 * has rebooted.
493 * Release all resources held by that peer.
494 */
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700495void nlm_host_rebooted(const struct sockaddr_in *sin,
Chuck Lever48df0202007-11-01 16:56:53 -0400496 const char *hostname,
497 unsigned int hostname_len,
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700498 u32 new_state)
Olaf Kirchcf712c22006-10-04 02:15:52 -0700499{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700500 struct hlist_head *chain;
501 struct hlist_node *pos;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700502 struct nsm_handle *nsm;
Olaf Kirch0cea3272006-10-04 02:15:56 -0700503 struct nlm_host *host;
Olaf Kirchcf712c22006-10-04 02:15:52 -0700504
Chuck Levere0180402008-09-03 14:36:23 -0400505 nsm = nsm_find((struct sockaddr *)sin, sizeof(*sin),
506 hostname, hostname_len, 0);
Chuck Lever1b333c52008-08-27 16:57:23 -0400507 if (nsm == NULL) {
508 dprintk("lockd: never saw rebooted peer '%.*s' before\n",
509 hostname_len, hostname);
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700510 return;
Chuck Lever1b333c52008-08-27 16:57:23 -0400511 }
512
513 dprintk("lockd: nlm_host_rebooted(%.*s, %s)\n",
514 hostname_len, hostname, nsm->sm_addrbuf);
Olaf Kirchdb4e4c92006-10-04 02:15:52 -0700515
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700516 /* When reclaiming locks on this peer, make sure that
517 * we set up a new notification */
518 nsm->sm_monitored = 0;
519
520 /* Mark all hosts tied to this NSM state as having rebooted.
521 * We run the loop repeatedly, because we drop the host table
522 * lock for this.
523 * To avoid processing a host several times, we match the nsmstate.
524 */
525again: mutex_lock(&nlm_host_mutex);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700526 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
527 hlist_for_each_entry(host, pos, chain, h_hash) {
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700528 if (host->h_nsmhandle == nsm
529 && host->h_nsmstate != new_state) {
530 host->h_nsmstate = new_state;
531 host->h_state++;
532
533 nlm_get_host(host);
534 mutex_unlock(&nlm_host_mutex);
535
536 if (host->h_server) {
537 /* We're server for this guy, just ditch
538 * all the locks he held. */
539 nlmsvc_free_host_resources(host);
540 } else {
541 /* He's the server, initiate lock recovery. */
542 nlmclnt_recovery(host);
543 }
544
545 nlm_release_host(host);
546 goto again;
547 }
548 }
Olaf Kirchcf712c22006-10-04 02:15:52 -0700549 }
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700550
551 mutex_unlock(&nlm_host_mutex);
Olaf Kirchcf712c22006-10-04 02:15:52 -0700552}
553
554/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * Shut down the hosts module.
556 * Note that this routine is called only at server shutdown time.
557 */
558void
559nlm_shutdown_hosts(void)
560{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700561 struct hlist_head *chain;
562 struct hlist_node *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 struct nlm_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 dprintk("lockd: shutting down host module\n");
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800566 mutex_lock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /* First, make all hosts eligible for gc */
569 dprintk("lockd: nuking all hosts...\n");
Olaf Kirch0cea3272006-10-04 02:15:56 -0700570 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
Jeff Laytond801b862008-01-29 10:30:55 -0500571 hlist_for_each_entry(host, pos, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 host->h_expires = jiffies - 1;
Jeff Laytond801b862008-01-29 10:30:55 -0500573 if (host->h_rpcclnt) {
574 rpc_shutdown_client(host->h_rpcclnt);
575 host->h_rpcclnt = NULL;
576 }
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
580 /* Then, perform a garbage collection pass */
581 nlm_gc_hosts();
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800582 mutex_unlock(&nlm_host_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /* complain if any hosts are left */
585 if (nrhosts) {
586 printk(KERN_WARNING "lockd: couldn't shutdown host module!\n");
587 dprintk("lockd: %d hosts left:\n", nrhosts);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700588 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
589 hlist_for_each_entry(host, pos, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 dprintk(" %s (cnt %d use %d exp %ld)\n",
591 host->h_name, atomic_read(&host->h_count),
592 host->h_inuse, host->h_expires);
593 }
594 }
595 }
596}
597
598/*
599 * Garbage collect any unused NLM hosts.
600 * This GC combines reference counting for async operations with
601 * mark & sweep for resources held by remote clients.
602 */
603static void
604nlm_gc_hosts(void)
605{
Olaf Kirch0cea3272006-10-04 02:15:56 -0700606 struct hlist_head *chain;
607 struct hlist_node *pos, *next;
608 struct nlm_host *host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 dprintk("lockd: host garbage collection\n");
Olaf Kirch0cea3272006-10-04 02:15:56 -0700611 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
612 hlist_for_each_entry(host, pos, chain, h_hash)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 host->h_inuse = 0;
614 }
615
616 /* Mark all hosts that hold locks, blocks or shares */
617 nlmsvc_mark_resources();
618
Olaf Kirch0cea3272006-10-04 02:15:56 -0700619 for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) {
620 hlist_for_each_entry_safe(host, pos, next, chain, h_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 if (atomic_read(&host->h_count) || host->h_inuse
622 || time_before(jiffies, host->h_expires)) {
623 dprintk("nlm_gc_hosts skipping %s (cnt %d use %d exp %ld)\n",
624 host->h_name, atomic_read(&host->h_count),
625 host->h_inuse, host->h_expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 continue;
627 }
628 dprintk("lockd: delete host %s\n", host->h_name);
Olaf Kirch0cea3272006-10-04 02:15:56 -0700629 hlist_del_init(&host->h_hash);
Olaf Kirch977faf32006-10-04 02:15:51 -0700630
Olaf Kirchc53c1bb2006-10-04 02:16:00 -0700631 nlm_destroy_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 nrhosts--;
633 }
634 }
635
636 next_gc = jiffies + NLM_HOST_COLLECT;
637}
638
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700639
640/*
641 * Manage NSM handles
642 */
643static LIST_HEAD(nsm_handles);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500644static DEFINE_SPINLOCK(nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700645
Chuck Levere0180402008-09-03 14:36:23 -0400646static struct nsm_handle *nsm_find(const struct sockaddr *sap,
647 const size_t salen,
Chuck Leverbc48e4d2008-09-03 14:36:16 -0400648 const char *hostname,
649 const size_t hostname_len,
650 const int create)
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700651{
652 struct nsm_handle *nsm = NULL;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500653 struct nsm_handle *pos;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700654
Chuck Levere0180402008-09-03 14:36:23 -0400655 if (!sap)
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700656 return NULL;
657
658 if (hostname && memchr(hostname, '/', hostname_len) != NULL) {
659 if (printk_ratelimit()) {
660 printk(KERN_WARNING "Invalid hostname \"%.*s\" "
661 "in NFS lock request\n",
Chuck Leverbc48e4d2008-09-03 14:36:16 -0400662 (int)hostname_len, hostname);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700663 }
664 return NULL;
665 }
666
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500667retry:
668 spin_lock(&nsm_lock);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500669 list_for_each_entry(pos, &nsm_handles, sm_link) {
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700670
Olaf Kirchabd1f502006-10-04 02:16:01 -0700671 if (hostname && nsm_use_hostnames) {
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500672 if (strlen(pos->sm_name) != hostname_len
673 || memcmp(pos->sm_name, hostname, hostname_len))
Olaf Kirchabd1f502006-10-04 02:16:01 -0700674 continue;
Chuck Levere0180402008-09-03 14:36:23 -0400675 } else if (!nlm_cmp_addr(nsm_addr(pos), sap))
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700676 continue;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500677 atomic_inc(&pos->sm_count);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500678 kfree(nsm);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500679 nsm = pos;
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500680 goto found;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700681 }
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500682 if (nsm) {
683 list_add(&nsm->sm_link, &nsm_handles);
684 goto found;
685 }
686 spin_unlock(&nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700687
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500688 if (!create)
689 return NULL;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700690
691 nsm = kzalloc(sizeof(*nsm) + hostname_len + 1, GFP_KERNEL);
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500692 if (nsm == NULL)
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500693 return NULL;
694
Chuck Levere0180402008-09-03 14:36:23 -0400695 memcpy(nsm_addr(nsm), sap, salen);
696 nsm->sm_addrlen = salen;
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500697 nsm->sm_name = (char *) (nsm + 1);
698 memcpy(nsm->sm_name, hostname, hostname_len);
699 nsm->sm_name[hostname_len] = '\0';
Chuck Lever1b333c52008-08-27 16:57:23 -0400700 nlm_display_address((struct sockaddr *)&nsm->sm_addr,
701 nsm->sm_addrbuf, sizeof(nsm->sm_addrbuf));
J. Bruce Fieldsa95e56e2008-02-20 15:27:31 -0500702 atomic_set(&nsm->sm_count, 1);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500703 goto retry;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700704
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500705found:
706 spin_unlock(&nsm_lock);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700707 return nsm;
708}
709
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700710/*
711 * Release an NSM handle
712 */
Chuck Leverc8c23c42008-12-04 14:21:31 -0500713static void nsm_release(struct nsm_handle *nsm)
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700714{
715 if (!nsm)
716 return;
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500717 if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) {
J. Bruce Fields164f98a2008-02-20 14:02:47 -0500718 list_del(&nsm->sm_link);
J. Bruce Fieldsd8421202008-02-20 15:40:15 -0500719 spin_unlock(&nsm_lock);
J. Bruce Fields164f98a2008-02-20 14:02:47 -0500720 kfree(nsm);
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700721 }
722}