blob: 9be2a1932f8afee02c55884d5b2585d5b97e37b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040012#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/time.h>
14#include <linux/errno.h>
15#include <linux/nfs.h>
16#include <linux/in.h>
17#include <linux/uio.h>
18#include <linux/unistd.h>
19#include <linux/slab.h>
20#include <linux/smp.h>
21#include <linux/smp_lock.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070022#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/fs_struct.h>
Jeff Layton9867d762008-06-10 08:40:38 -040024#include <linux/kthread.h>
Andy Adamsonc3d06f92009-04-03 08:28:18 +030025#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <linux/sunrpc/types.h>
28#include <linux/sunrpc/stats.h>
29#include <linux/sunrpc/svc.h>
30#include <linux/sunrpc/svcsock.h>
31#include <linux/sunrpc/cache.h>
32#include <linux/nfsd/nfsd.h>
33#include <linux/nfsd/stats.h>
34#include <linux/nfsd/cache.h>
NeilBrown70c3b762005-11-07 01:00:25 -080035#include <linux/nfsd/syscall.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/lockd/bind.h>
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000037#include <linux/nfsacl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#define NFSDDBG_FACILITY NFSDDBG_SVC
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041extern struct svc_program nfsd_program;
Jeff Layton9867d762008-06-10 08:40:38 -040042static int nfsd(void *vrqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043struct timeval nfssvc_boot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Neil Brownbedbdd82008-06-10 08:40:35 -040045/*
46 * nfsd_mutex protects nfsd_serv -- both the pointer itself and the members
47 * of the svc_serv struct. In particular, ->sv_nrthreads but also to some
48 * extent ->sv_temp_socks and ->sv_permsocks. It also protects nfsdstats.th_cnt
49 *
50 * If (out side the lock) nfsd_serv is non-NULL, then it must point to a
51 * properly initialised 'struct svc_serv' with ->sv_nrthreads > 0. That number
52 * of nfsd threads must exist and each must listed in ->sp_all_threads in each
53 * entry of ->sv_pools[].
54 *
55 * Transitions of the thread count between zero and non-zero are of particular
56 * interest since the svc_serv needs to be created and initialized at that
57 * point, or freed.
Jeff Layton3dd98a32008-06-10 08:40:36 -040058 *
59 * Finally, the nfsd_mutex also protects some of the global variables that are
60 * accessed when nfsd starts and that are settable via the write_* routines in
61 * nfsctl.c. In particular:
62 *
63 * user_recovery_dirname
64 * user_lease_time
65 * nfsd_versions
Neil Brownbedbdd82008-06-10 08:40:35 -040066 */
67DEFINE_MUTEX(nfsd_mutex);
68struct svc_serv *nfsd_serv;
69
Andy Adamson4bd9b0f42009-06-24 15:37:45 -040070/*
71 * nfsd_drc_lock protects nfsd_drc_max_pages and nfsd_drc_pages_used.
72 * nfsd_drc_max_pages limits the total amount of memory available for
73 * version 4.1 DRC caches.
74 * nfsd_drc_pages_used tracks the current version 4.1 DRC memory usage.
75 */
76spinlock_t nfsd_drc_lock;
77unsigned int nfsd_drc_max_pages;
78unsigned int nfsd_drc_pages_used;
79
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -080080#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
81static struct svc_stat nfsd_acl_svcstats;
82static struct svc_version * nfsd_acl_version[] = {
83 [2] = &nfsd_acl_version2,
84 [3] = &nfsd_acl_version3,
85};
86
87#define NFSD_ACL_MINVERS 2
Tobias Klausere8c96f82006-03-24 03:15:34 -080088#define NFSD_ACL_NRVERS ARRAY_SIZE(nfsd_acl_version)
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -080089static struct svc_version *nfsd_acl_versions[NFSD_ACL_NRVERS];
90
91static struct svc_program nfsd_acl_program = {
92 .pg_prog = NFS_ACL_PROGRAM,
93 .pg_nvers = NFSD_ACL_NRVERS,
94 .pg_vers = nfsd_acl_versions,
NeilBrown1a8eff62007-01-26 00:56:58 -080095 .pg_name = "nfsacl",
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -080096 .pg_class = "nfsd",
97 .pg_stats = &nfsd_acl_svcstats,
98 .pg_authenticate = &svc_set_client,
99};
100
101static struct svc_stat nfsd_acl_svcstats = {
102 .program = &nfsd_acl_program,
103};
104#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */
105
NeilBrown70c3b762005-11-07 01:00:25 -0800106static struct svc_version * nfsd_version[] = {
107 [2] = &nfsd_version2,
108#if defined(CONFIG_NFSD_V3)
109 [3] = &nfsd_version3,
110#endif
111#if defined(CONFIG_NFSD_V4)
112 [4] = &nfsd_version4,
113#endif
114};
115
116#define NFSD_MINVERS 2
Tobias Klausere8c96f82006-03-24 03:15:34 -0800117#define NFSD_NRVERS ARRAY_SIZE(nfsd_version)
NeilBrown70c3b762005-11-07 01:00:25 -0800118static struct svc_version *nfsd_versions[NFSD_NRVERS];
119
120struct svc_program nfsd_program = {
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -0800121#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
122 .pg_next = &nfsd_acl_program,
123#endif
NeilBrown70c3b762005-11-07 01:00:25 -0800124 .pg_prog = NFS_PROGRAM, /* program number */
125 .pg_nvers = NFSD_NRVERS, /* nr of entries in nfsd_version */
126 .pg_vers = nfsd_versions, /* version table */
127 .pg_name = "nfsd", /* program name */
128 .pg_class = "nfsd", /* authentication class */
129 .pg_stats = &nfsd_svcstats, /* version table */
130 .pg_authenticate = &svc_set_client, /* export authentication */
131
132};
133
Benny Halevy8daf2202009-04-03 08:28:59 +0300134u32 nfsd_supported_minorversion;
135
NeilBrown6658d3a2006-10-02 02:17:46 -0700136int nfsd_vers(int vers, enum vers_op change)
137{
138 if (vers < NFSD_MINVERS || vers >= NFSD_NRVERS)
139 return -1;
140 switch(change) {
141 case NFSD_SET:
142 nfsd_versions[vers] = nfsd_version[vers];
NeilBrown6658d3a2006-10-02 02:17:46 -0700143#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
144 if (vers < NFSD_ACL_NRVERS)
NeilBrown1a8eff62007-01-26 00:56:58 -0800145 nfsd_acl_versions[vers] = nfsd_acl_version[vers];
NeilBrown6658d3a2006-10-02 02:17:46 -0700146#endif
NeilBrown1a8eff62007-01-26 00:56:58 -0800147 break;
NeilBrown6658d3a2006-10-02 02:17:46 -0700148 case NFSD_CLEAR:
149 nfsd_versions[vers] = NULL;
150#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
151 if (vers < NFSD_ACL_NRVERS)
NeilBrown1a8eff62007-01-26 00:56:58 -0800152 nfsd_acl_versions[vers] = NULL;
NeilBrown6658d3a2006-10-02 02:17:46 -0700153#endif
154 break;
155 case NFSD_TEST:
156 return nfsd_versions[vers] != NULL;
157 case NFSD_AVAIL:
158 return nfsd_version[vers] != NULL;
159 }
160 return 0;
161}
Benny Halevy8daf2202009-04-03 08:28:59 +0300162
163int nfsd_minorversion(u32 minorversion, enum vers_op change)
164{
165 if (minorversion > NFSD_SUPPORTED_MINOR_VERSION)
166 return -1;
167 switch(change) {
168 case NFSD_SET:
169 nfsd_supported_minorversion = minorversion;
170 break;
171 case NFSD_CLEAR:
172 if (minorversion == 0)
173 return -1;
174 nfsd_supported_minorversion = minorversion - 1;
175 break;
176 case NFSD_TEST:
177 return minorversion <= nfsd_supported_minorversion;
178 case NFSD_AVAIL:
179 return minorversion <= NFSD_SUPPORTED_MINOR_VERSION;
180 }
181 return 0;
182}
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*
185 * Maximum number of nfsd processes
186 */
187#define NFSD_MAXSERVS 8192
188
189int nfsd_nrthreads(void)
190{
Neil Brownc7d106c2008-06-12 13:38:42 +1000191 int rv = 0;
192 mutex_lock(&nfsd_mutex);
193 if (nfsd_serv)
194 rv = nfsd_serv->sv_nrthreads;
195 mutex_unlock(&nfsd_mutex);
196 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
NeilBrownbc591cc2006-10-02 02:17:44 -0700199static void nfsd_last_thread(struct svc_serv *serv)
200{
201 /* When last nfsd thread exits we need to do some clean-up */
Tom Tucker7a182082007-12-30 21:07:53 -0600202 struct svc_xprt *xprt;
203 list_for_each_entry(xprt, &serv->sv_permsocks, xpt_list)
NeilBrown24e36662006-10-02 02:17:45 -0700204 lockd_down();
NeilBrownbc591cc2006-10-02 02:17:44 -0700205 nfsd_serv = NULL;
206 nfsd_racache_shutdown();
207 nfs4_state_shutdown();
208
Jeff Laytone096bbc2008-06-10 08:40:37 -0400209 printk(KERN_WARNING "nfsd: last server has exited, flushing export "
210 "cache\n");
211 nfsd_export_flush();
NeilBrownbc591cc2006-10-02 02:17:44 -0700212}
NeilBrown6658d3a2006-10-02 02:17:46 -0700213
214void nfsd_reset_versions(void)
215{
216 int found_one = 0;
217 int i;
218
219 for (i = NFSD_MINVERS; i < NFSD_NRVERS; i++) {
220 if (nfsd_program.pg_vers[i])
221 found_one = 1;
222 }
223
224 if (!found_one) {
225 for (i = NFSD_MINVERS; i < NFSD_NRVERS; i++)
226 nfsd_program.pg_vers[i] = nfsd_version[i];
227#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
228 for (i = NFSD_ACL_MINVERS; i < NFSD_ACL_NRVERS; i++)
229 nfsd_acl_program.pg_vers[i] =
230 nfsd_acl_version[i];
231#endif
232 }
233}
234
Andy Adamsonc3d06f92009-04-03 08:28:18 +0300235/*
236 * Each session guarantees a negotiated per slot memory cache for replies
237 * which in turn consumes memory beyond the v2/v3/v4.0 server. A dedicated
238 * NFSv4.1 server might want to use more memory for a DRC than a machine
239 * with mutiple services.
240 *
241 * Impose a hard limit on the number of pages for the DRC which varies
242 * according to the machines free pages. This is of course only a default.
243 *
244 * For now this is a #defined shift which could be under admin control
245 * in the future.
246 */
247static void set_max_drc(void)
248{
Andy Adamson6a14dd12009-07-27 19:06:45 -0400249 #define NFSD_DRC_SIZE_SHIFT 10
Andy Adamson4bd9b0f42009-06-24 15:37:45 -0400250 nfsd_drc_max_pages = nr_free_buffer_pages()
Andy Adamsonc3d06f92009-04-03 08:28:18 +0300251 >> NFSD_DRC_SIZE_SHIFT;
Andy Adamson4bd9b0f42009-06-24 15:37:45 -0400252 nfsd_drc_pages_used = 0;
253 spin_lock_init(&nfsd_drc_lock);
254 dprintk("%s nfsd_drc_max_pages %u\n", __func__,
255 nfsd_drc_max_pages);
Andy Adamsonc3d06f92009-04-03 08:28:18 +0300256}
Neil Brownbedbdd82008-06-10 08:40:35 -0400257
NeilBrownb41b66d2006-10-02 02:17:48 -0700258int nfsd_create_serv(void)
NeilBrown02a375f2006-10-02 02:17:46 -0700259{
260 int err = 0;
Neil Brownbedbdd82008-06-10 08:40:35 -0400261
262 WARN_ON(!mutex_is_locked(&nfsd_mutex));
NeilBrown02a375f2006-10-02 02:17:46 -0700263 if (nfsd_serv) {
Greg Banks9a24ab52006-10-02 02:17:58 -0700264 svc_get(nfsd_serv);
NeilBrown02a375f2006-10-02 02:17:46 -0700265 return 0;
266 }
NeilBrown596bbe52006-10-04 02:15:48 -0700267 if (nfsd_max_blksize == 0) {
268 /* choose a suitable default */
269 struct sysinfo i;
270 si_meminfo(&i);
271 /* Aim for 1/4096 of memory per thread
272 * This gives 1MB on 4Gig machines
273 * But only uses 32K on 128M machines.
274 * Bottom out at 8K on 32M and smaller.
275 * Of course, this is only a default.
276 */
277 nfsd_max_blksize = NFSSVC_MAXBLKSIZE;
NeilBrown44c55602006-10-04 02:16:15 -0700278 i.totalram <<= PAGE_SHIFT - 12;
NeilBrown596bbe52006-10-04 02:15:48 -0700279 while (nfsd_max_blksize > i.totalram &&
280 nfsd_max_blksize >= 8*1024*2)
281 nfsd_max_blksize /= 2;
282 }
NeilBrown02a375f2006-10-02 02:17:46 -0700283
Jeff Laytone096bbc2008-06-10 08:40:37 -0400284 nfsd_serv = svc_create_pooled(&nfsd_program, nfsd_max_blksize,
Jeff Laytona75c5d02008-06-10 08:40:39 -0400285 nfsd_last_thread, nfsd, THIS_MODULE);
NeilBrown02a375f2006-10-02 02:17:46 -0700286 if (nfsd_serv == NULL)
287 err = -ENOMEM;
Andy Adamsonc3d06f92009-04-03 08:28:18 +0300288 else
289 set_max_drc();
Neil Brownbedbdd82008-06-10 08:40:35 -0400290
NeilBrown02a375f2006-10-02 02:17:46 -0700291 do_gettimeofday(&nfssvc_boot); /* record boot time */
292 return err;
293}
294
295static int nfsd_init_socks(int port)
296{
297 int error;
298 if (!list_empty(&nfsd_serv->sv_permsocks))
299 return 0;
300
Chuck Lever9652ada2009-03-18 20:46:21 -0400301 error = svc_create_xprt(nfsd_serv, "udp", PF_INET, port,
Chuck Lever482fb942007-02-12 00:53:29 -0800302 SVC_SOCK_DEFAULTS);
NeilBrown02a375f2006-10-02 02:17:46 -0700303 if (error < 0)
304 return error;
305
Chuck Lever1cd9cd12008-10-22 13:12:36 -0400306 error = lockd_up();
307 if (error < 0)
308 return error;
309
Chuck Lever9652ada2009-03-18 20:46:21 -0400310 error = svc_create_xprt(nfsd_serv, "tcp", PF_INET, port,
Chuck Lever482fb942007-02-12 00:53:29 -0800311 SVC_SOCK_DEFAULTS);
NeilBrown02a375f2006-10-02 02:17:46 -0700312 if (error < 0)
313 return error;
Chuck Lever26a41402008-10-03 17:15:30 -0400314
315 error = lockd_up();
316 if (error < 0)
317 return error;
318
NeilBrown02a375f2006-10-02 02:17:46 -0700319 return 0;
320}
321
Greg Bankseed29652006-10-02 02:18:02 -0700322int nfsd_nrpools(void)
323{
324 if (nfsd_serv == NULL)
325 return 0;
326 else
327 return nfsd_serv->sv_nrpools;
328}
329
330int nfsd_get_nrthreads(int n, int *nthreads)
331{
332 int i = 0;
333
334 if (nfsd_serv != NULL) {
335 for (i = 0; i < nfsd_serv->sv_nrpools && i < n; i++)
336 nthreads[i] = nfsd_serv->sv_pools[i].sp_nrthreads;
337 }
338
339 return 0;
340}
341
342int nfsd_set_nrthreads(int n, int *nthreads)
343{
344 int i = 0;
345 int tot = 0;
346 int err = 0;
347
Neil Brownbedbdd82008-06-10 08:40:35 -0400348 WARN_ON(!mutex_is_locked(&nfsd_mutex));
349
Greg Bankseed29652006-10-02 02:18:02 -0700350 if (nfsd_serv == NULL || n <= 0)
351 return 0;
352
353 if (n > nfsd_serv->sv_nrpools)
354 n = nfsd_serv->sv_nrpools;
355
356 /* enforce a global maximum number of threads */
357 tot = 0;
358 for (i = 0; i < n; i++) {
359 if (nthreads[i] > NFSD_MAXSERVS)
360 nthreads[i] = NFSD_MAXSERVS;
361 tot += nthreads[i];
362 }
363 if (tot > NFSD_MAXSERVS) {
364 /* total too large: scale down requested numbers */
365 for (i = 0; i < n && tot > 0; i++) {
366 int new = nthreads[i] * NFSD_MAXSERVS / tot;
367 tot -= (nthreads[i] - new);
368 nthreads[i] = new;
369 }
370 for (i = 0; i < n && tot > 0; i++) {
371 nthreads[i]--;
372 tot--;
373 }
374 }
375
376 /*
377 * There must always be a thread in pool 0; the admin
378 * can't shut down NFS completely using pool_threads.
379 */
380 if (nthreads[0] == 0)
381 nthreads[0] = 1;
382
383 /* apply the new numbers */
Greg Bankseed29652006-10-02 02:18:02 -0700384 svc_get(nfsd_serv);
385 for (i = 0; i < n; i++) {
386 err = svc_set_num_threads(nfsd_serv, &nfsd_serv->sv_pools[i],
387 nthreads[i]);
388 if (err)
389 break;
390 }
391 svc_destroy(nfsd_serv);
Greg Bankseed29652006-10-02 02:18:02 -0700392
393 return err;
394}
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396int
397nfsd_svc(unsigned short port, int nrservs)
398{
399 int error;
Neil Brownbedbdd82008-06-10 08:40:35 -0400400
401 mutex_lock(&nfsd_mutex);
NeilBrown6658d3a2006-10-02 02:17:46 -0700402 dprintk("nfsd: creating service\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (nrservs <= 0)
404 nrservs = 0;
405 if (nrservs > NFSD_MAXSERVS)
406 nrservs = NFSD_MAXSERVS;
NeilBrown671e1fc2009-06-16 11:03:20 +1000407 error = 0;
408 if (nrservs == 0 && nfsd_serv == NULL)
409 goto out;
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /* Readahead param cache - will no-op if it already exists */
412 error = nfsd_racache_init(2*nrservs);
413 if (error<0)
414 goto out;
J. Bruce Fieldse8ff2a82007-08-01 15:30:59 -0400415 nfs4_state_start();
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -0800416
NeilBrown02a375f2006-10-02 02:17:46 -0700417 nfsd_reset_versions();
418
419 error = nfsd_create_serv();
420
421 if (error)
422 goto out;
423 error = nfsd_init_socks(port);
424 if (error)
425 goto failure;
426
Greg Bankseec09662006-10-02 02:18:00 -0700427 error = svc_set_num_threads(nfsd_serv, NULL, nrservs);
NeilBrown82e12fe2009-06-16 11:03:07 +1000428 if (error == 0)
429 /* We are holding a reference to nfsd_serv which
430 * we don't want to count in the return value,
431 * so subtract 1
432 */
433 error = nfsd_serv->sv_nrthreads - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 svc_destroy(nfsd_serv); /* Release server */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 out:
Neil Brownbedbdd82008-06-10 08:40:35 -0400437 mutex_unlock(&nfsd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return error;
439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442/*
443 * This is the NFS server kernel thread
444 */
Jeff Layton9867d762008-06-10 08:40:38 -0400445static int
446nfsd(void *vrqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Jeff Layton9867d762008-06-10 08:40:38 -0400448 struct svc_rqst *rqstp = (struct svc_rqst *) vrqstp;
Jeff Layton9867d762008-06-10 08:40:38 -0400449 int err, preverr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* Lock module and set up kernel thread */
Neil Brownbedbdd82008-06-10 08:40:35 -0400452 mutex_lock(&nfsd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Jeff Layton9867d762008-06-10 08:40:38 -0400454 /* At this point, the thread shares current->fs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * with the init process. We need to create files with a
456 * umask of 0 instead of init's umask. */
Al Viro3e93cd62009-03-29 19:00:13 -0400457 if (unshare_fs_struct() < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 printk("Unable to start nfsd thread: out of memory\n");
459 goto out;
460 }
Al Viro3e93cd62009-03-29 19:00:13 -0400461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 current->fs->umask = 0;
463
Jeff Layton9867d762008-06-10 08:40:38 -0400464 /*
465 * thread is spawned with all signals set to SIG_IGN, re-enable
Jeff Layton100766f2008-06-30 14:09:46 -0400466 * the ones that will bring down the thread
Jeff Layton9867d762008-06-10 08:40:38 -0400467 */
Jeff Layton100766f2008-06-30 14:09:46 -0400468 allow_signal(SIGKILL);
469 allow_signal(SIGHUP);
470 allow_signal(SIGINT);
471 allow_signal(SIGQUIT);
Neil Brownbedbdd82008-06-10 08:40:35 -0400472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 nfsdstats.th_cnt++;
Neil Brownbedbdd82008-06-10 08:40:35 -0400474 mutex_unlock(&nfsd_mutex);
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 /*
477 * We want less throttling in balance_dirty_pages() so that nfs to
478 * localhost doesn't cause nfsd to lock up due to all the client's
479 * dirty pages.
480 */
481 current->flags |= PF_LESS_THROTTLE;
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700482 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 /*
485 * The main request loop
486 */
487 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /*
489 * Find a socket with data available and call its
490 * recvfrom routine.
491 */
NeilBrown6fb2b472006-10-02 02:17:50 -0700492 while ((err = svc_recv(rqstp, 60*60*HZ)) == -EAGAIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 ;
Jeff Layton9867d762008-06-10 08:40:38 -0400494 if (err == -EINTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 break;
Jeff Layton9867d762008-06-10 08:40:38 -0400496 else if (err < 0) {
497 if (err != preverr) {
498 printk(KERN_WARNING "%s: unexpected error "
499 "from svc_recv (%d)\n", __func__, -err);
500 preverr = err;
501 }
502 schedule_timeout_uninterruptible(HZ);
503 continue;
504 }
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /* Lock the export hash tables for reading. */
508 exp_readlock();
509
NeilBrown6fb2b472006-10-02 02:17:50 -0700510 svc_process(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 /* Unlock export hash tables */
513 exp_readunlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
515
NeilBrown24e36662006-10-02 02:17:45 -0700516 /* Clear signals before calling svc_exit_thread() */
NeilBrown9e4160522005-04-16 15:26:37 -0700517 flush_signals(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Neil Brownbedbdd82008-06-10 08:40:35 -0400519 mutex_lock(&nfsd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 nfsdstats.th_cnt --;
521
522out:
523 /* Release the thread */
524 svc_exit_thread(rqstp);
525
526 /* Release module */
Neil Brownbedbdd82008-06-10 08:40:35 -0400527 mutex_unlock(&nfsd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 module_put_and_exit(0);
Jeff Layton9867d762008-06-10 08:40:38 -0400529 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Andy Adamson32c1eb02007-07-17 04:04:48 -0700532static __be32 map_new_errors(u32 vers, __be32 nfserr)
533{
534 if (nfserr == nfserr_jukebox && vers == 2)
535 return nfserr_dropit;
536 if (nfserr == nfserr_wrongsec && vers < 4)
537 return nfserr_acces;
538 return nfserr;
539}
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541int
Al Viroc7afef12006-10-19 23:29:02 -0700542nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 struct svc_procedure *proc;
545 kxdrproc_t xdr;
Al Viroad451d32006-10-19 23:28:55 -0700546 __be32 nfserr;
547 __be32 *nfserrp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 dprintk("nfsd_dispatch: vers %d proc %d\n",
550 rqstp->rq_vers, rqstp->rq_proc);
551 proc = rqstp->rq_procinfo;
552
553 /* Check whether we have this call in the cache. */
554 switch (nfsd_cache_lookup(rqstp, proc->pc_cachetype)) {
555 case RC_INTR:
556 case RC_DROPIT:
557 return 0;
558 case RC_REPLY:
559 return 1;
560 case RC_DOIT:;
561 /* do it */
562 }
563
564 /* Decode arguments */
565 xdr = proc->pc_decode;
Al Viroad451d32006-10-19 23:28:55 -0700566 if (xdr && !xdr(rqstp, (__be32*)rqstp->rq_arg.head[0].iov_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 rqstp->rq_argp)) {
568 dprintk("nfsd: failed to decode arguments!\n");
569 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
570 *statp = rpc_garbage_args;
571 return 1;
572 }
573
574 /* need to grab the location to store the status, as
575 * nfsv4 does some encoding while processing
576 */
577 nfserrp = rqstp->rq_res.head[0].iov_base
578 + rqstp->rq_res.head[0].iov_len;
Al Viroad451d32006-10-19 23:28:55 -0700579 rqstp->rq_res.head[0].iov_len += sizeof(__be32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Andy Adamson074fe892009-04-03 08:28:15 +0300581 /* NFSv4.1 DRC requires statp */
582 if (rqstp->rq_vers == 4)
583 nfsd4_set_statp(rqstp, statp);
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* Now call the procedure handler, and encode NFS status. */
586 nfserr = proc->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp);
Andy Adamson32c1eb02007-07-17 04:04:48 -0700587 nfserr = map_new_errors(rqstp->rq_vers, nfserr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (nfserr == nfserr_dropit) {
J. Bruce Fields45457e02007-06-22 17:26:32 -0400589 dprintk("nfsd: Dropping request; may be revisited later\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
591 return 0;
592 }
593
594 if (rqstp->rq_proc != 0)
595 *nfserrp++ = nfserr;
596
597 /* Encode result.
598 * For NFSv2, additional info is never returned in case of an error.
599 */
600 if (!(nfserr && rqstp->rq_vers == 2)) {
601 xdr = proc->pc_encode;
602 if (xdr && !xdr(rqstp, nfserrp,
603 rqstp->rq_resp)) {
604 /* Failed to encode result. Release cache entry */
605 dprintk("nfsd: failed to encode result!\n");
606 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
607 *statp = rpc_system_err;
608 return 1;
609 }
610 }
611
612 /* Store reply in cache. */
613 nfsd_cache_update(rqstp, proc->pc_cachetype, statp + 1);
614 return 1;
615}
Greg Banks03cf6c92009-01-13 21:26:36 +1100616
617int nfsd_pool_stats_open(struct inode *inode, struct file *file)
618{
619 if (nfsd_serv == NULL)
620 return -ENODEV;
621 return svc_pool_stats_open(nfsd_serv, file);
622}