Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Central processing for nfsd.
4 *
5 * Authors: Olaf Kirch (okir@monad.swb.de)
6 *
7 * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
8 */
9
10#include <linux/sched/signal.h>
11#include <linux/freezer.h>
12#include <linux/module.h>
13#include <linux/fs_struct.h>
14#include <linux/swap.h>
15
16#include <linux/sunrpc/stats.h>
17#include <linux/sunrpc/svcsock.h>
18#include <linux/sunrpc/svc_xprt.h>
19#include <linux/lockd/bind.h>
20#include <linux/nfsacl.h>
21#include <linux/seq_file.h>
22#include <linux/inetdevice.h>
23#include <net/addrconf.h>
24#include <net/ipv6.h>
25#include <net/net_namespace.h>
26#include "nfsd.h"
27#include "cache.h"
28#include "vfs.h"
29#include "netns.h"
30#include "filecache.h"
31
32#include "trace.h"
33
34#define NFSDDBG_FACILITY NFSDDBG_SVC
35
36extern struct svc_program nfsd_program;
37static int nfsd(void *vrqstp);
38#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
39static int nfsd_acl_rpcbind_set(struct net *,
40 const struct svc_program *,
41 u32, int,
42 unsigned short,
43 unsigned short);
44static __be32 nfsd_acl_init_request(struct svc_rqst *,
45 const struct svc_program *,
46 struct svc_process_info *);
47#endif
48static int nfsd_rpcbind_set(struct net *,
49 const struct svc_program *,
50 u32, int,
51 unsigned short,
52 unsigned short);
53static __be32 nfsd_init_request(struct svc_rqst *,
54 const struct svc_program *,
55 struct svc_process_info *);
56
57/*
58 * nfsd_mutex protects nn->nfsd_serv -- both the pointer itself and the members
59 * of the svc_serv struct. In particular, ->sv_nrthreads but also to some
60 * extent ->sv_temp_socks and ->sv_permsocks. It also protects nfsdstats.th_cnt
61 *
62 * If (out side the lock) nn->nfsd_serv is non-NULL, then it must point to a
63 * properly initialised 'struct svc_serv' with ->sv_nrthreads > 0. That number
64 * of nfsd threads must exist and each must listed in ->sp_all_threads in each
65 * entry of ->sv_pools[].
66 *
67 * Transitions of the thread count between zero and non-zero are of particular
68 * interest since the svc_serv needs to be created and initialized at that
69 * point, or freed.
70 *
71 * Finally, the nfsd_mutex also protects some of the global variables that are
72 * accessed when nfsd starts and that are settable via the write_* routines in
73 * nfsctl.c. In particular:
74 *
75 * user_recovery_dirname
76 * user_lease_time
77 * nfsd_versions
78 */
79DEFINE_MUTEX(nfsd_mutex);
80
81/*
82 * nfsd_drc_lock protects nfsd_drc_max_pages and nfsd_drc_pages_used.
83 * nfsd_drc_max_pages limits the total amount of memory available for
84 * version 4.1 DRC caches.
85 * nfsd_drc_pages_used tracks the current version 4.1 DRC memory usage.
86 */
87DEFINE_SPINLOCK(nfsd_drc_lock);
88unsigned long nfsd_drc_max_mem;
89unsigned long nfsd_drc_mem_used;
90
91#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
92static struct svc_stat nfsd_acl_svcstats;
93static const struct svc_version *nfsd_acl_version[] = {
94 [2] = &nfsd_acl_version2,
95 [3] = &nfsd_acl_version3,
96};
97
98#define NFSD_ACL_MINVERS 2
99#define NFSD_ACL_NRVERS ARRAY_SIZE(nfsd_acl_version)
100
101static struct svc_program nfsd_acl_program = {
102 .pg_prog = NFS_ACL_PROGRAM,
103 .pg_nvers = NFSD_ACL_NRVERS,
104 .pg_vers = nfsd_acl_version,
105 .pg_name = "nfsacl",
106 .pg_class = "nfsd",
107 .pg_stats = &nfsd_acl_svcstats,
108 .pg_authenticate = &svc_set_client,
109 .pg_init_request = nfsd_acl_init_request,
110 .pg_rpcbind_set = nfsd_acl_rpcbind_set,
111};
112
113static struct svc_stat nfsd_acl_svcstats = {
114 .program = &nfsd_acl_program,
115};
116#endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */
117
118static const struct svc_version *nfsd_version[] = {
119 [2] = &nfsd_version2,
120#if defined(CONFIG_NFSD_V3)
121 [3] = &nfsd_version3,
122#endif
123#if defined(CONFIG_NFSD_V4)
124 [4] = &nfsd_version4,
125#endif
126};
127
128#define NFSD_MINVERS 2
129#define NFSD_NRVERS ARRAY_SIZE(nfsd_version)
130
131struct svc_program nfsd_program = {
132#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
133 .pg_next = &nfsd_acl_program,
134#endif
135 .pg_prog = NFS_PROGRAM, /* program number */
136 .pg_nvers = NFSD_NRVERS, /* nr of entries in nfsd_version */
137 .pg_vers = nfsd_version, /* version table */
138 .pg_name = "nfsd", /* program name */
139 .pg_class = "nfsd", /* authentication class */
140 .pg_stats = &nfsd_svcstats, /* version table */
141 .pg_authenticate = &svc_set_client, /* export authentication */
142 .pg_init_request = nfsd_init_request,
143 .pg_rpcbind_set = nfsd_rpcbind_set,
144};
145
146static bool
147nfsd_support_version(int vers)
148{
149 if (vers >= NFSD_MINVERS && vers < NFSD_NRVERS)
150 return nfsd_version[vers] != NULL;
151 return false;
152}
153
154static bool *
155nfsd_alloc_versions(void)
156{
157 bool *vers = kmalloc_array(NFSD_NRVERS, sizeof(bool), GFP_KERNEL);
158 unsigned i;
159
160 if (vers) {
161 /* All compiled versions are enabled by default */
162 for (i = 0; i < NFSD_NRVERS; i++)
163 vers[i] = nfsd_support_version(i);
164 }
165 return vers;
166}
167
168static bool *
169nfsd_alloc_minorversions(void)
170{
171 bool *vers = kmalloc_array(NFSD_SUPPORTED_MINOR_VERSION + 1,
172 sizeof(bool), GFP_KERNEL);
173 unsigned i;
174
175 if (vers) {
176 /* All minor versions are enabled by default */
177 for (i = 0; i <= NFSD_SUPPORTED_MINOR_VERSION; i++)
178 vers[i] = nfsd_support_version(4);
179 }
180 return vers;
181}
182
183void
184nfsd_netns_free_versions(struct nfsd_net *nn)
185{
186 kfree(nn->nfsd_versions);
187 kfree(nn->nfsd4_minorversions);
188 nn->nfsd_versions = NULL;
189 nn->nfsd4_minorversions = NULL;
190}
191
192static void
193nfsd_netns_init_versions(struct nfsd_net *nn)
194{
195 if (!nn->nfsd_versions) {
196 nn->nfsd_versions = nfsd_alloc_versions();
197 nn->nfsd4_minorversions = nfsd_alloc_minorversions();
198 if (!nn->nfsd_versions || !nn->nfsd4_minorversions)
199 nfsd_netns_free_versions(nn);
200 }
201}
202
203int nfsd_vers(struct nfsd_net *nn, int vers, enum vers_op change)
204{
205 if (vers < NFSD_MINVERS || vers >= NFSD_NRVERS)
206 return 0;
207 switch(change) {
208 case NFSD_SET:
209 if (nn->nfsd_versions)
210 nn->nfsd_versions[vers] = nfsd_support_version(vers);
211 break;
212 case NFSD_CLEAR:
213 nfsd_netns_init_versions(nn);
214 if (nn->nfsd_versions)
215 nn->nfsd_versions[vers] = false;
216 break;
217 case NFSD_TEST:
218 if (nn->nfsd_versions)
219 return nn->nfsd_versions[vers];
220 fallthrough;
221 case NFSD_AVAIL:
222 return nfsd_support_version(vers);
223 }
224 return 0;
225}
226
227static void
228nfsd_adjust_nfsd_versions4(struct nfsd_net *nn)
229{
230 unsigned i;
231
232 for (i = 0; i <= NFSD_SUPPORTED_MINOR_VERSION; i++) {
233 if (nn->nfsd4_minorversions[i])
234 return;
235 }
236 nfsd_vers(nn, 4, NFSD_CLEAR);
237}
238
239int nfsd_minorversion(struct nfsd_net *nn, u32 minorversion, enum vers_op change)
240{
241 if (minorversion > NFSD_SUPPORTED_MINOR_VERSION &&
242 change != NFSD_AVAIL)
243 return -1;
244
245 switch(change) {
246 case NFSD_SET:
247 if (nn->nfsd4_minorversions) {
248 nfsd_vers(nn, 4, NFSD_SET);
249 nn->nfsd4_minorversions[minorversion] =
250 nfsd_vers(nn, 4, NFSD_TEST);
251 }
252 break;
253 case NFSD_CLEAR:
254 nfsd_netns_init_versions(nn);
255 if (nn->nfsd4_minorversions) {
256 nn->nfsd4_minorversions[minorversion] = false;
257 nfsd_adjust_nfsd_versions4(nn);
258 }
259 break;
260 case NFSD_TEST:
261 if (nn->nfsd4_minorversions)
262 return nn->nfsd4_minorversions[minorversion];
263 return nfsd_vers(nn, 4, NFSD_TEST);
264 case NFSD_AVAIL:
265 return minorversion <= NFSD_SUPPORTED_MINOR_VERSION &&
266 nfsd_vers(nn, 4, NFSD_AVAIL);
267 }
268 return 0;
269}
270
271/*
272 * Maximum number of nfsd processes
273 */
274#define NFSD_MAXSERVS 8192
275
276int nfsd_nrthreads(struct net *net)
277{
278 int rv = 0;
279 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
280
281 mutex_lock(&nfsd_mutex);
282 if (nn->nfsd_serv)
283 rv = nn->nfsd_serv->sv_nrthreads;
284 mutex_unlock(&nfsd_mutex);
285 return rv;
286}
287
288static int nfsd_init_socks(struct net *net, const struct cred *cred)
289{
290 int error;
291 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
292
293 if (!list_empty(&nn->nfsd_serv->sv_permsocks))
294 return 0;
295
296 error = svc_create_xprt(nn->nfsd_serv, "udp", net, PF_INET, NFS_PORT,
297 SVC_SOCK_DEFAULTS, cred);
298 if (error < 0)
299 return error;
300
301 error = svc_create_xprt(nn->nfsd_serv, "tcp", net, PF_INET, NFS_PORT,
302 SVC_SOCK_DEFAULTS, cred);
303 if (error < 0)
304 return error;
305
306 return 0;
307}
308
309static int nfsd_users = 0;
310
311static int nfsd_startup_generic(void)
312{
313 int ret;
314
315 if (nfsd_users++)
316 return 0;
317
318 ret = nfsd_file_cache_init();
319 if (ret)
320 goto dec_users;
321
322 ret = nfs4_state_start();
323 if (ret)
324 goto out_file_cache;
325 return 0;
326
327out_file_cache:
328 nfsd_file_cache_shutdown();
329dec_users:
330 nfsd_users--;
331 return ret;
332}
333
334static void nfsd_shutdown_generic(void)
335{
336 if (--nfsd_users)
337 return;
338
339 nfs4_state_shutdown();
340 nfsd_file_cache_shutdown();
341}
342
343static bool nfsd_needs_lockd(struct nfsd_net *nn)
344{
345 return nfsd_vers(nn, 2, NFSD_TEST) || nfsd_vers(nn, 3, NFSD_TEST);
346}
347
348void nfsd_copy_boot_verifier(__be32 verf[2], struct nfsd_net *nn)
349{
350 int seq = 0;
351
352 do {
353 read_seqbegin_or_lock(&nn->boot_lock, &seq);
354 /*
355 * This is opaque to client, so no need to byte-swap. Use
356 * __force to keep sparse happy. y2038 time_t overflow is
357 * irrelevant in this usage
358 */
359 verf[0] = (__force __be32)nn->nfssvc_boot.tv_sec;
360 verf[1] = (__force __be32)nn->nfssvc_boot.tv_nsec;
361 } while (need_seqretry(&nn->boot_lock, seq));
362 done_seqretry(&nn->boot_lock, seq);
363}
364
365static void nfsd_reset_boot_verifier_locked(struct nfsd_net *nn)
366{
367 ktime_get_real_ts64(&nn->nfssvc_boot);
368}
369
370void nfsd_reset_boot_verifier(struct nfsd_net *nn)
371{
372 write_seqlock(&nn->boot_lock);
373 nfsd_reset_boot_verifier_locked(nn);
374 write_sequnlock(&nn->boot_lock);
375}
376
377static int nfsd_startup_net(struct net *net, const struct cred *cred)
378{
379 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
380 int ret;
381
382 if (nn->nfsd_net_up)
383 return 0;
384
385 ret = nfsd_startup_generic();
386 if (ret)
387 return ret;
388 ret = nfsd_init_socks(net, cred);
389 if (ret)
390 goto out_socks;
391
392 if (nfsd_needs_lockd(nn) && !nn->lockd_up) {
393 ret = lockd_up(net, cred);
394 if (ret)
395 goto out_socks;
396 nn->lockd_up = true;
397 }
398
399 ret = nfsd_file_cache_start_net(net);
400 if (ret)
401 goto out_lockd;
402 ret = nfs4_state_start_net(net);
403 if (ret)
404 goto out_filecache;
405
406 nn->nfsd_net_up = true;
407 return 0;
408
409out_filecache:
410 nfsd_file_cache_shutdown_net(net);
411out_lockd:
412 if (nn->lockd_up) {
413 lockd_down(net);
414 nn->lockd_up = false;
415 }
416out_socks:
417 nfsd_shutdown_generic();
418 return ret;
419}
420
421static void nfsd_shutdown_net(struct net *net)
422{
423 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
424
425 nfsd_file_cache_shutdown_net(net);
426 nfs4_state_shutdown_net(net);
427 if (nn->lockd_up) {
428 lockd_down(net);
429 nn->lockd_up = false;
430 }
431 nn->nfsd_net_up = false;
432 nfsd_shutdown_generic();
433}
434
435static int nfsd_inetaddr_event(struct notifier_block *this, unsigned long event,
436 void *ptr)
437{
438 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
439 struct net_device *dev = ifa->ifa_dev->dev;
440 struct net *net = dev_net(dev);
441 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
442 struct sockaddr_in sin;
443
444 if ((event != NETDEV_DOWN) ||
445 !atomic_inc_not_zero(&nn->ntf_refcnt))
446 goto out;
447
448 if (nn->nfsd_serv) {
449 dprintk("nfsd_inetaddr_event: removed %pI4\n", &ifa->ifa_local);
450 sin.sin_family = AF_INET;
451 sin.sin_addr.s_addr = ifa->ifa_local;
452 svc_age_temp_xprts_now(nn->nfsd_serv, (struct sockaddr *)&sin);
453 }
454 atomic_dec(&nn->ntf_refcnt);
455 wake_up(&nn->ntf_wq);
456
457out:
458 return NOTIFY_DONE;
459}
460
461static struct notifier_block nfsd_inetaddr_notifier = {
462 .notifier_call = nfsd_inetaddr_event,
463};
464
465#if IS_ENABLED(CONFIG_IPV6)
466static int nfsd_inet6addr_event(struct notifier_block *this,
467 unsigned long event, void *ptr)
468{
469 struct inet6_ifaddr *ifa = (struct inet6_ifaddr *)ptr;
470 struct net_device *dev = ifa->idev->dev;
471 struct net *net = dev_net(dev);
472 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
473 struct sockaddr_in6 sin6;
474
475 if ((event != NETDEV_DOWN) ||
476 !atomic_inc_not_zero(&nn->ntf_refcnt))
477 goto out;
478
479 if (nn->nfsd_serv) {
480 dprintk("nfsd_inet6addr_event: removed %pI6\n", &ifa->addr);
481 sin6.sin6_family = AF_INET6;
482 sin6.sin6_addr = ifa->addr;
483 if (ipv6_addr_type(&sin6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
484 sin6.sin6_scope_id = ifa->idev->dev->ifindex;
485 svc_age_temp_xprts_now(nn->nfsd_serv, (struct sockaddr *)&sin6);
486 }
487 atomic_dec(&nn->ntf_refcnt);
488 wake_up(&nn->ntf_wq);
489out:
490 return NOTIFY_DONE;
491}
492
493static struct notifier_block nfsd_inet6addr_notifier = {
494 .notifier_call = nfsd_inet6addr_event,
495};
496#endif
497
498/* Only used under nfsd_mutex, so this atomic may be overkill: */
499static atomic_t nfsd_notifier_refcount = ATOMIC_INIT(0);
500
501static void nfsd_last_thread(struct svc_serv *serv, struct net *net)
502{
503 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
504
505 atomic_dec(&nn->ntf_refcnt);
506 /* check if the notifier still has clients */
507 if (atomic_dec_return(&nfsd_notifier_refcount) == 0) {
508 unregister_inetaddr_notifier(&nfsd_inetaddr_notifier);
509#if IS_ENABLED(CONFIG_IPV6)
510 unregister_inet6addr_notifier(&nfsd_inet6addr_notifier);
511#endif
512 }
513 wait_event(nn->ntf_wq, atomic_read(&nn->ntf_refcnt) == 0);
514
515 /*
516 * write_ports can create the server without actually starting
517 * any threads--if we get shut down before any threads are
518 * started, then nfsd_last_thread will be run before any of this
519 * other initialization has been done except the rpcb information.
520 */
521 svc_rpcb_cleanup(serv, net);
522 if (!nn->nfsd_net_up)
523 return;
524
525 nfsd_shutdown_net(net);
526 pr_info("nfsd: last server has exited, flushing export cache\n");
527 nfsd_export_flush(net);
528}
529
530void nfsd_reset_versions(struct nfsd_net *nn)
531{
532 int i;
533
534 for (i = 0; i < NFSD_NRVERS; i++)
535 if (nfsd_vers(nn, i, NFSD_TEST))
536 return;
537
538 for (i = 0; i < NFSD_NRVERS; i++)
539 if (i != 4)
540 nfsd_vers(nn, i, NFSD_SET);
541 else {
542 int minor = 0;
543 while (nfsd_minorversion(nn, minor, NFSD_SET) >= 0)
544 minor++;
545 }
546}
547
548/*
549 * Each session guarantees a negotiated per slot memory cache for replies
550 * which in turn consumes memory beyond the v2/v3/v4.0 server. A dedicated
551 * NFSv4.1 server might want to use more memory for a DRC than a machine
552 * with mutiple services.
553 *
554 * Impose a hard limit on the number of pages for the DRC which varies
555 * according to the machines free pages. This is of course only a default.
556 *
557 * For now this is a #defined shift which could be under admin control
558 * in the future.
559 */
560static void set_max_drc(void)
561{
562 #define NFSD_DRC_SIZE_SHIFT 7
563 nfsd_drc_max_mem = (nr_free_buffer_pages()
564 >> NFSD_DRC_SIZE_SHIFT) * PAGE_SIZE;
565 nfsd_drc_mem_used = 0;
566 dprintk("%s nfsd_drc_max_mem %lu \n", __func__, nfsd_drc_max_mem);
567}
568
569static int nfsd_get_default_max_blksize(void)
570{
571 struct sysinfo i;
572 unsigned long long target;
573 unsigned long ret;
574
575 si_meminfo(&i);
576 target = (i.totalram - i.totalhigh) << PAGE_SHIFT;
577 /*
578 * Aim for 1/4096 of memory per thread This gives 1MB on 4Gig
579 * machines, but only uses 32K on 128M machines. Bottom out at
580 * 8K on 32M and smaller. Of course, this is only a default.
581 */
582 target >>= 12;
583
584 ret = NFSSVC_MAXBLKSIZE;
585 while (ret > target && ret >= 8*1024*2)
586 ret /= 2;
587 return ret;
588}
589
590static const struct svc_serv_ops nfsd_thread_sv_ops = {
591 .svo_shutdown = nfsd_last_thread,
592 .svo_function = nfsd,
593 .svo_enqueue_xprt = svc_xprt_do_enqueue,
594 .svo_setup = svc_set_num_threads,
595 .svo_module = THIS_MODULE,
596};
597
598static void nfsd_complete_shutdown(struct net *net)
599{
600 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
601
602 WARN_ON(!mutex_is_locked(&nfsd_mutex));
603
604 nn->nfsd_serv = NULL;
605 complete(&nn->nfsd_shutdown_complete);
606}
607
608void nfsd_shutdown_threads(struct net *net)
609{
610 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
611 struct svc_serv *serv;
612
613 mutex_lock(&nfsd_mutex);
614 serv = nn->nfsd_serv;
615 if (serv == NULL) {
616 mutex_unlock(&nfsd_mutex);
617 return;
618 }
619
620 svc_get(serv);
621 /* Kill outstanding nfsd threads */
622 serv->sv_ops->svo_setup(serv, NULL, 0);
623 nfsd_destroy(net);
624 mutex_unlock(&nfsd_mutex);
625 /* Wait for shutdown of nfsd_serv to complete */
626 wait_for_completion(&nn->nfsd_shutdown_complete);
627}
628
629bool i_am_nfsd(void)
630{
631 return kthread_func(current) == nfsd;
632}
633
634int nfsd_create_serv(struct net *net)
635{
636 int error;
637 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
638
639 WARN_ON(!mutex_is_locked(&nfsd_mutex));
640 if (nn->nfsd_serv) {
641 svc_get(nn->nfsd_serv);
642 return 0;
643 }
644 if (nfsd_max_blksize == 0)
645 nfsd_max_blksize = nfsd_get_default_max_blksize();
646 nfsd_reset_versions(nn);
647 nn->nfsd_serv = svc_create_pooled(&nfsd_program, nfsd_max_blksize,
648 &nfsd_thread_sv_ops);
649 if (nn->nfsd_serv == NULL)
650 return -ENOMEM;
651 init_completion(&nn->nfsd_shutdown_complete);
652
653 nn->nfsd_serv->sv_maxconn = nn->max_connections;
654 error = svc_bind(nn->nfsd_serv, net);
655 if (error < 0) {
656 svc_destroy(nn->nfsd_serv);
657 nfsd_complete_shutdown(net);
658 return error;
659 }
660
661 set_max_drc();
662 /* check if the notifier is already set */
663 if (atomic_inc_return(&nfsd_notifier_refcount) == 1) {
664 register_inetaddr_notifier(&nfsd_inetaddr_notifier);
665#if IS_ENABLED(CONFIG_IPV6)
666 register_inet6addr_notifier(&nfsd_inet6addr_notifier);
667#endif
668 }
669 atomic_inc(&nn->ntf_refcnt);
670 nfsd_reset_boot_verifier(nn);
671 return 0;
672}
673
674int nfsd_nrpools(struct net *net)
675{
676 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
677
678 if (nn->nfsd_serv == NULL)
679 return 0;
680 else
681 return nn->nfsd_serv->sv_nrpools;
682}
683
684int nfsd_get_nrthreads(int n, int *nthreads, struct net *net)
685{
686 int i = 0;
687 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
688
689 if (nn->nfsd_serv != NULL) {
690 for (i = 0; i < nn->nfsd_serv->sv_nrpools && i < n; i++)
691 nthreads[i] = nn->nfsd_serv->sv_pools[i].sp_nrthreads;
692 }
693
694 return 0;
695}
696
697void nfsd_destroy(struct net *net)
698{
699 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
700 int destroy = (nn->nfsd_serv->sv_nrthreads == 1);
701
702 if (destroy)
703 svc_shutdown_net(nn->nfsd_serv, net);
704 svc_destroy(nn->nfsd_serv);
705 if (destroy)
706 nfsd_complete_shutdown(net);
707}
708
709int nfsd_set_nrthreads(int n, int *nthreads, struct net *net)
710{
711 int i = 0;
712 int tot = 0;
713 int err = 0;
714 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
715
716 WARN_ON(!mutex_is_locked(&nfsd_mutex));
717
718 if (nn->nfsd_serv == NULL || n <= 0)
719 return 0;
720
721 if (n > nn->nfsd_serv->sv_nrpools)
722 n = nn->nfsd_serv->sv_nrpools;
723
724 /* enforce a global maximum number of threads */
725 tot = 0;
726 for (i = 0; i < n; i++) {
727 nthreads[i] = min(nthreads[i], NFSD_MAXSERVS);
728 tot += nthreads[i];
729 }
730 if (tot > NFSD_MAXSERVS) {
731 /* total too large: scale down requested numbers */
732 for (i = 0; i < n && tot > 0; i++) {
733 int new = nthreads[i] * NFSD_MAXSERVS / tot;
734 tot -= (nthreads[i] - new);
735 nthreads[i] = new;
736 }
737 for (i = 0; i < n && tot > 0; i++) {
738 nthreads[i]--;
739 tot--;
740 }
741 }
742
743 /*
744 * There must always be a thread in pool 0; the admin
745 * can't shut down NFS completely using pool_threads.
746 */
747 if (nthreads[0] == 0)
748 nthreads[0] = 1;
749
750 /* apply the new numbers */
751 svc_get(nn->nfsd_serv);
752 for (i = 0; i < n; i++) {
753 err = nn->nfsd_serv->sv_ops->svo_setup(nn->nfsd_serv,
754 &nn->nfsd_serv->sv_pools[i], nthreads[i]);
755 if (err)
756 break;
757 }
758 nfsd_destroy(net);
759 return err;
760}
761
762/*
763 * Adjust the number of threads and return the new number of threads.
764 * This is also the function that starts the server if necessary, if
765 * this is the first time nrservs is nonzero.
766 */
767int
768nfsd_svc(int nrservs, struct net *net, const struct cred *cred)
769{
770 int error;
771 bool nfsd_up_before;
772 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
773
774 mutex_lock(&nfsd_mutex);
775 dprintk("nfsd: creating service\n");
776
777 nrservs = max(nrservs, 0);
778 nrservs = min(nrservs, NFSD_MAXSERVS);
779 error = 0;
780
781 if (nrservs == 0 && nn->nfsd_serv == NULL)
782 goto out;
783
784 strlcpy(nn->nfsd_name, utsname()->nodename,
785 sizeof(nn->nfsd_name));
786
787 error = nfsd_create_serv(net);
788 if (error)
789 goto out;
790
791 nfsd_up_before = nn->nfsd_net_up;
792
793 error = nfsd_startup_net(net, cred);
794 if (error)
795 goto out_destroy;
796 error = nn->nfsd_serv->sv_ops->svo_setup(nn->nfsd_serv,
797 NULL, nrservs);
798 if (error)
799 goto out_shutdown;
800 /* We are holding a reference to nn->nfsd_serv which
801 * we don't want to count in the return value,
802 * so subtract 1
803 */
804 error = nn->nfsd_serv->sv_nrthreads - 1;
805out_shutdown:
806 if (error < 0 && !nfsd_up_before)
807 nfsd_shutdown_net(net);
808out_destroy:
809 nfsd_destroy(net); /* Release server */
810out:
811 mutex_unlock(&nfsd_mutex);
812 return error;
813}
814
815#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
816static bool
817nfsd_support_acl_version(int vers)
818{
819 if (vers >= NFSD_ACL_MINVERS && vers < NFSD_ACL_NRVERS)
820 return nfsd_acl_version[vers] != NULL;
821 return false;
822}
823
824static int
825nfsd_acl_rpcbind_set(struct net *net, const struct svc_program *progp,
826 u32 version, int family, unsigned short proto,
827 unsigned short port)
828{
829 if (!nfsd_support_acl_version(version) ||
830 !nfsd_vers(net_generic(net, nfsd_net_id), version, NFSD_TEST))
831 return 0;
832 return svc_generic_rpcbind_set(net, progp, version, family,
833 proto, port);
834}
835
836static __be32
837nfsd_acl_init_request(struct svc_rqst *rqstp,
838 const struct svc_program *progp,
839 struct svc_process_info *ret)
840{
841 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
842 int i;
843
844 if (likely(nfsd_support_acl_version(rqstp->rq_vers) &&
845 nfsd_vers(nn, rqstp->rq_vers, NFSD_TEST)))
846 return svc_generic_init_request(rqstp, progp, ret);
847
848 ret->mismatch.lovers = NFSD_ACL_NRVERS;
849 for (i = NFSD_ACL_MINVERS; i < NFSD_ACL_NRVERS; i++) {
850 if (nfsd_support_acl_version(rqstp->rq_vers) &&
851 nfsd_vers(nn, i, NFSD_TEST)) {
852 ret->mismatch.lovers = i;
853 break;
854 }
855 }
856 if (ret->mismatch.lovers == NFSD_ACL_NRVERS)
857 return rpc_prog_unavail;
858 ret->mismatch.hivers = NFSD_ACL_MINVERS;
859 for (i = NFSD_ACL_NRVERS - 1; i >= NFSD_ACL_MINVERS; i--) {
860 if (nfsd_support_acl_version(rqstp->rq_vers) &&
861 nfsd_vers(nn, i, NFSD_TEST)) {
862 ret->mismatch.hivers = i;
863 break;
864 }
865 }
866 return rpc_prog_mismatch;
867}
868#endif
869
870static int
871nfsd_rpcbind_set(struct net *net, const struct svc_program *progp,
872 u32 version, int family, unsigned short proto,
873 unsigned short port)
874{
875 if (!nfsd_vers(net_generic(net, nfsd_net_id), version, NFSD_TEST))
876 return 0;
877 return svc_generic_rpcbind_set(net, progp, version, family,
878 proto, port);
879}
880
881static __be32
882nfsd_init_request(struct svc_rqst *rqstp,
883 const struct svc_program *progp,
884 struct svc_process_info *ret)
885{
886 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
887 int i;
888
889 if (likely(nfsd_vers(nn, rqstp->rq_vers, NFSD_TEST)))
890 return svc_generic_init_request(rqstp, progp, ret);
891
892 ret->mismatch.lovers = NFSD_NRVERS;
893 for (i = NFSD_MINVERS; i < NFSD_NRVERS; i++) {
894 if (nfsd_vers(nn, i, NFSD_TEST)) {
895 ret->mismatch.lovers = i;
896 break;
897 }
898 }
899 if (ret->mismatch.lovers == NFSD_NRVERS)
900 return rpc_prog_unavail;
901 ret->mismatch.hivers = NFSD_MINVERS;
902 for (i = NFSD_NRVERS - 1; i >= NFSD_MINVERS; i--) {
903 if (nfsd_vers(nn, i, NFSD_TEST)) {
904 ret->mismatch.hivers = i;
905 break;
906 }
907 }
908 return rpc_prog_mismatch;
909}
910
911/*
912 * This is the NFS server kernel thread
913 */
914static int
915nfsd(void *vrqstp)
916{
917 struct svc_rqst *rqstp = (struct svc_rqst *) vrqstp;
918 struct svc_xprt *perm_sock = list_entry(rqstp->rq_server->sv_permsocks.next, typeof(struct svc_xprt), xpt_list);
919 struct net *net = perm_sock->xpt_net;
920 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
921 int err;
922
923 /* Lock module and set up kernel thread */
924 mutex_lock(&nfsd_mutex);
925
926 /* At this point, the thread shares current->fs
927 * with the init process. We need to create files with the
928 * umask as defined by the client instead of init's umask. */
929 if (unshare_fs_struct() < 0) {
930 printk("Unable to start nfsd thread: out of memory\n");
931 goto out;
932 }
933
934 current->fs->umask = 0;
935
936 /*
937 * thread is spawned with all signals set to SIG_IGN, re-enable
938 * the ones that will bring down the thread
939 */
940 allow_signal(SIGKILL);
941 allow_signal(SIGHUP);
942 allow_signal(SIGINT);
943 allow_signal(SIGQUIT);
944
945 nfsdstats.th_cnt++;
946 mutex_unlock(&nfsd_mutex);
947
948 set_freezable();
949
950 /*
951 * The main request loop
952 */
953 for (;;) {
954 /* Update sv_maxconn if it has changed */
955 rqstp->rq_server->sv_maxconn = nn->max_connections;
956
957 /*
958 * Find a socket with data available and call its
959 * recvfrom routine.
960 */
961 while ((err = svc_recv(rqstp, 60*60*HZ)) == -EAGAIN)
962 ;
963 if (err == -EINTR)
964 break;
965 validate_process_creds();
966 svc_process(rqstp);
967 validate_process_creds();
968 }
969
970 /* Clear signals before calling svc_exit_thread() */
971 flush_signals(current);
972
973 mutex_lock(&nfsd_mutex);
974 nfsdstats.th_cnt --;
975
976out:
977 rqstp->rq_server = NULL;
978
979 /* Release the thread */
980 svc_exit_thread(rqstp);
981
982 nfsd_destroy(net);
983
984 /* Release module */
985 mutex_unlock(&nfsd_mutex);
986 module_put_and_exit(0);
987 return 0;
988}
989
990/**
991 * nfsd_dispatch - Process an NFS or NFSACL Request
992 * @rqstp: incoming request
993 * @statp: pointer to location of accept_stat field in RPC Reply buffer
994 *
995 * This RPC dispatcher integrates the NFS server's duplicate reply cache.
996 *
997 * Return values:
998 * %0: Processing complete; do not send a Reply
999 * %1: Processing complete; send Reply in rqstp->rq_res
1000 */
1001int nfsd_dispatch(struct svc_rqst *rqstp, __be32 *statp)
1002{
1003 const struct svc_procedure *proc = rqstp->rq_procinfo;
1004 struct kvec *argv = &rqstp->rq_arg.head[0];
1005 struct kvec *resv = &rqstp->rq_res.head[0];
1006 __be32 *p;
1007
1008 /*
1009 * Give the xdr decoder a chance to change this if it wants
1010 * (necessary in the NFSv4.0 compound case)
1011 */
1012 rqstp->rq_cachetype = proc->pc_cachetype;
1013
1014 svcxdr_init_decode(rqstp);
1015 if (!proc->pc_decode(rqstp, argv->iov_base))
1016 goto out_decode_err;
1017
1018 switch (nfsd_cache_lookup(rqstp)) {
1019 case RC_DOIT:
1020 break;
1021 case RC_REPLY:
1022 goto out_cached_reply;
1023 case RC_DROPIT:
1024 goto out_dropit;
1025 }
1026
1027 /*
1028 * Need to grab the location to store the status, as
1029 * NFSv4 does some encoding while processing
1030 */
1031 p = resv->iov_base + resv->iov_len;
1032 svcxdr_init_encode(rqstp);
1033
1034 *statp = proc->pc_func(rqstp);
1035 if (*statp == rpc_drop_reply || test_bit(RQ_DROPME, &rqstp->rq_flags))
1036 goto out_update_drop;
1037
1038 if (!proc->pc_encode(rqstp, p))
1039 goto out_encode_err;
1040
1041 nfsd_cache_update(rqstp, rqstp->rq_cachetype, statp + 1);
1042out_cached_reply:
1043 return 1;
1044
1045out_decode_err:
1046 trace_nfsd_garbage_args_err(rqstp);
1047 *statp = rpc_garbage_args;
1048 return 1;
1049
1050out_update_drop:
1051 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
1052out_dropit:
1053 return 0;
1054
1055out_encode_err:
1056 trace_nfsd_cant_encode_err(rqstp);
1057 nfsd_cache_update(rqstp, RC_NOCACHE, NULL);
1058 *statp = rpc_system_err;
1059 return 1;
1060}
1061
1062/**
1063 * nfssvc_decode_voidarg - Decode void arguments
1064 * @rqstp: Server RPC transaction context
1065 * @p: buffer containing arguments to decode
1066 *
1067 * Return values:
1068 * %0: Arguments were not valid
1069 * %1: Decoding was successful
1070 */
1071int nfssvc_decode_voidarg(struct svc_rqst *rqstp, __be32 *p)
1072{
1073 return 1;
1074}
1075
1076/**
1077 * nfssvc_encode_voidres - Encode void results
1078 * @rqstp: Server RPC transaction context
1079 * @p: buffer in which to encode results
1080 *
1081 * Return values:
1082 * %0: Local error while encoding
1083 * %1: Encoding was successful
1084 */
1085int nfssvc_encode_voidres(struct svc_rqst *rqstp, __be32 *p)
1086{
1087 return 1;
1088}
1089
1090int nfsd_pool_stats_open(struct inode *inode, struct file *file)
1091{
1092 int ret;
1093 struct nfsd_net *nn = net_generic(inode->i_sb->s_fs_info, nfsd_net_id);
1094
1095 mutex_lock(&nfsd_mutex);
1096 if (nn->nfsd_serv == NULL) {
1097 mutex_unlock(&nfsd_mutex);
1098 return -ENODEV;
1099 }
1100 /* bump up the psudo refcount while traversing */
1101 svc_get(nn->nfsd_serv);
1102 ret = svc_pool_stats_open(nn->nfsd_serv, file);
1103 mutex_unlock(&nfsd_mutex);
1104 return ret;
1105}
1106
1107int nfsd_pool_stats_release(struct inode *inode, struct file *file)
1108{
1109 int ret = seq_release(inode, file);
1110 struct net *net = inode->i_sb->s_fs_info;
1111
1112 mutex_lock(&nfsd_mutex);
1113 /* this function really, really should have been called svc_put() */
1114 nfsd_destroy(net);
1115 mutex_unlock(&nfsd_mutex);
1116 return ret;
1117}