1 // SPDX-License-Identifier: GPL-2.0
3 * Central processing for nfsd.
5 * Authors: Olaf Kirch (okir@monad.swb.de)
7 * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
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 #include <linux/siphash.h>
17 #include <linux/sunrpc/stats.h>
18 #include <linux/sunrpc/svcsock.h>
19 #include <linux/sunrpc/svc_xprt.h>
20 #include <linux/lockd/bind.h>
21 #include <linux/nfsacl.h>
22 #include <linux/nfslocalio.h>
23 #include <linux/seq_file.h>
24 #include <linux/inetdevice.h>
25 #include <net/addrconf.h>
27 #include <net/net_namespace.h>
32 #include "filecache.h"
36 #define NFSDDBG_FACILITY NFSDDBG_SVC
38 atomic_t nfsd_th_cnt = ATOMIC_INIT(0);
39 static int nfsd(void *vrqstp);
40 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
41 static int nfsd_acl_rpcbind_set(struct net *,
42 const struct svc_program *,
46 static __be32 nfsd_acl_init_request(struct svc_rqst *,
47 const struct svc_program *,
48 struct svc_process_info *);
50 static int nfsd_rpcbind_set(struct net *,
51 const struct svc_program *,
55 static __be32 nfsd_init_request(struct svc_rqst *,
56 const struct svc_program *,
57 struct svc_process_info *);
60 * nfsd_mutex protects nn->nfsd_serv -- both the pointer itself and some members
61 * of the svc_serv struct such as ->sv_temp_socks and ->sv_permsocks.
63 * Finally, the nfsd_mutex also protects some of the global variables that are
64 * accessed when nfsd starts and that are settable via the write_* routines in
65 * nfsctl.c. In particular:
67 * user_recovery_dirname
71 DEFINE_MUTEX(nfsd_mutex);
73 #if IS_ENABLED(CONFIG_NFS_LOCALIO)
74 static const struct svc_version *localio_versions[] = {
75 [1] = &localio_version1,
78 #define NFSD_LOCALIO_NRVERS ARRAY_SIZE(localio_versions)
80 #endif /* CONFIG_NFS_LOCALIO */
82 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
83 static const struct svc_version *nfsd_acl_version[] = {
84 # if defined(CONFIG_NFSD_V2_ACL)
85 [2] = &nfsd_acl_version2,
87 # if defined(CONFIG_NFSD_V3_ACL)
88 [3] = &nfsd_acl_version3,
92 #define NFSD_ACL_MINVERS 2
93 #define NFSD_ACL_NRVERS ARRAY_SIZE(nfsd_acl_version)
95 #endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */
97 static const struct svc_version *nfsd_version[NFSD_MAXVERS+1] = {
98 #if defined(CONFIG_NFSD_V2)
101 [3] = &nfsd_version3,
102 #if defined(CONFIG_NFSD_V4)
103 [4] = &nfsd_version4,
107 struct svc_program nfsd_programs[] = {
109 .pg_prog = NFS_PROGRAM, /* program number */
110 .pg_nvers = NFSD_MAXVERS+1, /* nr of entries in nfsd_version */
111 .pg_vers = nfsd_version, /* version table */
112 .pg_name = "nfsd", /* program name */
113 .pg_class = "nfsd", /* authentication class */
114 .pg_authenticate = svc_set_client, /* export authentication */
115 .pg_init_request = nfsd_init_request,
116 .pg_rpcbind_set = nfsd_rpcbind_set,
118 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
120 .pg_prog = NFS_ACL_PROGRAM,
121 .pg_nvers = NFSD_ACL_NRVERS,
122 .pg_vers = nfsd_acl_version,
125 .pg_authenticate = svc_set_client,
126 .pg_init_request = nfsd_acl_init_request,
127 .pg_rpcbind_set = nfsd_acl_rpcbind_set,
129 #endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */
130 #if IS_ENABLED(CONFIG_NFS_LOCALIO)
132 .pg_prog = NFS_LOCALIO_PROGRAM,
133 .pg_nvers = NFSD_LOCALIO_NRVERS,
134 .pg_vers = localio_versions,
135 .pg_name = "nfslocalio",
137 .pg_authenticate = svc_set_client,
138 .pg_init_request = svc_generic_init_request,
139 .pg_rpcbind_set = svc_generic_rpcbind_set,
141 #endif /* CONFIG_NFS_LOCALIO */
144 bool nfsd_support_version(int vers)
146 if (vers >= NFSD_MINVERS && vers <= NFSD_MAXVERS)
147 return nfsd_version[vers] != NULL;
151 int nfsd_vers(struct nfsd_net *nn, int vers, enum vers_op change)
153 if (vers < NFSD_MINVERS || vers > NFSD_MAXVERS)
157 nn->nfsd_versions[vers] = nfsd_support_version(vers);
160 nn->nfsd_versions[vers] = false;
163 return nn->nfsd_versions[vers];
165 return nfsd_support_version(vers);
171 nfsd_adjust_nfsd_versions4(struct nfsd_net *nn)
175 for (i = 0; i <= NFSD_SUPPORTED_MINOR_VERSION; i++) {
176 if (nn->nfsd4_minorversions[i])
179 nfsd_vers(nn, 4, NFSD_CLEAR);
182 int nfsd_minorversion(struct nfsd_net *nn, u32 minorversion, enum vers_op change)
184 if (minorversion > NFSD_SUPPORTED_MINOR_VERSION &&
185 change != NFSD_AVAIL)
190 nfsd_vers(nn, 4, NFSD_SET);
191 nn->nfsd4_minorversions[minorversion] =
192 nfsd_vers(nn, 4, NFSD_TEST);
195 nn->nfsd4_minorversions[minorversion] = false;
196 nfsd_adjust_nfsd_versions4(nn);
199 return nn->nfsd4_minorversions[minorversion];
201 return minorversion <= NFSD_SUPPORTED_MINOR_VERSION &&
202 nfsd_vers(nn, 4, NFSD_AVAIL);
207 bool nfsd_net_try_get(struct net *net) __must_hold(rcu)
209 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
211 return (nn && percpu_ref_tryget_live(&nn->nfsd_net_ref));
214 void nfsd_net_put(struct net *net) __must_hold(rcu)
216 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
218 percpu_ref_put(&nn->nfsd_net_ref);
221 static void nfsd_net_done(struct percpu_ref *ref)
223 struct nfsd_net *nn = container_of(ref, struct nfsd_net, nfsd_net_ref);
225 complete(&nn->nfsd_net_confirm_done);
228 static void nfsd_net_free(struct percpu_ref *ref)
230 struct nfsd_net *nn = container_of(ref, struct nfsd_net, nfsd_net_ref);
232 complete(&nn->nfsd_net_free_done);
236 * Maximum number of nfsd processes
238 #define NFSD_MAXSERVS 8192
240 int nfsd_nrthreads(struct net *net)
243 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
245 mutex_lock(&nfsd_mutex);
247 rv = nn->nfsd_serv->sv_nrthreads;
248 mutex_unlock(&nfsd_mutex);
252 static int nfsd_init_socks(struct net *net, const struct cred *cred)
255 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
257 if (!list_empty(&nn->nfsd_serv->sv_permsocks))
260 error = svc_xprt_create(nn->nfsd_serv, "udp", net, PF_INET, NFS_PORT,
261 SVC_SOCK_DEFAULTS, cred);
265 error = svc_xprt_create(nn->nfsd_serv, "tcp", net, PF_INET, NFS_PORT,
266 SVC_SOCK_DEFAULTS, cred);
273 static int nfsd_users = 0;
275 static int nfsd_startup_generic(void)
282 ret = nfsd_file_cache_init();
286 ret = nfs4_state_start();
292 nfsd_file_cache_shutdown();
298 static void nfsd_shutdown_generic(void)
303 nfs4_state_shutdown();
304 nfsd_file_cache_shutdown();
307 static bool nfsd_needs_lockd(struct nfsd_net *nn)
309 return nfsd_vers(nn, 2, NFSD_TEST) || nfsd_vers(nn, 3, NFSD_TEST);
313 * nfsd_copy_write_verifier - Atomically copy a write verifier
314 * @verf: buffer in which to receive the verifier cookie
315 * @nn: NFS net namespace
317 * This function provides a wait-free mechanism for copying the
318 * namespace's write verifier without tearing it.
320 void nfsd_copy_write_verifier(__be32 verf[2], struct nfsd_net *nn)
325 seq = read_seqbegin(&nn->writeverf_lock);
326 memcpy(verf, nn->writeverf, sizeof(nn->writeverf));
327 } while (read_seqretry(&nn->writeverf_lock, seq));
330 static void nfsd_reset_write_verifier_locked(struct nfsd_net *nn)
332 struct timespec64 now;
336 * Because the time value is hashed, y2038 time_t overflow
337 * is irrelevant in this usage.
339 ktime_get_raw_ts64(&now);
340 verf = siphash_2u64(now.tv_sec, now.tv_nsec, &nn->siphash_key);
341 memcpy(nn->writeverf, &verf, sizeof(nn->writeverf));
345 * nfsd_reset_write_verifier - Generate a new write verifier
346 * @nn: NFS net namespace
348 * This function updates the ->writeverf field of @nn. This field
349 * contains an opaque cookie that, according to Section 18.32.3 of
350 * RFC 8881, "the client can use to determine whether a server has
351 * changed instance state (e.g., server restart) between a call to
352 * WRITE and a subsequent call to either WRITE or COMMIT. This
353 * cookie MUST be unchanged during a single instance of the NFSv4.1
354 * server and MUST be unique between instances of the NFSv4.1
357 void nfsd_reset_write_verifier(struct nfsd_net *nn)
359 write_seqlock(&nn->writeverf_lock);
360 nfsd_reset_write_verifier_locked(nn);
361 write_sequnlock(&nn->writeverf_lock);
365 * Crank up a set of per-namespace resources for a new NFSD instance,
366 * including lockd, a duplicate reply cache, an open file cache
367 * instance, and a cache of NFSv4 state objects.
369 static int nfsd_startup_net(struct net *net, const struct cred *cred)
371 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
377 ret = nfsd_startup_generic();
380 ret = nfsd_init_socks(net, cred);
384 if (nfsd_needs_lockd(nn) && !nn->lockd_up) {
385 ret = lockd_up(net, cred);
391 ret = nfsd_file_cache_start_net(net);
395 ret = nfsd_reply_cache_init(nn);
399 #ifdef CONFIG_NFSD_V4_2_INTER_SSC
400 nfsd4_ssc_init_umount_work(nn);
402 ret = nfs4_state_start_net(net);
404 goto out_reply_cache;
406 nn->nfsd_net_up = true;
410 nfsd_reply_cache_shutdown(nn);
412 nfsd_file_cache_shutdown_net(net);
416 nn->lockd_up = false;
419 nfsd_shutdown_generic();
423 static void nfsd_shutdown_net(struct net *net)
425 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
427 if (!nn->nfsd_net_up)
430 percpu_ref_kill_and_confirm(&nn->nfsd_net_ref, nfsd_net_done);
431 wait_for_completion(&nn->nfsd_net_confirm_done);
433 nfsd_export_flush(net);
434 nfs4_state_shutdown_net(net);
435 nfsd_reply_cache_shutdown(nn);
436 nfsd_file_cache_shutdown_net(net);
439 nn->lockd_up = false;
442 wait_for_completion(&nn->nfsd_net_free_done);
443 percpu_ref_exit(&nn->nfsd_net_ref);
445 nn->nfsd_net_up = false;
446 nfsd_shutdown_generic();
449 static DEFINE_SPINLOCK(nfsd_notifier_lock);
450 static int nfsd_inetaddr_event(struct notifier_block *this, unsigned long event,
453 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
454 struct net_device *dev = ifa->ifa_dev->dev;
455 struct net *net = dev_net(dev);
456 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
457 struct sockaddr_in sin;
459 if (event != NETDEV_DOWN || !nn->nfsd_serv)
462 spin_lock(&nfsd_notifier_lock);
464 dprintk("nfsd_inetaddr_event: removed %pI4\n", &ifa->ifa_local);
465 sin.sin_family = AF_INET;
466 sin.sin_addr.s_addr = ifa->ifa_local;
467 svc_age_temp_xprts_now(nn->nfsd_serv, (struct sockaddr *)&sin);
469 spin_unlock(&nfsd_notifier_lock);
475 static struct notifier_block nfsd_inetaddr_notifier = {
476 .notifier_call = nfsd_inetaddr_event,
479 #if IS_ENABLED(CONFIG_IPV6)
480 static int nfsd_inet6addr_event(struct notifier_block *this,
481 unsigned long event, void *ptr)
483 struct inet6_ifaddr *ifa = (struct inet6_ifaddr *)ptr;
484 struct net_device *dev = ifa->idev->dev;
485 struct net *net = dev_net(dev);
486 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
487 struct sockaddr_in6 sin6;
489 if (event != NETDEV_DOWN || !nn->nfsd_serv)
492 spin_lock(&nfsd_notifier_lock);
494 dprintk("nfsd_inet6addr_event: removed %pI6\n", &ifa->addr);
495 sin6.sin6_family = AF_INET6;
496 sin6.sin6_addr = ifa->addr;
497 if (ipv6_addr_type(&sin6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
498 sin6.sin6_scope_id = ifa->idev->dev->ifindex;
499 svc_age_temp_xprts_now(nn->nfsd_serv, (struct sockaddr *)&sin6);
501 spin_unlock(&nfsd_notifier_lock);
507 static struct notifier_block nfsd_inet6addr_notifier = {
508 .notifier_call = nfsd_inet6addr_event,
512 /* Only used under nfsd_mutex, so this atomic may be overkill: */
513 static atomic_t nfsd_notifier_refcount = ATOMIC_INIT(0);
516 * nfsd_destroy_serv - tear down NFSD's svc_serv for a namespace
517 * @net: network namespace the NFS service is associated with
519 void nfsd_destroy_serv(struct net *net)
521 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
522 struct svc_serv *serv = nn->nfsd_serv;
524 lockdep_assert_held(&nfsd_mutex);
526 spin_lock(&nfsd_notifier_lock);
527 nn->nfsd_serv = NULL;
528 spin_unlock(&nfsd_notifier_lock);
530 /* check if the notifier still has clients */
531 if (atomic_dec_return(&nfsd_notifier_refcount) == 0) {
532 unregister_inetaddr_notifier(&nfsd_inetaddr_notifier);
533 #if IS_ENABLED(CONFIG_IPV6)
534 unregister_inet6addr_notifier(&nfsd_inet6addr_notifier);
538 svc_xprt_destroy_all(serv, net);
541 * write_ports can create the server without actually starting
542 * any threads--if we get shut down before any threads are
543 * started, then nfsd_destroy_serv will be run before any of this
544 * other initialization has been done except the rpcb information.
546 svc_rpcb_cleanup(serv, net);
548 nfsd_shutdown_net(net);
552 void nfsd_reset_versions(struct nfsd_net *nn)
556 for (i = 0; i <= NFSD_MAXVERS; i++)
557 if (nfsd_vers(nn, i, NFSD_TEST))
560 for (i = 0; i <= NFSD_MAXVERS; i++)
562 nfsd_vers(nn, i, NFSD_SET);
565 while (nfsd_minorversion(nn, minor, NFSD_SET) >= 0)
570 static int nfsd_get_default_max_blksize(void)
573 unsigned long long target;
577 target = (i.totalram - i.totalhigh) << PAGE_SHIFT;
579 * Aim for 1/4096 of memory per thread This gives 1MB on 4Gig
580 * machines, but only uses 32K on 128M machines. Bottom out at
581 * 8K on 32M and smaller. Of course, this is only a default.
585 ret = NFSSVC_DEFBLKSIZE;
586 while (ret > target && ret >= 8*1024*2)
591 void nfsd_shutdown_threads(struct net *net)
593 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
594 struct svc_serv *serv;
596 mutex_lock(&nfsd_mutex);
597 serv = nn->nfsd_serv;
599 mutex_unlock(&nfsd_mutex);
603 /* Kill outstanding nfsd threads */
604 svc_set_num_threads(serv, NULL, 0);
605 nfsd_destroy_serv(net);
606 mutex_unlock(&nfsd_mutex);
609 struct svc_rqst *nfsd_current_rqst(void)
611 if (kthread_func(current) == nfsd)
612 return kthread_data(current);
616 int nfsd_create_serv(struct net *net)
619 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
620 struct svc_serv *serv;
622 WARN_ON(!mutex_is_locked(&nfsd_mutex));
626 error = percpu_ref_init(&nn->nfsd_net_ref, nfsd_net_free,
630 init_completion(&nn->nfsd_net_free_done);
631 init_completion(&nn->nfsd_net_confirm_done);
633 if (nfsd_max_blksize == 0)
634 nfsd_max_blksize = nfsd_get_default_max_blksize();
635 nfsd_reset_versions(nn);
636 serv = svc_create_pooled(nfsd_programs, ARRAY_SIZE(nfsd_programs),
638 nfsd_max_blksize, nfsd);
642 error = svc_bind(serv, net);
647 spin_lock(&nfsd_notifier_lock);
648 nn->nfsd_serv = serv;
649 spin_unlock(&nfsd_notifier_lock);
651 /* check if the notifier is already set */
652 if (atomic_inc_return(&nfsd_notifier_refcount) == 1) {
653 register_inetaddr_notifier(&nfsd_inetaddr_notifier);
654 #if IS_ENABLED(CONFIG_IPV6)
655 register_inet6addr_notifier(&nfsd_inet6addr_notifier);
658 nfsd_reset_write_verifier(nn);
662 int nfsd_nrpools(struct net *net)
664 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
666 if (nn->nfsd_serv == NULL)
669 return nn->nfsd_serv->sv_nrpools;
672 int nfsd_get_nrthreads(int n, int *nthreads, struct net *net)
674 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
675 struct svc_serv *serv = nn->nfsd_serv;
679 for (i = 0; i < serv->sv_nrpools && i < n; i++)
680 nthreads[i] = serv->sv_pools[i].sp_nrthreads;
685 * nfsd_set_nrthreads - set the number of running threads in the net's service
686 * @n: number of array members in @nthreads
687 * @nthreads: array of thread counts for each pool
688 * @net: network namespace to operate within
690 * This function alters the number of running threads for the given network
691 * namespace in each pool. If passed an array longer then the number of pools
692 * the extra pool settings are ignored. If passed an array shorter than the
693 * number of pools, the missing values are interpreted as 0's.
695 * Returns 0 on success or a negative errno on error.
697 int nfsd_set_nrthreads(int n, int *nthreads, struct net *net)
702 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
704 lockdep_assert_held(&nfsd_mutex);
706 if (nn->nfsd_serv == NULL || n <= 0)
710 * Special case: When n == 1, pass in NULL for the pool, so that the
711 * change is distributed equally among them.
714 return svc_set_num_threads(nn->nfsd_serv, NULL, nthreads[0]);
716 if (n > nn->nfsd_serv->sv_nrpools)
717 n = nn->nfsd_serv->sv_nrpools;
719 /* enforce a global maximum number of threads */
721 for (i = 0; i < n; i++) {
722 nthreads[i] = min(nthreads[i], NFSD_MAXSERVS);
725 if (tot > NFSD_MAXSERVS) {
726 /* total too large: scale down requested numbers */
727 for (i = 0; i < n && tot > 0; i++) {
728 int new = nthreads[i] * NFSD_MAXSERVS / tot;
729 tot -= (nthreads[i] - new);
732 for (i = 0; i < n && tot > 0; i++) {
738 /* apply the new numbers */
739 for (i = 0; i < n; i++) {
740 err = svc_set_num_threads(nn->nfsd_serv,
741 &nn->nfsd_serv->sv_pools[i],
747 /* Anything undefined in array is considered to be 0 */
748 for (i = n; i < nn->nfsd_serv->sv_nrpools; ++i) {
749 err = svc_set_num_threads(nn->nfsd_serv,
750 &nn->nfsd_serv->sv_pools[i],
760 * nfsd_svc: start up or shut down the nfsd server
761 * @n: number of array members in @nthreads
762 * @nthreads: array of thread counts for each pool
763 * @net: network namespace to operate within
764 * @cred: credentials to use for xprt creation
765 * @scope: server scope value (defaults to nodename)
767 * Adjust the number of threads in each pool and return the new
768 * total number of threads in the service.
771 nfsd_svc(int n, int *nthreads, struct net *net, const struct cred *cred, const char *scope)
774 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
775 struct svc_serv *serv;
777 lockdep_assert_held(&nfsd_mutex);
779 dprintk("nfsd: creating service\n");
781 strscpy(nn->nfsd_name, scope ? scope : utsname()->nodename,
782 sizeof(nn->nfsd_name));
784 error = nfsd_create_serv(net);
787 serv = nn->nfsd_serv;
789 error = nfsd_startup_net(net, cred);
792 error = nfsd_set_nrthreads(n, nthreads, net);
795 error = serv->sv_nrthreads;
797 if (serv->sv_nrthreads == 0)
798 nfsd_destroy_serv(net);
803 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
805 nfsd_support_acl_version(int vers)
807 if (vers >= NFSD_ACL_MINVERS && vers < NFSD_ACL_NRVERS)
808 return nfsd_acl_version[vers] != NULL;
813 nfsd_acl_rpcbind_set(struct net *net, const struct svc_program *progp,
814 u32 version, int family, unsigned short proto,
817 if (!nfsd_support_acl_version(version) ||
818 !nfsd_vers(net_generic(net, nfsd_net_id), version, NFSD_TEST))
820 return svc_generic_rpcbind_set(net, progp, version, family,
825 nfsd_acl_init_request(struct svc_rqst *rqstp,
826 const struct svc_program *progp,
827 struct svc_process_info *ret)
829 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
832 if (likely(nfsd_support_acl_version(rqstp->rq_vers) &&
833 nfsd_vers(nn, rqstp->rq_vers, NFSD_TEST)))
834 return svc_generic_init_request(rqstp, progp, ret);
836 ret->mismatch.lovers = NFSD_ACL_NRVERS;
837 for (i = NFSD_ACL_MINVERS; i < NFSD_ACL_NRVERS; i++) {
838 if (nfsd_support_acl_version(rqstp->rq_vers) &&
839 nfsd_vers(nn, i, NFSD_TEST)) {
840 ret->mismatch.lovers = i;
844 if (ret->mismatch.lovers == NFSD_ACL_NRVERS)
845 return rpc_prog_unavail;
846 ret->mismatch.hivers = NFSD_ACL_MINVERS;
847 for (i = NFSD_ACL_NRVERS - 1; i >= NFSD_ACL_MINVERS; i--) {
848 if (nfsd_support_acl_version(rqstp->rq_vers) &&
849 nfsd_vers(nn, i, NFSD_TEST)) {
850 ret->mismatch.hivers = i;
854 return rpc_prog_mismatch;
859 nfsd_rpcbind_set(struct net *net, const struct svc_program *progp,
860 u32 version, int family, unsigned short proto,
863 if (!nfsd_vers(net_generic(net, nfsd_net_id), version, NFSD_TEST))
865 return svc_generic_rpcbind_set(net, progp, version, family,
870 nfsd_init_request(struct svc_rqst *rqstp,
871 const struct svc_program *progp,
872 struct svc_process_info *ret)
874 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
877 if (likely(nfsd_vers(nn, rqstp->rq_vers, NFSD_TEST)))
878 return svc_generic_init_request(rqstp, progp, ret);
880 ret->mismatch.lovers = NFSD_MAXVERS + 1;
881 for (i = NFSD_MINVERS; i <= NFSD_MAXVERS; i++) {
882 if (nfsd_vers(nn, i, NFSD_TEST)) {
883 ret->mismatch.lovers = i;
887 if (ret->mismatch.lovers > NFSD_MAXVERS)
888 return rpc_prog_unavail;
889 ret->mismatch.hivers = NFSD_MINVERS;
890 for (i = NFSD_MAXVERS; i >= NFSD_MINVERS; i--) {
891 if (nfsd_vers(nn, i, NFSD_TEST)) {
892 ret->mismatch.hivers = i;
896 return rpc_prog_mismatch;
900 * This is the NFS server kernel thread
905 struct svc_rqst *rqstp = (struct svc_rqst *) vrqstp;
906 struct svc_xprt *perm_sock = list_entry(rqstp->rq_server->sv_permsocks.next, typeof(struct svc_xprt), xpt_list);
907 struct net *net = perm_sock->xpt_net;
908 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
910 /* At this point, the thread shares current->fs
911 * with the init process. We need to create files with the
912 * umask as defined by the client instead of init's umask.
914 svc_thread_init_status(rqstp, unshare_fs_struct());
916 current->fs->umask = 0;
918 atomic_inc(&nfsd_th_cnt);
923 * The main request loop
925 while (!svc_thread_should_stop(rqstp)) {
927 nfsd_file_net_dispose(nn);
930 atomic_dec(&nfsd_th_cnt);
932 /* Release the thread */
933 svc_exit_thread(rqstp);
938 * nfsd_dispatch - Process an NFS or NFSACL or LOCALIO Request
939 * @rqstp: incoming request
941 * This RPC dispatcher integrates the NFS server's duplicate reply cache.
944 * %0: Processing complete; do not send a Reply
945 * %1: Processing complete; send Reply in rqstp->rq_res
947 int nfsd_dispatch(struct svc_rqst *rqstp)
949 const struct svc_procedure *proc = rqstp->rq_procinfo;
950 __be32 *statp = rqstp->rq_accept_statp;
951 struct nfsd_cacherep *rp;
952 unsigned int start, len;
956 * Give the xdr decoder a chance to change this if it wants
957 * (necessary in the NFSv4.0 compound case)
959 rqstp->rq_cachetype = proc->pc_cachetype;
962 * ->pc_decode advances the argument stream past the NFS
963 * Call header, so grab the header's starting location and
964 * size now for the call to nfsd_cache_lookup().
966 start = xdr_stream_pos(&rqstp->rq_arg_stream);
967 len = xdr_stream_remaining(&rqstp->rq_arg_stream);
968 if (!proc->pc_decode(rqstp, &rqstp->rq_arg_stream))
972 * Release rq_status_counter setting it to an odd value after the rpc
973 * request has been properly parsed. rq_status_counter is used to
974 * notify the consumers if the rqstp fields are stable
975 * (rq_status_counter is odd) or not meaningful (rq_status_counter
978 smp_store_release(&rqstp->rq_status_counter, rqstp->rq_status_counter | 1);
981 switch (nfsd_cache_lookup(rqstp, start, len, &rp)) {
985 goto out_cached_reply;
990 nfs_reply = xdr_inline_decode(&rqstp->rq_res_stream, 0);
991 *statp = proc->pc_func(rqstp);
992 if (test_bit(RQ_DROPME, &rqstp->rq_flags))
993 goto out_update_drop;
995 if (!proc->pc_encode(rqstp, &rqstp->rq_res_stream))
999 * Release rq_status_counter setting it to an even value after the rpc
1000 * request has been properly processed.
1002 smp_store_release(&rqstp->rq_status_counter, rqstp->rq_status_counter + 1);
1004 nfsd_cache_update(rqstp, rp, rqstp->rq_cachetype, nfs_reply);
1009 trace_nfsd_garbage_args_err(rqstp);
1010 *statp = rpc_garbage_args;
1014 nfsd_cache_update(rqstp, rp, RC_NOCACHE, NULL);
1019 trace_nfsd_cant_encode_err(rqstp);
1020 nfsd_cache_update(rqstp, rp, RC_NOCACHE, NULL);
1021 *statp = rpc_system_err;
1026 * nfssvc_decode_voidarg - Decode void arguments
1027 * @rqstp: Server RPC transaction context
1028 * @xdr: XDR stream positioned at arguments to decode
1031 * %false: Arguments were not valid
1032 * %true: Decoding was successful
1034 bool nfssvc_decode_voidarg(struct svc_rqst *rqstp, struct xdr_stream *xdr)
1040 * nfssvc_encode_voidres - Encode void results
1041 * @rqstp: Server RPC transaction context
1042 * @xdr: XDR stream into which to encode results
1045 * %false: Local error while encoding
1046 * %true: Encoding was successful
1048 bool nfssvc_encode_voidres(struct svc_rqst *rqstp, struct xdr_stream *xdr)