blob: 6e3bd42c21cdddb4860d53f51c853b2f0f711bae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/callback.c
3 *
4 * Copyright (C) 2004 Trond Myklebust
5 *
6 * NFSv4 callback handling
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/completion.h>
10#include <linux/ip.h>
11#include <linux/module.h>
12#include <linux/smp_lock.h>
13#include <linux/sunrpc/svc.h>
14#include <linux/sunrpc/svcsock.h>
15#include <linux/nfs_fs.h>
Ingo Molnar353ab6e2006-03-26 01:37:12 -080016#include <linux/mutex.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070017#include <linux/freezer.h>
Jeff Laytona277e332008-02-20 08:55:30 -050018#include <linux/kthread.h>
Olga Kornievskaia945b34a2008-12-23 16:18:34 -050019#include <linux/sunrpc/svcauth_gss.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020020
21#include <net/inet_sock.h>
22
Trond Myklebust4ce79712005-06-22 17:16:21 +000023#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "callback.h"
David Howells24c8dbb2006-08-22 20:06:10 -040025#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#define NFSDBG_FACILITY NFSDBG_CALLBACK
28
29struct nfs_callback_data {
30 unsigned int users;
Jeff Layton5afc5972008-06-11 10:03:11 -040031 struct svc_rqst *rqst;
Jeff Laytona277e332008-02-20 08:55:30 -050032 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
35static struct nfs_callback_data nfs_callback_info;
Ingo Molnar353ab6e2006-03-26 01:37:12 -080036static DEFINE_MUTEX(nfs_callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static struct svc_program nfs4_callback_program;
38
Trond Myklebusta72b4422006-01-03 09:55:41 +010039unsigned int nfs_callback_set_tcpport;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040unsigned short nfs_callback_tcpport;
Chuck Leverf738f512009-03-18 20:48:06 -040041unsigned short nfs_callback_tcpport6;
David Howells7d4e2742006-08-22 20:06:07 -040042static const int nfs_set_port_min = 0;
43static const int nfs_set_port_max = 65535;
44
45static int param_set_port(const char *val, struct kernel_param *kp)
46{
47 char *endp;
48 int num = simple_strtol(val, &endp, 0);
49 if (endp == val || *endp || num < nfs_set_port_min || num > nfs_set_port_max)
50 return -EINVAL;
51 *((int *)kp->arg) = num;
52 return 0;
53}
54
55module_param_call(callback_tcpport, param_set_port, param_get_int,
56 &nfs_callback_set_tcpport, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
59 * This is the callback kernel thread.
60 */
Jeff Laytona277e332008-02-20 08:55:30 -050061static int
62nfs_callback_svc(void *vrqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Jeff Layton06e02d62008-04-08 15:40:07 -040064 int err, preverr = 0;
Jeff Laytona277e332008-02-20 08:55:30 -050065 struct svc_rqst *rqstp = vrqstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Rafael J. Wysocki83144182007-07-17 04:03:35 -070067 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Jeff Laytona277e332008-02-20 08:55:30 -050069 /*
70 * FIXME: do we really need to run this under the BKL? If so, please
71 * add a comment about what it's intended to protect.
72 */
73 lock_kernel();
74 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 /*
76 * Listen for a request on the socket
77 */
NeilBrown6fb2b472006-10-02 02:17:50 -070078 err = svc_recv(rqstp, MAX_SCHEDULE_TIMEOUT);
Jeff Layton06e02d62008-04-08 15:40:07 -040079 if (err == -EAGAIN || err == -EINTR) {
80 preverr = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 }
Jeff Layton06e02d62008-04-08 15:40:07 -040083 if (err < 0) {
84 if (err != preverr) {
85 printk(KERN_WARNING "%s: unexpected error "
86 "from svc_recv (%d)\n", __func__, err);
87 preverr = err;
88 }
89 schedule_timeout_uninterruptible(HZ);
90 continue;
91 }
92 preverr = err;
NeilBrown6fb2b472006-10-02 02:17:50 -070093 svc_process(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 unlock_kernel();
Jeff Laytona277e332008-02-20 08:55:30 -050096 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99/*
Jeff Layton5afc5972008-06-11 10:03:11 -0400100 * Bring up the callback thread if it is not already up.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
102int nfs_callback_up(void)
103{
Jeff Layton8e600292008-02-11 10:00:20 -0500104 struct svc_serv *serv = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int ret = 0;
106
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800107 mutex_lock(&nfs_callback_mutex);
Jeff Laytona277e332008-02-20 08:55:30 -0500108 if (nfs_callback_info.users++ || nfs_callback_info.task != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 goto out;
Chuck Lever49a90722009-03-18 20:46:29 -0400110 serv = svc_create(&nfs4_callback_program, NFS4_CALLBACK_BUFSIZE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 ret = -ENOMEM;
112 if (!serv)
113 goto out_err;
Chuck Lever482fb942007-02-12 00:53:29 -0800114
Chuck Lever26298ca2009-03-18 20:46:36 -0400115 ret = svc_create_xprt(serv, "tcp", PF_INET,
Chuck Lever9652ada2009-03-18 20:46:21 -0400116 nfs_callback_set_tcpport, SVC_SOCK_ANONYMOUS);
Chuck Lever482fb942007-02-12 00:53:29 -0800117 if (ret <= 0)
Jeff Layton8e600292008-02-11 10:00:20 -0500118 goto out_err;
Chuck Lever482fb942007-02-12 00:53:29 -0800119 nfs_callback_tcpport = ret;
Chuck Lever18de9732008-10-16 17:41:11 -0400120 dprintk("NFS: Callback listener port = %u (af %u)\n",
Chuck Lever26298ca2009-03-18 20:46:36 -0400121 nfs_callback_tcpport, PF_INET);
Chuck Lever482fb942007-02-12 00:53:29 -0800122
Chuck Leverf738f512009-03-18 20:48:06 -0400123#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
124 ret = svc_create_xprt(serv, "tcp", PF_INET6,
125 nfs_callback_set_tcpport, SVC_SOCK_ANONYMOUS);
126 if (ret > 0) {
127 nfs_callback_tcpport6 = ret;
128 dprintk("NFS: Callback listener port = %u (af %u)\n",
129 nfs_callback_tcpport6, PF_INET6);
Chuck Lever18fc3162009-06-17 18:02:10 -0700130 } else if (ret == -EAFNOSUPPORT)
131 ret = 0;
132 else
Chuck Leverf738f512009-03-18 20:48:06 -0400133 goto out_err;
134#endif /* defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */
135
Jeff Layton5afc5972008-06-11 10:03:11 -0400136 nfs_callback_info.rqst = svc_prepare_thread(serv, &serv->sv_pools[0]);
137 if (IS_ERR(nfs_callback_info.rqst)) {
138 ret = PTR_ERR(nfs_callback_info.rqst);
139 nfs_callback_info.rqst = NULL;
Jeff Layton8e600292008-02-11 10:00:20 -0500140 goto out_err;
Jeff Laytona277e332008-02-20 08:55:30 -0500141 }
142
143 svc_sock_update_bufs(serv);
Jeff Laytona277e332008-02-20 08:55:30 -0500144
Jeff Layton5afc5972008-06-11 10:03:11 -0400145 nfs_callback_info.task = kthread_run(nfs_callback_svc,
146 nfs_callback_info.rqst,
Jeff Laytona277e332008-02-20 08:55:30 -0500147 "nfsv4-svc");
148 if (IS_ERR(nfs_callback_info.task)) {
149 ret = PTR_ERR(nfs_callback_info.task);
Jeff Layton5afc5972008-06-11 10:03:11 -0400150 svc_exit_thread(nfs_callback_info.rqst);
151 nfs_callback_info.rqst = NULL;
Jeff Laytona277e332008-02-20 08:55:30 -0500152 nfs_callback_info.task = NULL;
Jeff Laytona277e332008-02-20 08:55:30 -0500153 goto out_err;
154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155out:
Jeff Layton8e600292008-02-11 10:00:20 -0500156 /*
157 * svc_create creates the svc_serv with sv_nrthreads == 1, and then
Jeff Laytona277e332008-02-20 08:55:30 -0500158 * svc_prepare_thread increments that. So we need to call svc_destroy
Jeff Layton8e600292008-02-11 10:00:20 -0500159 * on both success and failure so that the refcount is 1 when the
160 * thread exits.
161 */
162 if (serv)
163 svc_destroy(serv);
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800164 mutex_unlock(&nfs_callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return ret;
Jeff Layton8e600292008-02-11 10:00:20 -0500166out_err:
Chuck Lever18de9732008-10-16 17:41:11 -0400167 dprintk("NFS: Couldn't create callback socket or server thread; "
168 "err = %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 nfs_callback_info.users--;
170 goto out;
171}
172
173/*
Jeff Layton5afc5972008-06-11 10:03:11 -0400174 * Kill the callback thread if it's no longer being used.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
David Howells5ae1fbc2006-08-22 20:06:08 -0400176void nfs_callback_down(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800178 mutex_lock(&nfs_callback_mutex);
Trond Myklebust1dd761e2006-03-20 13:44:49 -0500179 nfs_callback_info.users--;
Jeff Layton5afc5972008-06-11 10:03:11 -0400180 if (nfs_callback_info.users == 0 && nfs_callback_info.task != NULL) {
Jeff Laytona277e332008-02-20 08:55:30 -0500181 kthread_stop(nfs_callback_info.task);
Jeff Layton5afc5972008-06-11 10:03:11 -0400182 svc_exit_thread(nfs_callback_info.rqst);
183 nfs_callback_info.rqst = NULL;
184 nfs_callback_info.task = NULL;
185 }
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800186 mutex_unlock(&nfs_callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Olga Kornievskaia945b34a2008-12-23 16:18:34 -0500189static int check_gss_callback_principal(struct nfs_client *clp,
190 struct svc_rqst *rqstp)
191{
192 struct rpc_clnt *r = clp->cl_rpcclient;
193 char *p = svc_gss_principal(rqstp);
194
195 /*
196 * It might just be a normal user principal, in which case
197 * userspace won't bother to tell us the name at all.
198 */
199 if (p == NULL)
200 return SVC_DENIED;
201
202 /* Expect a GSS_C_NT_HOSTBASED_NAME like "nfs@serverhostname" */
203
204 if (memcmp(p, "nfs@", 4) != 0)
205 return SVC_DENIED;
206 p += 4;
207 if (strcmp(p, r->cl_server) != 0)
208 return SVC_DENIED;
209 return SVC_OK;
210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static int nfs_callback_authenticate(struct svc_rqst *rqstp)
213{
David Howellsadfa6f92006-08-22 20:06:08 -0400214 struct nfs_client *clp;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300215 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Olga Kornievskaia945b34a2008-12-23 16:18:34 -0500216 int ret = SVC_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 /* Don't talk to strangers */
Chuck Leverff052642007-12-10 14:58:44 -0500219 clp = nfs_find_client(svc_addr(rqstp), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (clp == NULL)
221 return SVC_DROP;
Chuck Leverad06e4b2007-02-12 00:53:32 -0800222
Harvey Harrison3110ff82008-05-02 13:42:44 -0700223 dprintk("%s: %s NFSv4 callback!\n", __func__,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800224 svc_print_addr(rqstp, buf, sizeof(buf)));
Chuck Leverad06e4b2007-02-12 00:53:32 -0800225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 switch (rqstp->rq_authop->flavour) {
227 case RPC_AUTH_NULL:
228 if (rqstp->rq_proc != CB_NULL)
Olga Kornievskaia945b34a2008-12-23 16:18:34 -0500229 ret = SVC_DENIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
231 case RPC_AUTH_UNIX:
232 break;
233 case RPC_AUTH_GSS:
Olga Kornievskaia945b34a2008-12-23 16:18:34 -0500234 ret = check_gss_callback_principal(clp, rqstp);
235 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 default:
Olga Kornievskaia945b34a2008-12-23 16:18:34 -0500237 ret = SVC_DENIED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
Olga Kornievskaia945b34a2008-12-23 16:18:34 -0500239 nfs_put_client(clp);
240 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243/*
244 * Define NFS4 callback program
245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246static struct svc_version *nfs4_callback_version[] = {
247 [1] = &nfs4_callback_version1,
248};
249
250static struct svc_stat nfs4_callback_stats;
251
252static struct svc_program nfs4_callback_program = {
253 .pg_prog = NFS4_CALLBACK, /* RPC service number */
254 .pg_nvers = ARRAY_SIZE(nfs4_callback_version), /* Number of entries */
255 .pg_vers = nfs4_callback_version, /* version table */
256 .pg_name = "NFSv4 callback", /* service name */
257 .pg_class = "nfs", /* authentication class */
258 .pg_stats = &nfs4_callback_stats,
259 .pg_authenticate = nfs_callback_authenticate,
260};