blob: 140e3a2d1b9f89a0d5f7bbf58b56287c028def82 [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>
12
13#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>
22#include <linux/fs_struct.h>
23
24#include <linux/sunrpc/types.h>
25#include <linux/sunrpc/stats.h>
26#include <linux/sunrpc/svc.h>
27#include <linux/sunrpc/svcsock.h>
28#include <linux/sunrpc/cache.h>
29#include <linux/nfsd/nfsd.h>
30#include <linux/nfsd/stats.h>
31#include <linux/nfsd/cache.h>
NeilBrown70c3b762005-11-07 01:00:25 -080032#include <linux/nfsd/syscall.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/lockd/bind.h>
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000034#include <linux/nfsacl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#define NFSDDBG_FACILITY NFSDDBG_SVC
37
38/* these signals will be delivered to an nfsd thread
39 * when handling a request
40 */
41#define ALLOWED_SIGS (sigmask(SIGKILL))
42/* these signals will be delivered to an nfsd thread
43 * when not handling a request. i.e. when waiting
44 */
45#define SHUTDOWN_SIGS (sigmask(SIGKILL) | sigmask(SIGHUP) | sigmask(SIGINT) | sigmask(SIGQUIT))
46/* if the last thread dies with SIGHUP, then the exports table is
47 * left unchanged ( like 2.4-{0-9} ). Any other signal will clear
48 * the exports table (like 2.2).
49 */
50#define SIG_NOCLEAN SIGHUP
51
52extern struct svc_program nfsd_program;
53static void nfsd(struct svc_rqst *rqstp);
54struct timeval nfssvc_boot;
NeilBrown70c3b762005-11-07 01:00:25 -080055 struct svc_serv *nfsd_serv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static atomic_t nfsd_busy;
57static unsigned long nfsd_last_call;
58static DEFINE_SPINLOCK(nfsd_call_lock);
59
60struct nfsd_list {
61 struct list_head list;
62 struct task_struct *task;
63};
64static struct list_head nfsd_list = LIST_HEAD_INIT(nfsd_list);
65
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -080066#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
67static struct svc_stat nfsd_acl_svcstats;
68static struct svc_version * nfsd_acl_version[] = {
69 [2] = &nfsd_acl_version2,
70 [3] = &nfsd_acl_version3,
71};
72
73#define NFSD_ACL_MINVERS 2
Tobias Klausere8c96f82006-03-24 03:15:34 -080074#define NFSD_ACL_NRVERS ARRAY_SIZE(nfsd_acl_version)
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -080075static struct svc_version *nfsd_acl_versions[NFSD_ACL_NRVERS];
76
77static struct svc_program nfsd_acl_program = {
78 .pg_prog = NFS_ACL_PROGRAM,
79 .pg_nvers = NFSD_ACL_NRVERS,
80 .pg_vers = nfsd_acl_versions,
81 .pg_name = "nfsd",
82 .pg_class = "nfsd",
83 .pg_stats = &nfsd_acl_svcstats,
84 .pg_authenticate = &svc_set_client,
85};
86
87static struct svc_stat nfsd_acl_svcstats = {
88 .program = &nfsd_acl_program,
89};
90#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */
91
NeilBrown70c3b762005-11-07 01:00:25 -080092static struct svc_version * nfsd_version[] = {
93 [2] = &nfsd_version2,
94#if defined(CONFIG_NFSD_V3)
95 [3] = &nfsd_version3,
96#endif
97#if defined(CONFIG_NFSD_V4)
98 [4] = &nfsd_version4,
99#endif
100};
101
102#define NFSD_MINVERS 2
Tobias Klausere8c96f82006-03-24 03:15:34 -0800103#define NFSD_NRVERS ARRAY_SIZE(nfsd_version)
NeilBrown70c3b762005-11-07 01:00:25 -0800104static struct svc_version *nfsd_versions[NFSD_NRVERS];
105
106struct svc_program nfsd_program = {
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -0800107#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
108 .pg_next = &nfsd_acl_program,
109#endif
NeilBrown70c3b762005-11-07 01:00:25 -0800110 .pg_prog = NFS_PROGRAM, /* program number */
111 .pg_nvers = NFSD_NRVERS, /* nr of entries in nfsd_version */
112 .pg_vers = nfsd_versions, /* version table */
113 .pg_name = "nfsd", /* program name */
114 .pg_class = "nfsd", /* authentication class */
115 .pg_stats = &nfsd_svcstats, /* version table */
116 .pg_authenticate = &svc_set_client, /* export authentication */
117
118};
119
NeilBrown6658d3a2006-10-02 02:17:46 -0700120int nfsd_vers(int vers, enum vers_op change)
121{
122 if (vers < NFSD_MINVERS || vers >= NFSD_NRVERS)
123 return -1;
124 switch(change) {
125 case NFSD_SET:
126 nfsd_versions[vers] = nfsd_version[vers];
127 break;
128#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
129 if (vers < NFSD_ACL_NRVERS)
130 nfsd_acl_version[vers] = nfsd_acl_version[vers];
131#endif
132 case NFSD_CLEAR:
133 nfsd_versions[vers] = NULL;
134#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
135 if (vers < NFSD_ACL_NRVERS)
136 nfsd_acl_version[vers] = NULL;
137#endif
138 break;
139 case NFSD_TEST:
140 return nfsd_versions[vers] != NULL;
141 case NFSD_AVAIL:
142 return nfsd_version[vers] != NULL;
143 }
144 return 0;
145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/*
147 * Maximum number of nfsd processes
148 */
149#define NFSD_MAXSERVS 8192
150
151int nfsd_nrthreads(void)
152{
153 if (nfsd_serv == NULL)
154 return 0;
155 else
156 return nfsd_serv->sv_nrthreads;
157}
158
NeilBrownbc591cc2006-10-02 02:17:44 -0700159static int killsig; /* signal that was used to kill last nfsd */
160static void nfsd_last_thread(struct svc_serv *serv)
161{
162 /* When last nfsd thread exits we need to do some clean-up */
NeilBrown24e36662006-10-02 02:17:45 -0700163 struct svc_sock *svsk;
164 list_for_each_entry(svsk, &serv->sv_permsocks, sk_list)
165 lockd_down();
NeilBrownbc591cc2006-10-02 02:17:44 -0700166 nfsd_serv = NULL;
167 nfsd_racache_shutdown();
168 nfs4_state_shutdown();
169
170 printk(KERN_WARNING "nfsd: last server has exited\n");
171 if (killsig != SIG_NOCLEAN) {
172 printk(KERN_WARNING "nfsd: unexporting all filesystems\n");
173 nfsd_export_flush();
174 }
175}
NeilBrown6658d3a2006-10-02 02:17:46 -0700176
177void nfsd_reset_versions(void)
178{
179 int found_one = 0;
180 int i;
181
182 for (i = NFSD_MINVERS; i < NFSD_NRVERS; i++) {
183 if (nfsd_program.pg_vers[i])
184 found_one = 1;
185 }
186
187 if (!found_one) {
188 for (i = NFSD_MINVERS; i < NFSD_NRVERS; i++)
189 nfsd_program.pg_vers[i] = nfsd_version[i];
190#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
191 for (i = NFSD_ACL_MINVERS; i < NFSD_ACL_NRVERS; i++)
192 nfsd_acl_program.pg_vers[i] =
193 nfsd_acl_version[i];
194#endif
195 }
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198int
199nfsd_svc(unsigned short port, int nrservs)
200{
201 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct list_head *victim;
203
204 lock_kernel();
NeilBrown6658d3a2006-10-02 02:17:46 -0700205 dprintk("nfsd: creating service\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 error = -EINVAL;
207 if (nrservs <= 0)
208 nrservs = 0;
209 if (nrservs > NFSD_MAXSERVS)
210 nrservs = NFSD_MAXSERVS;
211
212 /* Readahead param cache - will no-op if it already exists */
213 error = nfsd_racache_init(2*nrservs);
214 if (error<0)
215 goto out;
NeilBrown76a35502005-06-23 22:03:26 -0700216 error = nfs4_state_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (error<0)
218 goto out;
219 if (!nfsd_serv) {
NeilBrown6658d3a2006-10-02 02:17:46 -0700220 nfsd_reset_versions();
Andreas Gruenbacher3fb803a2006-02-01 03:04:34 -0800221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 atomic_set(&nfsd_busy, 0);
223 error = -ENOMEM;
NeilBrownbc591cc2006-10-02 02:17:44 -0700224 nfsd_serv = svc_create(&nfsd_program, NFSD_BUFSIZE,
225 nfsd_last_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (nfsd_serv == NULL)
227 goto out;
228 error = svc_makesock(nfsd_serv, IPPROTO_UDP, port);
229 if (error < 0)
230 goto failure;
NeilBrown24e36662006-10-02 02:17:45 -0700231 error = lockd_up(IPPROTO_UDP);
232 if (error < 0)
233 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234#ifdef CONFIG_NFSD_TCP
235 error = svc_makesock(nfsd_serv, IPPROTO_TCP, port);
236 if (error < 0)
237 goto failure;
NeilBrown24e36662006-10-02 02:17:45 -0700238 error = lockd_up(IPPROTO_TCP);
239 if (error < 0)
240 goto failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241#endif
242 do_gettimeofday(&nfssvc_boot); /* record boot time */
243 } else
244 nfsd_serv->sv_nrthreads++;
245 nrservs -= (nfsd_serv->sv_nrthreads-1);
246 while (nrservs > 0) {
247 nrservs--;
248 __module_get(THIS_MODULE);
249 error = svc_create_thread(nfsd, nfsd_serv);
250 if (error < 0) {
251 module_put(THIS_MODULE);
252 break;
253 }
254 }
255 victim = nfsd_list.next;
256 while (nrservs < 0 && victim != &nfsd_list) {
257 struct nfsd_list *nl =
258 list_entry(victim,struct nfsd_list, list);
259 victim = victim->next;
260 send_sig(SIG_NOCLEAN, nl->task, 1);
261 nrservs++;
262 }
263 failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 svc_destroy(nfsd_serv); /* Release server */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 out:
266 unlock_kernel();
267 return error;
268}
269
270static inline void
271update_thread_usage(int busy_threads)
272{
273 unsigned long prev_call;
274 unsigned long diff;
275 int decile;
276
277 spin_lock(&nfsd_call_lock);
278 prev_call = nfsd_last_call;
279 nfsd_last_call = jiffies;
280 decile = busy_threads*10/nfsdstats.th_cnt;
281 if (decile>0 && decile <= 10) {
282 diff = nfsd_last_call - prev_call;
283 if ( (nfsdstats.th_usage[decile-1] += diff) >= NFSD_USAGE_WRAP)
284 nfsdstats.th_usage[decile-1] -= NFSD_USAGE_WRAP;
285 if (decile == 10)
286 nfsdstats.th_fullcnt++;
287 }
288 spin_unlock(&nfsd_call_lock);
289}
290
291/*
292 * This is the NFS server kernel thread
293 */
294static void
295nfsd(struct svc_rqst *rqstp)
296{
297 struct svc_serv *serv = rqstp->rq_server;
298 struct fs_struct *fsp;
299 int err;
300 struct nfsd_list me;
301 sigset_t shutdown_mask, allowed_mask;
302
303 /* Lock module and set up kernel thread */
304 lock_kernel();
305 daemonize("nfsd");
306
307 /* After daemonize() this kernel thread shares current->fs
308 * with the init process. We need to create files with a
309 * umask of 0 instead of init's umask. */
310 fsp = copy_fs_struct(current->fs);
311 if (!fsp) {
312 printk("Unable to start nfsd thread: out of memory\n");
313 goto out;
314 }
315 exit_fs(current);
316 current->fs = fsp;
317 current->fs->umask = 0;
318
319 siginitsetinv(&shutdown_mask, SHUTDOWN_SIGS);
320 siginitsetinv(&allowed_mask, ALLOWED_SIGS);
321
322 nfsdstats.th_cnt++;
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 me.task = current;
325 list_add(&me.list, &nfsd_list);
326
327 unlock_kernel();
328
329 /*
330 * We want less throttling in balance_dirty_pages() so that nfs to
331 * localhost doesn't cause nfsd to lock up due to all the client's
332 * dirty pages.
333 */
334 current->flags |= PF_LESS_THROTTLE;
335
336 /*
337 * The main request loop
338 */
339 for (;;) {
340 /* Block all but the shutdown signals */
341 sigprocmask(SIG_SETMASK, &shutdown_mask, NULL);
342
343 /*
344 * Find a socket with data available and call its
345 * recvfrom routine.
346 */
347 while ((err = svc_recv(serv, rqstp,
348 60*60*HZ)) == -EAGAIN)
349 ;
350 if (err < 0)
351 break;
352 update_thread_usage(atomic_read(&nfsd_busy));
353 atomic_inc(&nfsd_busy);
354
355 /* Lock the export hash tables for reading. */
356 exp_readlock();
357
358 /* Process request with signals blocked. */
359 sigprocmask(SIG_SETMASK, &allowed_mask, NULL);
360
361 svc_process(serv, rqstp);
362
363 /* Unlock export hash tables */
364 exp_readunlock();
365 update_thread_usage(atomic_read(&nfsd_busy));
366 atomic_dec(&nfsd_busy);
367 }
368
369 if (err != -EINTR) {
370 printk(KERN_WARNING "nfsd: terminating on error %d\n", -err);
371 } else {
372 unsigned int signo;
373
374 for (signo = 1; signo <= _NSIG; signo++)
375 if (sigismember(&current->pending.signal, signo) &&
376 !sigismember(&current->blocked, signo))
377 break;
NeilBrownbc591cc2006-10-02 02:17:44 -0700378 killsig = signo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
NeilBrown24e36662006-10-02 02:17:45 -0700380 /* Clear signals before calling svc_exit_thread() */
NeilBrown9e416052005-04-16 15:26:37 -0700381 flush_signals(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 lock_kernel();
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 list_del(&me.list);
386 nfsdstats.th_cnt --;
387
388out:
389 /* Release the thread */
390 svc_exit_thread(rqstp);
391
392 /* Release module */
Steven Rostedtc4f92db2005-08-17 14:25:23 -0400393 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 module_put_and_exit(0);
395}
396
397int
398nfsd_dispatch(struct svc_rqst *rqstp, u32 *statp)
399{
400 struct svc_procedure *proc;
401 kxdrproc_t xdr;
402 u32 nfserr;
403 u32 *nfserrp;
404
405 dprintk("nfsd_dispatch: vers %d proc %d\n",
406 rqstp->rq_vers, rqstp->rq_proc);
407 proc = rqstp->rq_procinfo;
408
409 /* Check whether we have this call in the cache. */
410 switch (nfsd_cache_lookup(rqstp, proc->pc_cachetype)) {
411 case RC_INTR:
412 case RC_DROPIT:
413 return 0;
414 case RC_REPLY:
415 return 1;
416 case RC_DOIT:;
417 /* do it */
418 }
419
420 /* Decode arguments */
421 xdr = proc->pc_decode;
422 if (xdr && !xdr(rqstp, (u32*)rqstp->rq_arg.head[0].iov_base,
423 rqstp->rq_argp)) {
424 dprintk("nfsd: failed to decode arguments!\n");
425 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
426 *statp = rpc_garbage_args;
427 return 1;
428 }
429
430 /* need to grab the location to store the status, as
431 * nfsv4 does some encoding while processing
432 */
433 nfserrp = rqstp->rq_res.head[0].iov_base
434 + rqstp->rq_res.head[0].iov_len;
435 rqstp->rq_res.head[0].iov_len += sizeof(u32);
436
437 /* Now call the procedure handler, and encode NFS status. */
438 nfserr = proc->pc_func(rqstp, rqstp->rq_argp, rqstp->rq_resp);
439 if (nfserr == nfserr_jukebox && rqstp->rq_vers == 2)
440 nfserr = nfserr_dropit;
441 if (nfserr == nfserr_dropit) {
442 dprintk("nfsd: Dropping request due to malloc failure!\n");
443 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
444 return 0;
445 }
446
447 if (rqstp->rq_proc != 0)
448 *nfserrp++ = nfserr;
449
450 /* Encode result.
451 * For NFSv2, additional info is never returned in case of an error.
452 */
453 if (!(nfserr && rqstp->rq_vers == 2)) {
454 xdr = proc->pc_encode;
455 if (xdr && !xdr(rqstp, nfserrp,
456 rqstp->rq_resp)) {
457 /* Failed to encode result. Release cache entry */
458 dprintk("nfsd: failed to encode result!\n");
459 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
460 *statp = rpc_system_err;
461 return 1;
462 }
463 }
464
465 /* Store reply in cache. */
466 nfsd_cache_update(rqstp, proc->pc_cachetype, statp + 1);
467 return 1;
468}