host.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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. #include <linux/types.h>
  11. #include <linux/sched.h>
  12. #include <linux/slab.h>
  13. #include <linux/in.h>
  14. #include <linux/sunrpc/clnt.h>
  15. #include <linux/sunrpc/svc.h>
  16. #include <linux/lockd/lockd.h>
  17. #include <linux/lockd/sm_inter.h>
  18. #define NLMDBG_FACILITY NLMDBG_HOSTCACHE
  19. #define NLM_HOST_MAX 64
  20. #define NLM_HOST_NRHASH 32
  21. #define NLM_ADDRHASH(addr) (ntohl(addr) & (NLM_HOST_NRHASH-1))
  22. #define NLM_PTRHASH(ptr) ((((u32)(unsigned long) ptr) / 32) & (NLM_HOST_NRHASH-1))
  23. #define NLM_HOST_REBIND (60 * HZ)
  24. #define NLM_HOST_EXPIRE ((nrhosts > NLM_HOST_MAX)? 300 * HZ : 120 * HZ)
  25. #define NLM_HOST_COLLECT ((nrhosts > NLM_HOST_MAX)? 120 * HZ :  60 * HZ)
  26. #define NLM_HOST_ADDR(sv) (&(sv)->s_nlmclnt->cl_xprt->addr)
  27. static struct nlm_host * nlm_hosts[NLM_HOST_NRHASH];
  28. static unsigned long next_gc;
  29. static int nrhosts;
  30. static DECLARE_MUTEX(nlm_host_sema);
  31. static void nlm_gc_hosts(void);
  32. /*
  33.  * Find an NLM server handle in the cache. If there is none, create it.
  34.  */
  35. struct nlm_host *
  36. nlmclnt_lookup_host(struct sockaddr_in *sin, int proto, int version)
  37. {
  38. return nlm_lookup_host(NULL, sin, proto, version);
  39. }
  40. /*
  41.  * Find an NLM client handle in the cache. If there is none, create it.
  42.  */
  43. struct nlm_host *
  44. nlmsvc_lookup_host(struct svc_rqst *rqstp)
  45. {
  46. return nlm_lookup_host(rqstp->rq_client, &rqstp->rq_addr,
  47.        rqstp->rq_prot, rqstp->rq_vers);
  48. }
  49. /*
  50.  * Match the given host against client/address
  51.  */
  52. static inline int
  53. nlm_match_host(struct nlm_host *host, struct svc_client *clnt,
  54. struct sockaddr_in *sin)
  55. {
  56. if (clnt)
  57. return host->h_exportent == clnt;
  58. return nlm_cmp_addr(&host->h_addr, sin);
  59. }
  60. /*
  61.  * Common host lookup routine for server & client
  62.  */
  63. struct nlm_host *
  64. nlm_lookup_host(struct svc_client *clnt, struct sockaddr_in *sin,
  65. int proto, int version)
  66. {
  67. struct nlm_host *host, **hp;
  68. u32 addr;
  69. int hash;
  70. if (!clnt && !sin) {
  71. printk(KERN_NOTICE "lockd: no clnt or addr in lookup_host!n");
  72. return NULL;
  73. }
  74. dprintk("lockd: nlm_lookup_host(%08x, p=%d, v=%d)n",
  75. (unsigned)(sin? ntohl(sin->sin_addr.s_addr) : 0), proto, version);
  76. if (clnt)
  77. hash = NLM_PTRHASH(clnt);
  78. else
  79. hash = NLM_ADDRHASH(sin->sin_addr.s_addr);
  80. /* Lock hash table */
  81. down(&nlm_host_sema);
  82. if (time_after_eq(jiffies, next_gc))
  83. nlm_gc_hosts();
  84. for (hp = &nlm_hosts[hash]; (host = *hp); hp = &host->h_next) {
  85. if (proto && host->h_proto != proto)
  86. continue;
  87. if (version && host->h_version != version)
  88. continue;
  89. if (nlm_match_host(host, clnt, sin)) {
  90. if (hp != nlm_hosts + hash) {
  91. *hp = host->h_next;
  92. host->h_next = nlm_hosts[hash];
  93. nlm_hosts[hash] = host;
  94. }
  95. nlm_get_host(host);
  96. up(&nlm_host_sema);
  97. return host;
  98. }
  99. }
  100. /* special hack for nlmsvc_invalidate_client */
  101. if (sin == NULL)
  102. goto nohost;
  103. /* Ooops, no host found, create it */
  104. dprintk("lockd: creating host entryn");
  105. if (!(host = (struct nlm_host *) kmalloc(sizeof(*host), GFP_KERNEL)))
  106. goto nohost;
  107. memset(host, 0, sizeof(*host));
  108. addr = sin->sin_addr.s_addr;
  109. sprintf(host->h_name, "%d.%d.%d.%d",
  110. (unsigned char) (ntohl(addr) >> 24),
  111. (unsigned char) (ntohl(addr) >> 16),
  112. (unsigned char) (ntohl(addr) >>  8),
  113. (unsigned char) (ntohl(addr) >>  0));
  114. host->h_addr       = *sin;
  115. host->h_addr.sin_port = 0; /* ouch! */
  116. host->h_version    = version;
  117. host->h_proto      = proto;
  118. host->h_authflavor = RPC_AUTH_UNIX;
  119. host->h_rpcclnt    = NULL;
  120. init_MUTEX(&host->h_sema);
  121. host->h_nextrebind = jiffies + NLM_HOST_REBIND;
  122. host->h_expires    = jiffies + NLM_HOST_EXPIRE;
  123. host->h_count      = 1;
  124. init_waitqueue_head(&host->h_gracewait);
  125. host->h_state      = 0; /* pseudo NSM state */
  126. host->h_nsmstate   = 0; /* real NSM state */
  127. host->h_exportent  = clnt;
  128. host->h_next       = nlm_hosts[hash];
  129. nlm_hosts[hash]    = host;
  130. if (++nrhosts > NLM_HOST_MAX)
  131. next_gc = 0;
  132. nohost:
  133. up(&nlm_host_sema);
  134. return host;
  135. }
  136. /*
  137.  * Create the NLM RPC client for an NLM peer
  138.  */
  139. struct rpc_clnt *
  140. nlm_bind_host(struct nlm_host *host)
  141. {
  142. struct rpc_clnt *clnt;
  143. struct rpc_xprt *xprt;
  144. dprintk("lockd: nlm_bind_host(%08x)n",
  145. (unsigned)ntohl(host->h_addr.sin_addr.s_addr));
  146. /* Lock host handle */
  147. down(&host->h_sema);
  148. /* If we've already created an RPC client, check whether
  149.  * RPC rebind is required
  150.  * Note: why keep rebinding if we're on a tcp connection?
  151.  */
  152. if ((clnt = host->h_rpcclnt) != NULL) {
  153. xprt = clnt->cl_xprt;
  154. if (!xprt->stream && time_after_eq(jiffies, host->h_nextrebind)) {
  155. clnt->cl_port = 0;
  156. host->h_nextrebind = jiffies + NLM_HOST_REBIND;
  157. dprintk("lockd: next rebind in %ld jiffiesn",
  158. host->h_nextrebind - jiffies);
  159. }
  160. } else {
  161. uid_t saved_fsuid = current->fsuid;
  162. kernel_cap_t saved_cap = current->cap_effective;
  163. /* Create RPC socket as root user so we get a priv port */
  164. current->fsuid = 0;
  165. cap_raise (current->cap_effective, CAP_NET_BIND_SERVICE);
  166. xprt = xprt_create_proto(host->h_proto, &host->h_addr, NULL);
  167. current->fsuid = saved_fsuid;
  168. current->cap_effective = saved_cap;
  169. if (xprt == NULL)
  170. goto forgetit;
  171. xprt_set_timeout(&xprt->timeout, 5, nlmsvc_timeout);
  172. clnt = rpc_create_client(xprt, host->h_name, &nlm_program,
  173. host->h_version, host->h_authflavor);
  174. if (clnt == NULL) {
  175. xprt_destroy(xprt);
  176. goto forgetit;
  177. }
  178. clnt->cl_autobind = 1; /* turn on pmap queries */
  179. xprt->nocong = 1; /* No congestion control for NLM */
  180. host->h_rpcclnt = clnt;
  181. }
  182. up(&host->h_sema);
  183. return clnt;
  184. forgetit:
  185. printk("lockd: couldn't create RPC handle for %sn", host->h_name);
  186. up(&host->h_sema);
  187. return NULL;
  188. }
  189. /*
  190.  * Force a portmap lookup of the remote lockd port
  191.  */
  192. void
  193. nlm_rebind_host(struct nlm_host *host)
  194. {
  195. dprintk("lockd: rebind host %sn", host->h_name);
  196. if (host->h_rpcclnt && time_after_eq(jiffies, host->h_nextrebind)) {
  197. host->h_rpcclnt->cl_port = 0;
  198. host->h_nextrebind = jiffies + NLM_HOST_REBIND;
  199. }
  200. }
  201. /*
  202.  * Increment NLM host count
  203.  */
  204. struct nlm_host * nlm_get_host(struct nlm_host *host)
  205. {
  206. if (host) {
  207. dprintk("lockd: get host %sn", host->h_name);
  208. host->h_count ++;
  209. host->h_expires = jiffies + NLM_HOST_EXPIRE;
  210. }
  211. return host;
  212. }
  213. /*
  214.  * Release NLM host after use
  215.  */
  216. void nlm_release_host(struct nlm_host *host)
  217. {
  218. if (host && host->h_count) {
  219. dprintk("lockd: release host %sn", host->h_name);
  220. host->h_count --;
  221. }
  222. }
  223. /*
  224.  * Shut down the hosts module.
  225.  * Note that this routine is called only at server shutdown time.
  226.  */
  227. void
  228. nlm_shutdown_hosts(void)
  229. {
  230. struct nlm_host *host;
  231. int i;
  232. dprintk("lockd: shutting down host modulen");
  233. down(&nlm_host_sema);
  234. /* First, make all hosts eligible for gc */
  235. dprintk("lockd: nuking all hosts...n");
  236. for (i = 0; i < NLM_HOST_NRHASH; i++) {
  237. for (host = nlm_hosts[i]; host; host = host->h_next)
  238. host->h_expires = 0;
  239. }
  240. /* Then, perform a garbage collection pass */
  241. nlm_gc_hosts();
  242. up(&nlm_host_sema);
  243. /* complain if any hosts are left */
  244. if (nrhosts) {
  245. printk(KERN_WARNING "lockd: couldn't shutdown host module!n");
  246. dprintk("lockd: %d hosts left:n", nrhosts);
  247. for (i = 0; i < NLM_HOST_NRHASH; i++) {
  248. for (host = nlm_hosts[i]; host; host = host->h_next) {
  249. dprintk("       %s (cnt %d use %d exp %ld)n",
  250. host->h_name, host->h_count,
  251. host->h_inuse, host->h_expires);
  252. }
  253. }
  254. }
  255. }
  256. /*
  257.  * Garbage collect any unused NLM hosts.
  258.  * This GC combines reference counting for async operations with
  259.  * mark & sweep for resources held by remote clients.
  260.  */
  261. static void
  262. nlm_gc_hosts(void)
  263. {
  264. struct nlm_host **q, *host;
  265. struct rpc_clnt *clnt;
  266. int i;
  267. dprintk("lockd: host garbage collectionn");
  268. for (i = 0; i < NLM_HOST_NRHASH; i++) {
  269. for (host = nlm_hosts[i]; host; host = host->h_next)
  270. host->h_inuse = 0;
  271. }
  272. /* Mark all hosts that hold locks, blocks or shares */
  273. nlmsvc_mark_resources();
  274. for (i = 0; i < NLM_HOST_NRHASH; i++) {
  275. q = &nlm_hosts[i];
  276. while ((host = *q) != NULL) {
  277. if (host->h_count || host->h_inuse
  278.  || time_before(jiffies, host->h_expires)) {
  279. q = &host->h_next;
  280. continue;
  281. }
  282. dprintk("lockd: delete host %sn", host->h_name);
  283. *q = host->h_next;
  284. /* Don't unmonitor hosts that have been invalidated */
  285. if (host->h_monitored && !host->h_killed)
  286. nsm_unmonitor(host);
  287. if ((clnt = host->h_rpcclnt) != NULL) {
  288. if (atomic_read(&clnt->cl_users)) {
  289. printk(KERN_WARNING
  290. "lockd: active RPC handlen");
  291. clnt->cl_dead = 1;
  292. } else {
  293. rpc_destroy_client(host->h_rpcclnt);
  294. }
  295. }
  296. kfree(host);
  297. nrhosts--;
  298. }
  299. }
  300. next_gc = jiffies + NLM_HOST_COLLECT;
  301. }