nfssvc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/nfsd/nfssvc.c
  3.  *
  4.  * Central processing for nfsd.
  5.  *
  6.  * Authors: Olaf Kirch (okir@monad.swb.de)
  7.  *
  8.  * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
  9.  */
  10. #define __NO_VERSION__
  11. #include <linux/config.h>
  12. #include <linux/module.h>
  13. #include <linux/sched.h>
  14. #include <linux/errno.h>
  15. #include <linux/nfs.h>
  16. #include <linux/in.h>
  17. #include <linux/uio.h>
  18. #include <linux/version.h>
  19. #include <linux/unistd.h>
  20. #include <linux/slab.h>
  21. #include <linux/smp.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/sunrpc/types.h>
  24. #include <linux/sunrpc/stats.h>
  25. #include <linux/sunrpc/svc.h>
  26. #include <linux/sunrpc/svcsock.h>
  27. #include <linux/nfsd/nfsd.h>
  28. #include <linux/nfsd/stats.h>
  29. #include <linux/nfsd/cache.h>
  30. #include <linux/nfsd/xdr.h>
  31. #include <linux/lockd/bind.h>
  32. #define NFSDDBG_FACILITY NFSDDBG_SVC
  33. #define NFSD_BUFSIZE (1024 + NFSSVC_MAXBLKSIZE)
  34. /* these signals will be delivered to an nfsd thread 
  35.  * when handling a request
  36.  */
  37. #define ALLOWED_SIGS (sigmask(SIGKILL))
  38. /* these signals will be delivered to an nfsd thread
  39.  * when not handling a request. i.e. when waiting
  40.  */
  41. #define SHUTDOWN_SIGS (sigmask(SIGKILL) | sigmask(SIGHUP) | sigmask(SIGINT) | sigmask(SIGQUIT))
  42. /* if the last thread dies with SIGHUP, then the exports table is
  43.  * left unchanged ( like 2.4-{0-9} ).  Any other signal will clear
  44.  * the exports table (like 2.2).
  45.  */
  46. #define SIG_NOCLEAN SIGHUP
  47. extern struct svc_program nfsd_program;
  48. static void nfsd(struct svc_rqst *rqstp);
  49. struct timeval nfssvc_boot;
  50. static struct svc_serv  *nfsd_serv;
  51. static int nfsd_busy;
  52. static unsigned long nfsd_last_call;
  53. struct nfsd_list {
  54. struct list_head  list;
  55. struct task_struct *task;
  56. };
  57. struct list_head nfsd_list = LIST_HEAD_INIT(nfsd_list);
  58. /*
  59.  * Maximum number of nfsd processes
  60.  */
  61. #define NFSD_MAXSERVS 8192
  62. int
  63. nfsd_svc(unsigned short port, int nrservs)
  64. {
  65. int error;
  66. int none_left;
  67. struct list_head *victim;
  68. dprintk("nfsd: creating servicen");
  69. error = -EINVAL;
  70. if (nrservs <= 0)
  71. nrservs = 0;
  72. if (nrservs > NFSD_MAXSERVS)
  73. nrservs = NFSD_MAXSERVS;
  74. /* Readahead param cache - will no-op if it already exists */
  75. error = nfsd_racache_init(2*nrservs);
  76. if (error<0)
  77. goto out;
  78. if (!nfsd_serv) {
  79. error = -ENOMEM;
  80. nfsd_serv = svc_create(&nfsd_program, NFSD_BUFSIZE, NFSSVC_XDRSIZE);
  81. if (nfsd_serv == NULL)
  82. goto out;
  83. error = svc_makesock(nfsd_serv, IPPROTO_UDP, port);
  84. if (error < 0)
  85. goto failure;
  86. #if CONFIG_NFSD_TCP
  87. error = svc_makesock(nfsd_serv, IPPROTO_TCP, port);
  88. if (error < 0)
  89. goto failure;
  90. #endif
  91. do_gettimeofday(&nfssvc_boot); /* record boot time */
  92. } else
  93. nfsd_serv->sv_nrthreads++;
  94. nrservs -= (nfsd_serv->sv_nrthreads-1);
  95. while (nrservs > 0) {
  96. nrservs--;
  97. error = svc_create_thread(nfsd, nfsd_serv);
  98. if (error < 0)
  99. break;
  100. }
  101. victim = nfsd_list.next;
  102. while (nrservs < 0 && victim != &nfsd_list) {
  103. struct nfsd_list *nl =
  104. list_entry(victim,struct nfsd_list, list);
  105. victim = victim->next;
  106. send_sig(SIG_NOCLEAN, nl->task, 1);
  107. nrservs++;
  108. }
  109.  failure:
  110. none_left = (nfsd_serv->sv_nrthreads == 1);
  111. svc_destroy(nfsd_serv); /* Release server */
  112. if (none_left) {
  113. nfsd_serv = NULL;
  114. nfsd_racache_shutdown();
  115. }
  116.  out:
  117. return error;
  118. }
  119. static inline void
  120. update_thread_usage(int busy_threads)
  121. {
  122. unsigned long prev_call;
  123. unsigned long diff;
  124. int decile;
  125. prev_call = nfsd_last_call;
  126. nfsd_last_call = jiffies;
  127. decile = busy_threads*10/nfsdstats.th_cnt;
  128. if (decile>0 && decile <= 10) {
  129. diff = nfsd_last_call - prev_call;
  130. if ( (nfsdstats.th_usage[decile-1] += diff) >= NFSD_USAGE_WRAP)
  131. nfsdstats.th_usage[decile-1] -= NFSD_USAGE_WRAP;
  132. if (decile == 10)
  133. nfsdstats.th_fullcnt++;
  134. }
  135. }
  136. /*
  137.  * This is the NFS server kernel thread
  138.  */
  139. static void
  140. nfsd(struct svc_rqst *rqstp)
  141. {
  142. struct svc_serv *serv = rqstp->rq_server;
  143. int err;
  144. struct nfsd_list me;
  145. /* Lock module and set up kernel thread */
  146. MOD_INC_USE_COUNT;
  147. lock_kernel();
  148. daemonize();
  149. sprintf(current->comm, "nfsd");
  150. current->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
  151. nfsdstats.th_cnt++;
  152. /* Let svc_process check client's authentication. */
  153. rqstp->rq_auth = 1;
  154. lockd_up(); /* start lockd */
  155. me.task = current;
  156. list_add(&me.list, &nfsd_list);
  157. /*
  158.  * The main request loop
  159.  */
  160. for (;;) {
  161. /* Block all but the shutdown signals */
  162. spin_lock_irq(&current->sigmask_lock);
  163. siginitsetinv(&current->blocked, SHUTDOWN_SIGS);
  164. recalc_sigpending(current);
  165. spin_unlock_irq(&current->sigmask_lock);
  166. /*
  167.  * Find a socket with data available and call its
  168.  * recvfrom routine.
  169.  */
  170. while ((err = svc_recv(serv, rqstp,
  171.        5*60*HZ)) == -EAGAIN)
  172.     ;
  173. if (err < 0)
  174. break;
  175. update_thread_usage(nfsd_busy);
  176. nfsd_busy++;
  177. /* Lock the export hash tables for reading. */
  178. exp_readlock();
  179. /* Validate the client's address. This will also defeat
  180.  * port probes on port 2049 by unauthorized clients.
  181.  */
  182. rqstp->rq_client = exp_getclient(&rqstp->rq_addr);
  183. /* Process request with signals blocked.  */
  184. spin_lock_irq(&current->sigmask_lock);
  185. siginitsetinv(&current->blocked, ALLOWED_SIGS);
  186. recalc_sigpending(current);
  187. spin_unlock_irq(&current->sigmask_lock);
  188. svc_process(serv, rqstp);
  189. /* Unlock export hash tables */
  190. exp_unlock();
  191. update_thread_usage(nfsd_busy);
  192. nfsd_busy--;
  193. }
  194. if (err != -EINTR) {
  195. printk(KERN_WARNING "nfsd: terminating on error %dn", -err);
  196. } else {
  197. unsigned int signo;
  198. for (signo = 1; signo <= _NSIG; signo++)
  199. if (sigismember(&current->pending.signal, signo) &&
  200.     !sigismember(&current->blocked, signo))
  201. break;
  202. err = signo;
  203. }
  204. /* Release lockd */
  205. lockd_down();
  206. /* Check if this is last thread */
  207. if (serv->sv_nrthreads==1) {
  208. printk(KERN_WARNING "nfsd: last server has exitedn");
  209. if (err != SIG_NOCLEAN) {
  210. printk(KERN_WARNING "nfsd: unexporting all filesystemsn");
  211. nfsd_export_shutdown();
  212. }
  213. nfsd_serv = NULL;
  214.         nfsd_racache_shutdown(); /* release read-ahead cache */
  215. }
  216. list_del(&me.list);
  217. nfsdstats.th_cnt --;
  218. /* Release the thread */
  219. svc_exit_thread(rqstp);
  220. /* Release module */
  221. MOD_DEC_USE_COUNT;
  222. }
  223. static int
  224. nfsd_dispatch(struct svc_rqst *rqstp, u32 *statp)
  225. {
  226. struct svc_procedure *proc;
  227. kxdrproc_t xdr;
  228. u32 nfserr;
  229. dprintk("nfsd_dispatch: vers %d proc %dn",
  230. rqstp->rq_vers, rqstp->rq_proc);
  231. proc = rqstp->rq_procinfo;
  232. /* Check whether we have this call in the cache. */
  233. switch (nfsd_cache_lookup(rqstp, proc->pc_cachetype)) {
  234. case RC_INTR:
  235. case RC_DROPIT:
  236. return 0;
  237. case RC_REPLY:
  238. return 1;
  239. case RC_DOIT:;
  240. /* do it */
  241. }
  242. /* Decode arguments */
  243. xdr = proc->pc_decode;
  244. if (xdr && !xdr(rqstp, rqstp->rq_argbuf.buf, rqstp->rq_argp)) {
  245. dprintk("nfsd: failed to decode arguments!n");
  246. nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
  247. *statp = rpc_garbage_args;
  248. return 1;
  249. }
  250. /* Now call the procedure handler, and encode NFS status. */
  251. nfserr = proc->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp);
  252. if (nfserr == nfserr_dropit) {
  253. dprintk("nfsd: Dropping request due to malloc failure!n");
  254. nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
  255. return 0;
  256. }
  257. if (rqstp->rq_proc != 0)
  258. svc_putlong(&rqstp->rq_resbuf, nfserr);
  259. /* Encode result.
  260.  * For NFSv2, additional info is never returned in case of an error.
  261.  */
  262. if (!(nfserr && rqstp->rq_vers == 2)) {
  263. xdr = proc->pc_encode;
  264. if (xdr && !xdr(rqstp, rqstp->rq_resbuf.buf, rqstp->rq_resp)) {
  265. /* Failed to encode result. Release cache entry */
  266. dprintk("nfsd: failed to encode result!n");
  267. nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
  268. *statp = rpc_system_err;
  269. return 1;
  270. }
  271. }
  272. /* Store reply in cache. */
  273. nfsd_cache_update(rqstp, proc->pc_cachetype, statp + 1);
  274. return 1;
  275. }
  276. static struct svc_version nfsd_version2 = {
  277. 2, 18, nfsd_procedures2, nfsd_dispatch
  278. };
  279. #ifdef CONFIG_NFSD_V3
  280. static struct svc_version nfsd_version3 = {
  281. 3, 22, nfsd_procedures3, nfsd_dispatch
  282. };
  283. #endif
  284. static struct svc_version * nfsd_version[] = {
  285. NULL,
  286. NULL,
  287. &nfsd_version2,
  288. #ifdef CONFIG_NFSD_V3
  289. &nfsd_version3,
  290. #endif
  291. };
  292. #define NFSD_NRVERS (sizeof(nfsd_version)/sizeof(nfsd_version[0]))
  293. struct svc_program nfsd_program = {
  294. NFS_PROGRAM, /* program number */
  295. 2, NFSD_NRVERS-1, /* version range */
  296. NFSD_NRVERS, /* nr of entries in nfsd_version */
  297. nfsd_version, /* version table */
  298. "nfsd", /* program name */
  299. &nfsd_svcstats, /* version table */
  300. };