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