blob: 9e713d2d5d7476b1ac44a33edce36bd20b038f6b [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>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020019
20#include <net/inet_sock.h>
21
Trond Myklebust4ce79712005-06-22 17:16:21 +000022#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "callback.h"
David Howells24c8dbb2006-08-22 20:06:10 -040024#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#define NFSDBG_FACILITY NFSDBG_CALLBACK
27
28struct nfs_callback_data {
29 unsigned int users;
30 struct svc_serv *serv;
Jeff Laytona277e332008-02-20 08:55:30 -050031 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
33
34static struct nfs_callback_data nfs_callback_info;
Ingo Molnar353ab6e2006-03-26 01:37:12 -080035static DEFINE_MUTEX(nfs_callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static struct svc_program nfs4_callback_program;
37
Trond Myklebusta72b4422006-01-03 09:55:41 +010038unsigned int nfs_callback_set_tcpport;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039unsigned short nfs_callback_tcpport;
David Howells7d4e2742006-08-22 20:06:07 -040040static const int nfs_set_port_min = 0;
41static const int nfs_set_port_max = 65535;
42
43static int param_set_port(const char *val, struct kernel_param *kp)
44{
45 char *endp;
46 int num = simple_strtol(val, &endp, 0);
47 if (endp == val || *endp || num < nfs_set_port_min || num > nfs_set_port_max)
48 return -EINVAL;
49 *((int *)kp->arg) = num;
50 return 0;
51}
52
53module_param_call(callback_tcpport, param_set_port, param_get_int,
54 &nfs_callback_set_tcpport, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * This is the callback kernel thread.
58 */
Jeff Laytona277e332008-02-20 08:55:30 -050059static int
60nfs_callback_svc(void *vrqstp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Jeff Layton06e02d62008-04-08 15:40:07 -040062 int err, preverr = 0;
Jeff Laytona277e332008-02-20 08:55:30 -050063 struct svc_rqst *rqstp = vrqstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Rafael J. Wysocki83144182007-07-17 04:03:35 -070065 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Jeff Laytona277e332008-02-20 08:55:30 -050067 /*
68 * FIXME: do we really need to run this under the BKL? If so, please
69 * add a comment about what it's intended to protect.
70 */
71 lock_kernel();
72 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 /*
74 * Listen for a request on the socket
75 */
NeilBrown6fb2b472006-10-02 02:17:50 -070076 err = svc_recv(rqstp, MAX_SCHEDULE_TIMEOUT);
Jeff Layton06e02d62008-04-08 15:40:07 -040077 if (err == -EAGAIN || err == -EINTR) {
78 preverr = err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
Jeff Layton06e02d62008-04-08 15:40:07 -040081 if (err < 0) {
82 if (err != preverr) {
83 printk(KERN_WARNING "%s: unexpected error "
84 "from svc_recv (%d)\n", __func__, err);
85 preverr = err;
86 }
87 schedule_timeout_uninterruptible(HZ);
88 continue;
89 }
90 preverr = err;
NeilBrown6fb2b472006-10-02 02:17:50 -070091 svc_process(rqstp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 unlock_kernel();
Jeff Laytona277e332008-02-20 08:55:30 -050094 nfs_callback_info.task = NULL;
95 svc_exit_thread(rqstp);
96 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
99/*
100 * Bring up the server process if it is not already up.
101 */
102int nfs_callback_up(void)
103{
Jeff Layton8e600292008-02-11 10:00:20 -0500104 struct svc_serv *serv = NULL;
Jeff Laytona277e332008-02-20 08:55:30 -0500105 struct svc_rqst *rqstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 int ret = 0;
107
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800108 mutex_lock(&nfs_callback_mutex);
Jeff Laytona277e332008-02-20 08:55:30 -0500109 if (nfs_callback_info.users++ || nfs_callback_info.task != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 goto out;
NeilBrownbc591cc2006-10-02 02:17:44 -0700111 serv = svc_create(&nfs4_callback_program, NFS4_CALLBACK_BUFSIZE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 ret = -ENOMEM;
113 if (!serv)
114 goto out_err;
Chuck Lever482fb942007-02-12 00:53:29 -0800115
Tom Tuckerd7c9f1e2007-12-30 21:07:44 -0600116 ret = svc_create_xprt(serv, "tcp", nfs_callback_set_tcpport,
117 SVC_SOCK_ANONYMOUS);
Chuck Lever482fb942007-02-12 00:53:29 -0800118 if (ret <= 0)
Jeff Layton8e600292008-02-11 10:00:20 -0500119 goto out_err;
Chuck Lever482fb942007-02-12 00:53:29 -0800120 nfs_callback_tcpport = ret;
121 dprintk("Callback port = 0x%x\n", nfs_callback_tcpport);
122
Jeff Laytona277e332008-02-20 08:55:30 -0500123 rqstp = svc_prepare_thread(serv, &serv->sv_pools[0]);
124 if (IS_ERR(rqstp)) {
125 ret = PTR_ERR(rqstp);
Jeff Layton8e600292008-02-11 10:00:20 -0500126 goto out_err;
Jeff Laytona277e332008-02-20 08:55:30 -0500127 }
128
129 svc_sock_update_bufs(serv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 nfs_callback_info.serv = serv;
Jeff Laytona277e332008-02-20 08:55:30 -0500131
132 nfs_callback_info.task = kthread_run(nfs_callback_svc, rqstp,
133 "nfsv4-svc");
134 if (IS_ERR(nfs_callback_info.task)) {
135 ret = PTR_ERR(nfs_callback_info.task);
136 nfs_callback_info.serv = NULL;
137 nfs_callback_info.task = NULL;
138 svc_exit_thread(rqstp);
139 goto out_err;
140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141out:
Jeff Layton8e600292008-02-11 10:00:20 -0500142 /*
143 * svc_create creates the svc_serv with sv_nrthreads == 1, and then
Jeff Laytona277e332008-02-20 08:55:30 -0500144 * svc_prepare_thread increments that. So we need to call svc_destroy
Jeff Layton8e600292008-02-11 10:00:20 -0500145 * on both success and failure so that the refcount is 1 when the
146 * thread exits.
147 */
148 if (serv)
149 svc_destroy(serv);
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800150 mutex_unlock(&nfs_callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return ret;
Jeff Layton8e600292008-02-11 10:00:20 -0500152out_err:
Chuck Lever482fb942007-02-12 00:53:29 -0800153 dprintk("Couldn't create callback socket or server thread; err = %d\n",
154 ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 nfs_callback_info.users--;
156 goto out;
157}
158
159/*
J. Bruce Fieldse1ba1ab2008-04-07 13:09:47 -0400160 * Kill the server process if it is not already down.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 */
David Howells5ae1fbc2006-08-22 20:06:08 -0400162void nfs_callback_down(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800164 mutex_lock(&nfs_callback_mutex);
Trond Myklebust1dd761e2006-03-20 13:44:49 -0500165 nfs_callback_info.users--;
Jeff Laytona277e332008-02-20 08:55:30 -0500166 if (nfs_callback_info.users == 0 && nfs_callback_info.task != NULL)
167 kthread_stop(nfs_callback_info.task);
Ingo Molnar353ab6e2006-03-26 01:37:12 -0800168 mutex_unlock(&nfs_callback_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171static int nfs_callback_authenticate(struct svc_rqst *rqstp)
172{
David Howellsadfa6f92006-08-22 20:06:08 -0400173 struct nfs_client *clp;
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +0300174 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 /* Don't talk to strangers */
Chuck Leverff052642007-12-10 14:58:44 -0500177 clp = nfs_find_client(svc_addr(rqstp), 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (clp == NULL)
179 return SVC_DROP;
Chuck Leverad06e4b2007-02-12 00:53:32 -0800180
Harvey Harrison3110ff82008-05-02 13:42:44 -0700181 dprintk("%s: %s NFSv4 callback!\n", __func__,
Chuck Leverad06e4b2007-02-12 00:53:32 -0800182 svc_print_addr(rqstp, buf, sizeof(buf)));
David Howells24c8dbb2006-08-22 20:06:10 -0400183 nfs_put_client(clp);
Chuck Leverad06e4b2007-02-12 00:53:32 -0800184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 switch (rqstp->rq_authop->flavour) {
186 case RPC_AUTH_NULL:
187 if (rqstp->rq_proc != CB_NULL)
188 return SVC_DENIED;
189 break;
190 case RPC_AUTH_UNIX:
191 break;
192 case RPC_AUTH_GSS:
193 /* FIXME: RPCSEC_GSS handling? */
194 default:
195 return SVC_DENIED;
196 }
197 return SVC_OK;
198}
199
200/*
201 * Define NFS4 callback program
202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static struct svc_version *nfs4_callback_version[] = {
204 [1] = &nfs4_callback_version1,
205};
206
207static struct svc_stat nfs4_callback_stats;
208
209static struct svc_program nfs4_callback_program = {
210 .pg_prog = NFS4_CALLBACK, /* RPC service number */
211 .pg_nvers = ARRAY_SIZE(nfs4_callback_version), /* Number of entries */
212 .pg_vers = nfs4_callback_version, /* version table */
213 .pg_name = "NFSv4 callback", /* service name */
214 .pg_class = "nfs", /* authentication class */
215 .pg_stats = &nfs4_callback_stats,
216 .pg_authenticate = nfs_callback_authenticate,
217};