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

嵌入式Linux

开发平台:

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 128
  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. nfsd_serv = svc_create(&nfsd_program, NFSD_BUFSIZE, NFSSVC_XDRSIZE);
  80. if (nfsd_serv == NULL)
  81. goto out;
  82. error = svc_makesock(nfsd_serv, IPPROTO_UDP, port);
  83. if (error < 0)
  84. goto failure;
  85. #if 0 /* Don't even pretend that TCP works. It doesn't. */
  86. error = svc_makesock(nfsd_serv, IPPROTO_TCP, port);
  87. if (error < 0)
  88. goto failure;
  89. #endif
  90. do_gettimeofday(&nfssvc_boot); /* record boot time */
  91. } else
  92. nfsd_serv->sv_nrthreads++;
  93. nrservs -= (nfsd_serv->sv_nrthreads-1);
  94. while (nrservs > 0) {
  95. nrservs--;
  96. error = svc_create_thread(nfsd, nfsd_serv);
  97. if (error < 0)
  98. break;
  99. }
  100. victim = nfsd_list.next;
  101. while (nrservs < 0 && victim != &nfsd_list) {
  102. struct nfsd_list *nl =
  103. list_entry(victim,struct nfsd_list, list);
  104. victim = victim->next;
  105. send_sig(SIG_NOCLEAN, nl->task, 1);
  106. nrservs++;
  107. }
  108.  failure:
  109. none_left = (nfsd_serv->sv_nrthreads == 1);
  110. svc_destroy(nfsd_serv); /* Release server */
  111. if (none_left) {
  112. nfsd_serv = NULL;
  113. nfsd_racache_shutdown();
  114. }
  115.  out:
  116. return error;
  117. }
  118. static inline void
  119. update_thread_usage(int busy_threads)
  120. {
  121. unsigned long prev_call;
  122. unsigned long diff;
  123. int decile;
  124. prev_call = nfsd_last_call;
  125. nfsd_last_call = jiffies;
  126. decile = busy_threads*10/nfsdstats.th_cnt;
  127. if (decile>0 && decile <= 10) {
  128. diff = nfsd_last_call - prev_call;
  129. if ( (nfsdstats.th_usage[decile-1] += diff) >= NFSD_USAGE_WRAP)
  130. nfsdstats.th_usage[decile-1] -= NFSD_USAGE_WRAP;
  131. if (decile == 10)
  132. nfsdstats.th_fullcnt++;
  133. }
  134. }
  135. /*
  136.  * This is the NFS server kernel thread
  137.  */
  138. static void
  139. nfsd(struct svc_rqst *rqstp)
  140. {
  141. struct svc_serv *serv = rqstp->rq_server;
  142. int err;
  143. struct nfsd_list me;
  144. /* Lock module and set up kernel thread */
  145. MOD_INC_USE_COUNT;
  146. lock_kernel();
  147. daemonize();
  148. sprintf(current->comm, "nfsd");
  149. current->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
  150. nfsdstats.th_cnt++;
  151. /* Let svc_process check client's authentication. */
  152. rqstp->rq_auth = 1;
  153. lockd_up(); /* start lockd */
  154. me.task = current;
  155. list_add(&me.list, &nfsd_list);
  156. /*
  157.  * The main request loop
  158.  */
  159. for (;;) {
  160. /* Block all but the shutdown signals */
  161. spin_lock_irq(&current->sigmask_lock);
  162. siginitsetinv(&current->blocked, SHUTDOWN_SIGS);
  163. recalc_sigpending(current);
  164. spin_unlock_irq(&current->sigmask_lock);
  165. /*
  166.  * Find a socket with data available and call its
  167.  * recvfrom routine.
  168.  */
  169. while ((err = svc_recv(serv, rqstp,
  170.        MAX_SCHEDULE_TIMEOUT)) == -EAGAIN)
  171.     ;
  172. if (err < 0)
  173. break;
  174. update_thread_usage(nfsd_busy);
  175. nfsd_busy++;
  176. /* Lock the export hash tables for reading. */
  177. exp_readlock();
  178. /* Validate the client's address. This will also defeat
  179.  * port probes on port 2049 by unauthorized clients.
  180.  */
  181. rqstp->rq_client = exp_getclient(&rqstp->rq_addr);
  182. /* Process request with signals blocked.  */
  183. spin_lock_irq(&current->sigmask_lock);
  184. siginitsetinv(&current->blocked, ALLOWED_SIGS);
  185. recalc_sigpending(current);
  186. spin_unlock_irq(&current->sigmask_lock);
  187. svc_process(serv, rqstp);
  188. /* Unlock export hash tables */
  189. exp_unlock();
  190. update_thread_usage(nfsd_busy);
  191. nfsd_busy--;
  192. }
  193. if (err != -EINTR) {
  194. printk(KERN_WARNING "nfsd: terminating on error %dn", -err);
  195. } else {
  196. unsigned int signo;
  197. for (signo = 1; signo <= _NSIG; signo++)
  198. if (sigismember(&current->pending.signal, signo) &&
  199.     !sigismember(&current->blocked, signo))
  200. break;
  201. err = signo;
  202. }
  203. /* Release lockd */
  204. lockd_down();
  205. /* Check if this is last thread */
  206. if (serv->sv_nrthreads==1) {
  207. printk(KERN_WARNING "nfsd: last server has exitedn");
  208. if (err != SIG_NOCLEAN) {
  209. printk(KERN_WARNING "nfsd: unexporting all filesystemsn");
  210. nfsd_export_shutdown();
  211. }
  212. nfsd_serv = NULL;
  213.         nfsd_racache_shutdown(); /* release read-ahead cache */
  214. }
  215. list_del(&me.list);
  216. nfsdstats.th_cnt --;
  217. /* Release the thread */
  218. svc_exit_thread(rqstp);
  219. /* Release module */
  220. MOD_DEC_USE_COUNT;
  221. }
  222. static int
  223. nfsd_dispatch(struct svc_rqst *rqstp, u32 *statp)
  224. {
  225. struct svc_procedure *proc;
  226. kxdrproc_t xdr;
  227. u32 nfserr;
  228. dprintk("nfsd_dispatch: vers %d proc %dn",
  229. rqstp->rq_vers, rqstp->rq_proc);
  230. proc = rqstp->rq_procinfo;
  231. /* Check whether we have this call in the cache. */
  232. switch (nfsd_cache_lookup(rqstp, proc->pc_cachetype)) {
  233. case RC_INTR:
  234. case RC_DROPIT:
  235. return 0;
  236. case RC_REPLY:
  237. return 1;
  238. case RC_DOIT:;
  239. /* do it */
  240. }
  241. /* Decode arguments */
  242. xdr = proc->pc_decode;
  243. if (xdr && !xdr(rqstp, rqstp->rq_argbuf.buf, rqstp->rq_argp)) {
  244. dprintk("nfsd: failed to decode arguments!n");
  245. nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
  246. *statp = rpc_garbage_args;
  247. return 1;
  248. }
  249. /* Now call the procedure handler, and encode NFS status. */
  250. nfserr = proc->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp);
  251. if (nfserr == nfserr_dropit) {
  252. dprintk("nfsd: Dropping request due to malloc failure!n");
  253. nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
  254. return 0;
  255. }
  256. if (rqstp->rq_proc != 0)
  257. svc_putlong(&rqstp->rq_resbuf, nfserr);
  258. /* Encode result.
  259.  * For NFSv2, additional info is never returned in case of an error.
  260.  */
  261. if (!(nfserr && rqstp->rq_vers == 2)) {
  262. xdr = proc->pc_encode;
  263. if (xdr && !xdr(rqstp, rqstp->rq_resbuf.buf, rqstp->rq_resp)) {
  264. /* Failed to encode result. Release cache entry */
  265. dprintk("nfsd: failed to encode result!n");
  266. nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
  267. *statp = rpc_system_err;
  268. return 1;
  269. }
  270. }
  271. /* Store reply in cache. */
  272. nfsd_cache_update(rqstp, proc->pc_cachetype, statp + 1);
  273. return 1;
  274. }
  275. static struct svc_version nfsd_version2 = {
  276. 2, 18, nfsd_procedures2, nfsd_dispatch
  277. };
  278. #ifdef CONFIG_NFSD_V3
  279. static struct svc_version nfsd_version3 = {
  280. 3, 22, nfsd_procedures3, nfsd_dispatch
  281. };
  282. #endif
  283. static struct svc_version * nfsd_version[] = {
  284. NULL,
  285. NULL,
  286. &nfsd_version2,
  287. #ifdef CONFIG_NFSD_V3
  288. &nfsd_version3,
  289. #endif
  290. };
  291. #define NFSD_NRVERS (sizeof(nfsd_version)/sizeof(nfsd_version[0]))
  292. struct svc_program nfsd_program = {
  293. NFS_PROGRAM, /* program number */
  294. 2, NFSD_NRVERS-1, /* version range */
  295. NFSD_NRVERS, /* nr of entries in nfsd_version */
  296. nfsd_version, /* version table */
  297. "nfsd", /* program name */
  298. &nfsd_svcstats, /* version table */
  299. };