[PATCH] Fix bugs in analog tv i2c-helper chipset drivers
[linux-2.6/history.git] / fs / lockd / host.c
blobd3077bfba6831c7bb11bb6e78da6fee21f4fe293
1 /*
2 * linux/fs/lockd/host.c
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.
8 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
9 */
11 #include <linux/types.h>
12 #include <linux/sched.h>
13 #include <linux/slab.h>
14 #include <linux/in.h>
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>
21 #define NLMDBG_FACILITY NLMDBG_HOSTCACHE
22 #define NLM_HOST_MAX 64
23 #define NLM_HOST_NRHASH 32
24 #define NLM_ADDRHASH(addr) (ntohl(addr) & (NLM_HOST_NRHASH-1))
25 #define NLM_HOST_REBIND (60 * HZ)
26 #define NLM_HOST_EXPIRE ((nrhosts > NLM_HOST_MAX)? 300 * HZ : 120 * HZ)
27 #define NLM_HOST_COLLECT ((nrhosts > NLM_HOST_MAX)? 120 * HZ : 60 * HZ)
28 #define NLM_HOST_ADDR(sv) (&(sv)->s_nlmclnt->cl_xprt->addr)
30 static struct nlm_host * nlm_hosts[NLM_HOST_NRHASH];
31 static unsigned long next_gc;
32 static int nrhosts;
33 static DECLARE_MUTEX(nlm_host_sema);
36 static void nlm_gc_hosts(void);
39 * Find an NLM server handle in the cache. If there is none, create it.
41 struct nlm_host *
42 nlmclnt_lookup_host(struct sockaddr_in *sin, int proto, int version)
44 return nlm_lookup_host(0, sin, proto, version);
48 * Find an NLM client handle in the cache. If there is none, create it.
50 struct nlm_host *
51 nlmsvc_lookup_host(struct svc_rqst *rqstp)
53 return nlm_lookup_host(1, &rqstp->rq_addr,
54 rqstp->rq_prot, rqstp->rq_vers);
58 * Common host lookup routine for server & client
60 struct nlm_host *
61 nlm_lookup_host(int server, struct sockaddr_in *sin,
62 int proto, int version)
64 struct nlm_host *host, **hp;
65 u32 addr;
66 int hash;
68 dprintk("lockd: nlm_lookup_host(%08x, p=%d, v=%d)\n",
69 (unsigned)(sin? ntohl(sin->sin_addr.s_addr) : 0), proto, version);
71 hash = NLM_ADDRHASH(sin->sin_addr.s_addr);
73 /* Lock hash table */
74 down(&nlm_host_sema);
76 if (time_after_eq(jiffies, next_gc))
77 nlm_gc_hosts();
79 for (hp = &nlm_hosts[hash]; (host = *hp); hp = &host->h_next) {
80 if (host->h_proto != proto)
81 continue;
82 if (host->h_version != version)
83 continue;
84 if (host->h_server != server)
85 continue;
87 if (nlm_cmp_addr(&host->h_addr, sin)) {
88 if (hp != nlm_hosts + hash) {
89 *hp = host->h_next;
90 host->h_next = nlm_hosts[hash];
91 nlm_hosts[hash] = host;
93 nlm_get_host(host);
94 up(&nlm_host_sema);
95 return host;
99 /* Ooops, no host found, create it */
100 dprintk("lockd: creating host entry\n");
102 if (!(host = (struct nlm_host *) kmalloc(sizeof(*host), GFP_KERNEL)))
103 goto nohost;
104 memset(host, 0, sizeof(*host));
106 addr = sin->sin_addr.s_addr;
107 sprintf(host->h_name, "%d.%d.%d.%d",
108 (unsigned char) (ntohl(addr) >> 24),
109 (unsigned char) (ntohl(addr) >> 16),
110 (unsigned char) (ntohl(addr) >> 8),
111 (unsigned char) (ntohl(addr) >> 0));
113 host->h_addr = *sin;
114 host->h_addr.sin_port = 0; /* ouch! */
115 host->h_version = version;
116 host->h_proto = proto;
117 host->h_authflavor = RPC_AUTH_UNIX;
118 host->h_rpcclnt = NULL;
119 init_MUTEX(&host->h_sema);
120 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
121 host->h_expires = jiffies + NLM_HOST_EXPIRE;
122 host->h_count = 1;
123 init_waitqueue_head(&host->h_gracewait);
124 host->h_state = 0; /* pseudo NSM state */
125 host->h_nsmstate = 0; /* real NSM state */
126 host->h_server = server;
127 host->h_next = nlm_hosts[hash];
128 nlm_hosts[hash] = host;
130 if (++nrhosts > NLM_HOST_MAX)
131 next_gc = 0;
133 nohost:
134 up(&nlm_host_sema);
135 return host;
138 struct nlm_host *
139 nlm_find_client(void)
141 /* find a nlm_host for a client for which h_killed == 0.
142 * and return it
144 int hash;
145 down(&nlm_host_sema);
146 for (hash = 0 ; hash < NLM_HOST_NRHASH; hash++) {
147 struct nlm_host *host, **hp;
148 for (hp = &nlm_hosts[hash]; (host = *hp) ; hp = &host->h_next) {
149 if (host->h_server &&
150 host->h_killed == 0) {
151 nlm_get_host(host);
152 up(&nlm_host_sema);
153 return host;
157 up(&nlm_host_sema);
158 return NULL;
163 * Create the NLM RPC client for an NLM peer
165 struct rpc_clnt *
166 nlm_bind_host(struct nlm_host *host)
168 struct rpc_clnt *clnt;
169 struct rpc_xprt *xprt;
171 dprintk("lockd: nlm_bind_host(%08x)\n",
172 (unsigned)ntohl(host->h_addr.sin_addr.s_addr));
174 /* Lock host handle */
175 down(&host->h_sema);
177 /* If we've already created an RPC client, check whether
178 * RPC rebind is required
179 * Note: why keep rebinding if we're on a tcp connection?
181 if ((clnt = host->h_rpcclnt) != NULL) {
182 xprt = clnt->cl_xprt;
183 if (!xprt->stream && time_after_eq(jiffies, host->h_nextrebind)) {
184 clnt->cl_port = 0;
185 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
186 dprintk("lockd: next rebind in %ld jiffies\n",
187 host->h_nextrebind - jiffies);
189 } else {
190 xprt = xprt_create_proto(host->h_proto, &host->h_addr, NULL);
191 if (xprt == NULL)
192 goto forgetit;
194 xprt_set_timeout(&xprt->timeout, 5, nlmsvc_timeout);
196 clnt = rpc_create_client(xprt, host->h_name, &nlm_program,
197 host->h_version, host->h_authflavor);
198 if (clnt == NULL) {
199 xprt_destroy(xprt);
200 goto forgetit;
202 clnt->cl_autobind = 1; /* turn on pmap queries */
203 xprt->nocong = 1; /* No congestion control for NLM */
204 xprt->resvport = 1; /* NLM requires a reserved port */
206 host->h_rpcclnt = clnt;
209 up(&host->h_sema);
210 return clnt;
212 forgetit:
213 printk("lockd: couldn't create RPC handle for %s\n", host->h_name);
214 up(&host->h_sema);
215 return NULL;
219 * Force a portmap lookup of the remote lockd port
221 void
222 nlm_rebind_host(struct nlm_host *host)
224 dprintk("lockd: rebind host %s\n", host->h_name);
225 if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) {
226 host->h_rpcclnt->cl_port = 0;
227 host->h_nextrebind = jiffies + NLM_HOST_REBIND;
232 * Increment NLM host count
234 struct nlm_host * nlm_get_host(struct nlm_host *host)
236 if (host) {
237 dprintk("lockd: get host %s\n", host->h_name);
238 host->h_count ++;
239 host->h_expires = jiffies + NLM_HOST_EXPIRE;
241 return host;
245 * Release NLM host after use
247 void nlm_release_host(struct nlm_host *host)
249 if (host && host->h_count) {
250 dprintk("lockd: release host %s\n", host->h_name);
251 host->h_count --;
256 * Shut down the hosts module.
257 * Note that this routine is called only at server shutdown time.
259 void
260 nlm_shutdown_hosts(void)
262 struct nlm_host *host;
263 int i;
265 dprintk("lockd: shutting down host module\n");
266 down(&nlm_host_sema);
268 /* First, make all hosts eligible for gc */
269 dprintk("lockd: nuking all hosts...\n");
270 for (i = 0; i < NLM_HOST_NRHASH; i++) {
271 for (host = nlm_hosts[i]; host; host = host->h_next)
272 host->h_expires = jiffies - 1;
275 /* Then, perform a garbage collection pass */
276 nlm_gc_hosts();
277 up(&nlm_host_sema);
279 /* complain if any hosts are left */
280 if (nrhosts) {
281 printk(KERN_WARNING "lockd: couldn't shutdown host module!\n");
282 dprintk("lockd: %d hosts left:\n", nrhosts);
283 for (i = 0; i < NLM_HOST_NRHASH; i++) {
284 for (host = nlm_hosts[i]; host; host = host->h_next) {
285 dprintk(" %s (cnt %d use %d exp %ld)\n",
286 host->h_name, host->h_count,
287 host->h_inuse, host->h_expires);
294 * Garbage collect any unused NLM hosts.
295 * This GC combines reference counting for async operations with
296 * mark & sweep for resources held by remote clients.
298 static void
299 nlm_gc_hosts(void)
301 struct nlm_host **q, *host;
302 struct rpc_clnt *clnt;
303 int i;
305 dprintk("lockd: host garbage collection\n");
306 for (i = 0; i < NLM_HOST_NRHASH; i++) {
307 for (host = nlm_hosts[i]; host; host = host->h_next)
308 host->h_inuse = 0;
311 /* Mark all hosts that hold locks, blocks or shares */
312 nlmsvc_mark_resources();
314 for (i = 0; i < NLM_HOST_NRHASH; i++) {
315 q = &nlm_hosts[i];
316 while ((host = *q) != NULL) {
317 if (host->h_count || host->h_inuse
318 || time_before(jiffies, host->h_expires)) {
319 dprintk("nlm_gc_hosts skipping %s (cnt %d use %d exp %ld)\n",
320 host->h_name, host->h_count,
321 host->h_inuse, host->h_expires);
322 q = &host->h_next;
323 continue;
325 dprintk("lockd: delete host %s\n", host->h_name);
326 *q = host->h_next;
327 /* Don't unmonitor hosts that have been invalidated */
328 if (host->h_monitored && !host->h_killed)
329 nsm_unmonitor(host);
330 if ((clnt = host->h_rpcclnt) != NULL) {
331 if (atomic_read(&clnt->cl_users)) {
332 printk(KERN_WARNING
333 "lockd: active RPC handle\n");
334 clnt->cl_dead = 1;
335 } else {
336 rpc_destroy_client(host->h_rpcclnt);
339 kfree(host);
340 nrhosts--;
344 next_gc = jiffies + NLM_HOST_COLLECT;