Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/slab.h> |
| 13 | #include <linux/in.h> |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 14 | #include <linux/in6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/sunrpc/clnt.h> |
| 16 | #include <linux/sunrpc/svc.h> |
| 17 | #include <linux/lockd/lockd.h> |
| 18 | #include <linux/lockd/sm_inter.h> |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 19 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 21 | #include <net/ipv6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #define NLMDBG_FACILITY NLMDBG_HOSTCACHE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #define NLM_HOST_NRHASH 32 |
| 25 | #define NLM_ADDRHASH(addr) (ntohl(addr) & (NLM_HOST_NRHASH-1)) |
| 26 | #define NLM_HOST_REBIND (60 * HZ) |
NeilBrown | 1447d25 | 2008-02-08 13:03:37 +1100 | [diff] [blame] | 27 | #define NLM_HOST_EXPIRE (300 * HZ) |
| 28 | #define NLM_HOST_COLLECT (120 * HZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 30 | static struct hlist_head nlm_hosts[NLM_HOST_NRHASH]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static unsigned long next_gc; |
| 32 | static int nrhosts; |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 33 | static DEFINE_MUTEX(nlm_host_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | |
| 36 | static void nlm_gc_hosts(void); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 37 | static struct nsm_handle * __nsm_find(const struct sockaddr_in *, |
Chuck Lever | 48df020a | 2007-11-01 16:56:53 -0400 | [diff] [blame] | 38 | const char *, unsigned int, int); |
Adrian Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 39 | static struct nsm_handle * nsm_find(const struct sockaddr_in *sin, |
| 40 | const char *hostname, |
Chuck Lever | 48df020a | 2007-11-01 16:56:53 -0400 | [diff] [blame] | 41 | unsigned int hostname_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 43 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | /* |
| 70 | * Common host lookup routine for server & client |
| 71 | */ |
Chuck Lever | eb18860 | 2008-03-14 14:18:37 -0400 | [diff] [blame] | 72 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 79 | struct hlist_head *chain; |
| 80 | struct hlist_node *pos; |
| 81 | struct nlm_host *host; |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 82 | struct nsm_handle *nsm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | int hash; |
| 84 | |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 85 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | hash = NLM_ADDRHASH(sin->sin_addr.s_addr); |
| 91 | |
| 92 | /* Lock hash table */ |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 93 | mutex_lock(&nlm_host_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
| 95 | if (time_after_eq(jiffies, next_gc)) |
| 96 | nlm_gc_hosts(); |
| 97 | |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 98 | /* 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 Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 105 | chain = &nlm_hosts[hash]; |
| 106 | hlist_for_each_entry(host, pos, chain, h_hash) { |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 107 | if (!nlm_cmp_addr(&host->h_addr, sin)) |
| 108 | continue; |
| 109 | |
| 110 | /* See if we have an NSM handle for this client */ |
NeilBrown | 6b54dae | 2006-10-04 02:16:15 -0700 | [diff] [blame] | 111 | if (!nsm) |
| 112 | nsm = host->h_nsmhandle; |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | 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 Maarseveen | c98451b | 2007-07-09 22:25:29 +0200 | [diff] [blame] | 120 | if (!nlm_cmp_addr(&host->h_saddr, ssin)) |
| 121 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 123 | /* Move to head of hash chain. */ |
| 124 | hlist_del(&host->h_hash); |
| 125 | hlist_add_head(&host->h_hash, chain); |
| 126 | |
Olaf Kirch | f0737a3 | 2006-10-04 02:15:54 -0700 | [diff] [blame] | 127 | nlm_get_host(host); |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 128 | dprintk("lockd: nlm_lookup_host found host %s (%s)\n", |
| 129 | host->h_name, host->h_addrbuf); |
Olaf Kirch | f0737a3 | 2006-10-04 02:15:54 -0700 | [diff] [blame] | 130 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
Chuck Lever | c2526f4 | 2008-08-27 16:57:15 -0400 | [diff] [blame] | 132 | |
| 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 | */ |
NeilBrown | 6b54dae | 2006-10-04 02:16:15 -0700 | [diff] [blame] | 137 | if (nsm) |
| 138 | atomic_inc(&nsm->sm_count); |
Chuck Lever | c2526f4 | 2008-08-27 16:57:15 -0400 | [diff] [blame] | 139 | else { |
| 140 | host = NULL; |
| 141 | nsm = nsm_find(sin, hostname, hostname_len); |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 142 | if (!nsm) { |
| 143 | dprintk("lockd: nlm_lookup_host failed; " |
| 144 | "no nsm handle\n"); |
Chuck Lever | c2526f4 | 2008-08-27 16:57:15 -0400 | [diff] [blame] | 145 | goto out; |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 146 | } |
Chuck Lever | c2526f4 | 2008-08-27 16:57:15 -0400 | [diff] [blame] | 147 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
Panagiotis Issaris | f8314dc | 2006-09-27 01:49:37 -0700 | [diff] [blame] | 149 | host = kzalloc(sizeof(*host), GFP_KERNEL); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 150 | if (!host) { |
| 151 | nsm_release(nsm); |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 152 | dprintk("lockd: nlm_lookup_host failed; no memory\n"); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 153 | goto out; |
| 154 | } |
| 155 | host->h_name = nsm->sm_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | host->h_addr = *sin; |
| 157 | host->h_addr.sin_port = 0; /* ouch! */ |
Frank van Maarseveen | c98451b | 2007-07-09 22:25:29 +0200 | [diff] [blame] | 158 | host->h_saddr = *ssin; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | host->h_version = version; |
| 160 | host->h_proto = proto; |
| 161 | host->h_rpcclnt = NULL; |
Trond Myklebust | 5046791 | 2006-06-09 09:40:24 -0400 | [diff] [blame] | 162 | mutex_init(&host->h_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | 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 Myklebust | 28df955 | 2006-06-09 09:40:27 -0400 | [diff] [blame] | 167 | init_rwsem(&host->h_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | host->h_state = 0; /* pseudo NSM state */ |
| 169 | host->h_nsmstate = 0; /* real NSM state */ |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 170 | host->h_nsmhandle = nsm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | host->h_server = server; |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 172 | hlist_add_head(&host->h_hash, chain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | INIT_LIST_HEAD(&host->h_lockowners); |
| 174 | spin_lock_init(&host->h_lock); |
Christoph Hellwig | 26bcbf9 | 2006-03-20 13:44:40 -0500 | [diff] [blame] | 175 | INIT_LIST_HEAD(&host->h_granted); |
| 176 | INIT_LIST_HEAD(&host->h_reclaim); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
NeilBrown | 1447d25 | 2008-02-08 13:03:37 +1100 | [diff] [blame] | 178 | nrhosts++; |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 179 | |
| 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 Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 188 | out: |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 189 | mutex_unlock(&nlm_host_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | return host; |
| 191 | } |
| 192 | |
Olaf Kirch | c53c1bb | 2006-10-04 02:16:00 -0700 | [diff] [blame] | 193 | /* |
| 194 | * Destroy a host |
| 195 | */ |
| 196 | static void |
| 197 | nlm_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 Myklebust | 34f52e3 | 2007-06-14 16:40:31 -0400 | [diff] [blame] | 209 | clnt = host->h_rpcclnt; |
| 210 | if (clnt != NULL) |
| 211 | rpc_shutdown_client(clnt); |
Olaf Kirch | c53c1bb | 2006-10-04 02:16:00 -0700 | [diff] [blame] | 212 | kfree(host); |
| 213 | } |
| 214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | /* |
Adrian Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 216 | * Find an NLM server handle in the cache. If there is none, create it. |
| 217 | */ |
Chuck Lever | eb18860 | 2008-03-14 14:18:37 -0400 | [diff] [blame] | 218 | struct 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 Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 222 | { |
Chuck Lever | 2860a02 | 2008-08-27 16:57:31 -0400 | [diff] [blame^] | 223 | const struct sockaddr_in source = { |
| 224 | .sin_family = AF_UNSPEC, |
| 225 | }; |
Frank van Maarseveen | c98451b | 2007-07-09 22:25:29 +0200 | [diff] [blame] | 226 | |
Adrian Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 227 | return nlm_lookup_host(0, sin, proto, version, |
Chuck Lever | 2860a02 | 2008-08-27 16:57:31 -0400 | [diff] [blame^] | 228 | hostname, hostname_len, &source); |
Adrian Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | /* |
| 232 | * Find an NLM client handle in the cache. If there is none, create it. |
| 233 | */ |
| 234 | struct nlm_host * |
| 235 | nlmsvc_lookup_host(struct svc_rqst *rqstp, |
Chuck Lever | 48df020a | 2007-11-01 16:56:53 -0400 | [diff] [blame] | 236 | const char *hostname, unsigned int hostname_len) |
Adrian Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 237 | { |
Chuck Lever | 2860a02 | 2008-08-27 16:57:31 -0400 | [diff] [blame^] | 238 | const struct sockaddr_in source = { |
| 239 | .sin_family = AF_INET, |
| 240 | .sin_addr = rqstp->rq_daddr.addr, |
| 241 | }; |
Frank van Maarseveen | c98451b | 2007-07-09 22:25:29 +0200 | [diff] [blame] | 242 | |
Chuck Lever | 27459f0 | 2007-02-12 00:53:34 -0800 | [diff] [blame] | 243 | return nlm_lookup_host(1, svc_addr_in(rqstp), |
Adrian Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 244 | rqstp->rq_prot, rqstp->rq_vers, |
Chuck Lever | 2860a02 | 2008-08-27 16:57:31 -0400 | [diff] [blame^] | 245 | hostname, hostname_len, &source); |
Adrian Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 246 | } |
| 247 | |
| 248 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | * Create the NLM RPC client for an NLM peer |
| 250 | */ |
| 251 | struct rpc_clnt * |
| 252 | nlm_bind_host(struct nlm_host *host) |
| 253 | { |
| 254 | struct rpc_clnt *clnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 256 | dprintk("lockd: nlm_bind_host %s (%s), my addr=%s\n", |
| 257 | host->h_name, host->h_addrbuf, host->h_saddrbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
| 259 | /* Lock host handle */ |
Trond Myklebust | 5046791 | 2006-06-09 09:40:24 -0400 | [diff] [blame] | 260 | mutex_lock(&host->h_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
| 262 | /* If we've already created an RPC client, check whether |
| 263 | * RPC rebind is required |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | */ |
| 265 | if ((clnt = host->h_rpcclnt) != NULL) { |
Chuck Lever | 43118c2 | 2005-08-25 16:25:49 -0700 | [diff] [blame] | 266 | if (time_after_eq(jiffies, host->h_nextrebind)) { |
Chuck Lever | 35f5a42 | 2006-01-03 09:55:50 +0100 | [diff] [blame] | 267 | rpc_force_rebind(clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | host->h_nextrebind = jiffies + NLM_HOST_REBIND; |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 269 | dprintk("lockd: next rebind in %lu jiffies\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | host->h_nextrebind - jiffies); |
| 271 | } |
| 272 | } else { |
Trond Myklebust | 21051ba | 2007-05-14 16:50:44 -0400 | [diff] [blame] | 273 | unsigned long increment = nlmsvc_timeout; |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 274 | struct rpc_timeout timeparms = { |
| 275 | .to_initval = increment, |
| 276 | .to_increment = increment, |
| 277 | .to_maxval = increment * 6UL, |
| 278 | .to_retries = 5U, |
| 279 | }; |
| 280 | struct rpc_create_args args = { |
| 281 | .protocol = host->h_proto, |
| 282 | .address = (struct sockaddr *)&host->h_addr, |
| 283 | .addrsize = sizeof(host->h_addr), |
Frank van Maarseveen | c98451b | 2007-07-09 22:25:29 +0200 | [diff] [blame] | 284 | .saddress = (struct sockaddr *)&host->h_saddr, |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 285 | .timeout = &timeparms, |
| 286 | .servername = host->h_name, |
| 287 | .program = &nlm_program, |
| 288 | .version = host->h_version, |
| 289 | .authflavor = RPC_AUTH_UNIX, |
Jeff Layton | 90bd17c | 2008-02-06 11:34:11 -0500 | [diff] [blame] | 290 | .flags = (RPC_CLNT_CREATE_NOPING | |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 291 | RPC_CLNT_CREATE_AUTOBIND), |
| 292 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Jeff Layton | 90bd17c | 2008-02-06 11:34:11 -0500 | [diff] [blame] | 294 | /* |
| 295 | * lockd retries server side blocks automatically so we want |
| 296 | * those to be soft RPC calls. Client side calls need to be |
| 297 | * hard RPC tasks. |
| 298 | */ |
| 299 | if (!host->h_server) |
| 300 | args.flags |= RPC_CLNT_CREATE_HARDRTRY; |
| 301 | |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 302 | clnt = rpc_create(&args); |
| 303 | if (!IS_ERR(clnt)) |
| 304 | host->h_rpcclnt = clnt; |
| 305 | else { |
| 306 | printk("lockd: couldn't create RPC handle for %s\n", host->h_name); |
| 307 | clnt = NULL; |
| 308 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Trond Myklebust | 5046791 | 2006-06-09 09:40:24 -0400 | [diff] [blame] | 311 | mutex_unlock(&host->h_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | return clnt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | /* |
| 316 | * Force a portmap lookup of the remote lockd port |
| 317 | */ |
| 318 | void |
| 319 | nlm_rebind_host(struct nlm_host *host) |
| 320 | { |
| 321 | dprintk("lockd: rebind host %s\n", host->h_name); |
| 322 | if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) { |
Chuck Lever | 35f5a42 | 2006-01-03 09:55:50 +0100 | [diff] [blame] | 323 | rpc_force_rebind(host->h_rpcclnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | host->h_nextrebind = jiffies + NLM_HOST_REBIND; |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | /* |
| 329 | * Increment NLM host count |
| 330 | */ |
| 331 | struct nlm_host * nlm_get_host(struct nlm_host *host) |
| 332 | { |
| 333 | if (host) { |
| 334 | dprintk("lockd: get host %s\n", host->h_name); |
| 335 | atomic_inc(&host->h_count); |
| 336 | host->h_expires = jiffies + NLM_HOST_EXPIRE; |
| 337 | } |
| 338 | return host; |
| 339 | } |
| 340 | |
| 341 | /* |
| 342 | * Release NLM host after use |
| 343 | */ |
| 344 | void nlm_release_host(struct nlm_host *host) |
| 345 | { |
| 346 | if (host != NULL) { |
| 347 | dprintk("lockd: release host %s\n", host->h_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | BUG_ON(atomic_read(&host->h_count) < 0); |
Trond Myklebust | 4c060b5 | 2006-03-20 13:44:41 -0500 | [diff] [blame] | 349 | if (atomic_dec_and_test(&host->h_count)) { |
| 350 | BUG_ON(!list_empty(&host->h_lockowners)); |
| 351 | BUG_ON(!list_empty(&host->h_granted)); |
| 352 | BUG_ON(!list_empty(&host->h_reclaim)); |
| 353 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
| 355 | } |
| 356 | |
| 357 | /* |
Olaf Kirch | cf712c2 | 2006-10-04 02:15:52 -0700 | [diff] [blame] | 358 | * We were notified that the host indicated by address &sin |
| 359 | * has rebooted. |
| 360 | * Release all resources held by that peer. |
| 361 | */ |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 362 | void nlm_host_rebooted(const struct sockaddr_in *sin, |
Chuck Lever | 48df020a | 2007-11-01 16:56:53 -0400 | [diff] [blame] | 363 | const char *hostname, |
| 364 | unsigned int hostname_len, |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 365 | u32 new_state) |
Olaf Kirch | cf712c2 | 2006-10-04 02:15:52 -0700 | [diff] [blame] | 366 | { |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 367 | struct hlist_head *chain; |
| 368 | struct hlist_node *pos; |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 369 | struct nsm_handle *nsm; |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 370 | struct nlm_host *host; |
Olaf Kirch | cf712c2 | 2006-10-04 02:15:52 -0700 | [diff] [blame] | 371 | |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 372 | /* Find the NSM handle for this peer */ |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 373 | nsm = __nsm_find(sin, hostname, hostname_len, 0); |
| 374 | if (nsm == NULL) { |
| 375 | dprintk("lockd: never saw rebooted peer '%.*s' before\n", |
| 376 | hostname_len, hostname); |
Olaf Kirch | db4e4c9 | 2006-10-04 02:15:52 -0700 | [diff] [blame] | 377 | return; |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | dprintk("lockd: nlm_host_rebooted(%.*s, %s)\n", |
| 381 | hostname_len, hostname, nsm->sm_addrbuf); |
Olaf Kirch | db4e4c9 | 2006-10-04 02:15:52 -0700 | [diff] [blame] | 382 | |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 383 | /* When reclaiming locks on this peer, make sure that |
| 384 | * we set up a new notification */ |
| 385 | nsm->sm_monitored = 0; |
| 386 | |
| 387 | /* Mark all hosts tied to this NSM state as having rebooted. |
| 388 | * We run the loop repeatedly, because we drop the host table |
| 389 | * lock for this. |
| 390 | * To avoid processing a host several times, we match the nsmstate. |
| 391 | */ |
| 392 | again: mutex_lock(&nlm_host_mutex); |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 393 | for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) { |
| 394 | hlist_for_each_entry(host, pos, chain, h_hash) { |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 395 | if (host->h_nsmhandle == nsm |
| 396 | && host->h_nsmstate != new_state) { |
| 397 | host->h_nsmstate = new_state; |
| 398 | host->h_state++; |
| 399 | |
| 400 | nlm_get_host(host); |
| 401 | mutex_unlock(&nlm_host_mutex); |
| 402 | |
| 403 | if (host->h_server) { |
| 404 | /* We're server for this guy, just ditch |
| 405 | * all the locks he held. */ |
| 406 | nlmsvc_free_host_resources(host); |
| 407 | } else { |
| 408 | /* He's the server, initiate lock recovery. */ |
| 409 | nlmclnt_recovery(host); |
| 410 | } |
| 411 | |
| 412 | nlm_release_host(host); |
| 413 | goto again; |
| 414 | } |
| 415 | } |
Olaf Kirch | cf712c2 | 2006-10-04 02:15:52 -0700 | [diff] [blame] | 416 | } |
Olaf Kirch | 5c8dd29 | 2006-10-04 02:15:55 -0700 | [diff] [blame] | 417 | |
| 418 | mutex_unlock(&nlm_host_mutex); |
Olaf Kirch | cf712c2 | 2006-10-04 02:15:52 -0700 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | * Shut down the hosts module. |
| 423 | * Note that this routine is called only at server shutdown time. |
| 424 | */ |
| 425 | void |
| 426 | nlm_shutdown_hosts(void) |
| 427 | { |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 428 | struct hlist_head *chain; |
| 429 | struct hlist_node *pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | struct nlm_host *host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
| 432 | dprintk("lockd: shutting down host module\n"); |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 433 | mutex_lock(&nlm_host_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
| 435 | /* First, make all hosts eligible for gc */ |
| 436 | dprintk("lockd: nuking all hosts...\n"); |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 437 | for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) { |
Jeff Layton | d801b86 | 2008-01-29 10:30:55 -0500 | [diff] [blame] | 438 | hlist_for_each_entry(host, pos, chain, h_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | host->h_expires = jiffies - 1; |
Jeff Layton | d801b86 | 2008-01-29 10:30:55 -0500 | [diff] [blame] | 440 | if (host->h_rpcclnt) { |
| 441 | rpc_shutdown_client(host->h_rpcclnt); |
| 442 | host->h_rpcclnt = NULL; |
| 443 | } |
| 444 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | /* Then, perform a garbage collection pass */ |
| 448 | nlm_gc_hosts(); |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 449 | mutex_unlock(&nlm_host_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
| 451 | /* complain if any hosts are left */ |
| 452 | if (nrhosts) { |
| 453 | printk(KERN_WARNING "lockd: couldn't shutdown host module!\n"); |
| 454 | dprintk("lockd: %d hosts left:\n", nrhosts); |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 455 | for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) { |
| 456 | hlist_for_each_entry(host, pos, chain, h_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | dprintk(" %s (cnt %d use %d exp %ld)\n", |
| 458 | host->h_name, atomic_read(&host->h_count), |
| 459 | host->h_inuse, host->h_expires); |
| 460 | } |
| 461 | } |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | /* |
| 466 | * Garbage collect any unused NLM hosts. |
| 467 | * This GC combines reference counting for async operations with |
| 468 | * mark & sweep for resources held by remote clients. |
| 469 | */ |
| 470 | static void |
| 471 | nlm_gc_hosts(void) |
| 472 | { |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 473 | struct hlist_head *chain; |
| 474 | struct hlist_node *pos, *next; |
| 475 | struct nlm_host *host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
| 477 | dprintk("lockd: host garbage collection\n"); |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 478 | for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) { |
| 479 | hlist_for_each_entry(host, pos, chain, h_hash) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | host->h_inuse = 0; |
| 481 | } |
| 482 | |
| 483 | /* Mark all hosts that hold locks, blocks or shares */ |
| 484 | nlmsvc_mark_resources(); |
| 485 | |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 486 | for (chain = nlm_hosts; chain < nlm_hosts + NLM_HOST_NRHASH; ++chain) { |
| 487 | hlist_for_each_entry_safe(host, pos, next, chain, h_hash) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | if (atomic_read(&host->h_count) || host->h_inuse |
| 489 | || time_before(jiffies, host->h_expires)) { |
| 490 | dprintk("nlm_gc_hosts skipping %s (cnt %d use %d exp %ld)\n", |
| 491 | host->h_name, atomic_read(&host->h_count), |
| 492 | host->h_inuse, host->h_expires); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | continue; |
| 494 | } |
| 495 | dprintk("lockd: delete host %s\n", host->h_name); |
Olaf Kirch | 0cea327 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 496 | hlist_del_init(&host->h_hash); |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 497 | |
Olaf Kirch | c53c1bb | 2006-10-04 02:16:00 -0700 | [diff] [blame] | 498 | nlm_destroy_host(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | nrhosts--; |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | next_gc = jiffies + NLM_HOST_COLLECT; |
| 504 | } |
| 505 | |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 506 | |
| 507 | /* |
| 508 | * Manage NSM handles |
| 509 | */ |
| 510 | static LIST_HEAD(nsm_handles); |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 511 | static DEFINE_SPINLOCK(nsm_lock); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 512 | |
| 513 | static struct nsm_handle * |
| 514 | __nsm_find(const struct sockaddr_in *sin, |
Chuck Lever | 48df020a | 2007-11-01 16:56:53 -0400 | [diff] [blame] | 515 | const char *hostname, unsigned int hostname_len, |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 516 | int create) |
| 517 | { |
| 518 | struct nsm_handle *nsm = NULL; |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 519 | struct nsm_handle *pos; |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 520 | |
| 521 | if (!sin) |
| 522 | return NULL; |
| 523 | |
| 524 | if (hostname && memchr(hostname, '/', hostname_len) != NULL) { |
| 525 | if (printk_ratelimit()) { |
| 526 | printk(KERN_WARNING "Invalid hostname \"%.*s\" " |
| 527 | "in NFS lock request\n", |
| 528 | hostname_len, hostname); |
| 529 | } |
| 530 | return NULL; |
| 531 | } |
| 532 | |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 533 | retry: |
| 534 | spin_lock(&nsm_lock); |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 535 | list_for_each_entry(pos, &nsm_handles, sm_link) { |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 536 | |
Olaf Kirch | abd1f50 | 2006-10-04 02:16:01 -0700 | [diff] [blame] | 537 | if (hostname && nsm_use_hostnames) { |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 538 | if (strlen(pos->sm_name) != hostname_len |
| 539 | || memcmp(pos->sm_name, hostname, hostname_len)) |
Olaf Kirch | abd1f50 | 2006-10-04 02:16:01 -0700 | [diff] [blame] | 540 | continue; |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 541 | } else if (!nlm_cmp_addr(&pos->sm_addr, sin)) |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 542 | continue; |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 543 | atomic_inc(&pos->sm_count); |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 544 | kfree(nsm); |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 545 | nsm = pos; |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 546 | goto found; |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 547 | } |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 548 | if (nsm) { |
| 549 | list_add(&nsm->sm_link, &nsm_handles); |
| 550 | goto found; |
| 551 | } |
| 552 | spin_unlock(&nsm_lock); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 553 | |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 554 | if (!create) |
| 555 | return NULL; |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 556 | |
| 557 | nsm = kzalloc(sizeof(*nsm) + hostname_len + 1, GFP_KERNEL); |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 558 | if (nsm == NULL) |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 559 | return NULL; |
| 560 | |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 561 | nsm->sm_addr = *sin; |
| 562 | nsm->sm_name = (char *) (nsm + 1); |
| 563 | memcpy(nsm->sm_name, hostname, hostname_len); |
| 564 | nsm->sm_name[hostname_len] = '\0'; |
Chuck Lever | 1b333c5 | 2008-08-27 16:57:23 -0400 | [diff] [blame] | 565 | nlm_display_address((struct sockaddr *)&nsm->sm_addr, |
| 566 | nsm->sm_addrbuf, sizeof(nsm->sm_addrbuf)); |
J. Bruce Fields | a95e56e | 2008-02-20 15:27:31 -0500 | [diff] [blame] | 567 | atomic_set(&nsm->sm_count, 1); |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 568 | goto retry; |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 569 | |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 570 | found: |
| 571 | spin_unlock(&nsm_lock); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 572 | return nsm; |
| 573 | } |
| 574 | |
Adrian Bunk | c585646 | 2006-12-06 20:38:29 -0800 | [diff] [blame] | 575 | static struct nsm_handle * |
Chuck Lever | 48df020a | 2007-11-01 16:56:53 -0400 | [diff] [blame] | 576 | nsm_find(const struct sockaddr_in *sin, const char *hostname, |
| 577 | unsigned int hostname_len) |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 578 | { |
| 579 | return __nsm_find(sin, hostname, hostname_len, 1); |
| 580 | } |
| 581 | |
| 582 | /* |
| 583 | * Release an NSM handle |
| 584 | */ |
| 585 | void |
| 586 | nsm_release(struct nsm_handle *nsm) |
| 587 | { |
| 588 | if (!nsm) |
| 589 | return; |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 590 | if (atomic_dec_and_lock(&nsm->sm_count, &nsm_lock)) { |
J. Bruce Fields | 164f98a | 2008-02-20 14:02:47 -0500 | [diff] [blame] | 591 | list_del(&nsm->sm_link); |
J. Bruce Fields | d842120 | 2008-02-20 15:40:15 -0500 | [diff] [blame] | 592 | spin_unlock(&nsm_lock); |
J. Bruce Fields | 164f98a | 2008-02-20 14:02:47 -0500 | [diff] [blame] | 593 | kfree(nsm); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 594 | } |
| 595 | } |