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