]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - fs/nfs/callback.c
nfs4: remove BKL from nfs_callback_up and nfs_callback_down
[linux-2.6-omap-h63xx.git] / fs / nfs / callback.c
1 /*
2  * linux/fs/nfs/callback.c
3  *
4  * Copyright (C) 2004 Trond Myklebust
5  *
6  * NFSv4 callback handling
7  */
8
9 #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>
16 #include <linux/mutex.h>
17 #include <linux/freezer.h>
18 #include <linux/kthread.h>
19
20 #include <net/inet_sock.h>
21
22 #include "nfs4_fs.h"
23 #include "callback.h"
24 #include "internal.h"
25
26 #define NFSDBG_FACILITY NFSDBG_CALLBACK
27
28 struct nfs_callback_data {
29         unsigned int users;
30         struct svc_serv *serv;
31         struct task_struct *task;
32 };
33
34 static struct nfs_callback_data nfs_callback_info;
35 static DEFINE_MUTEX(nfs_callback_mutex);
36 static struct svc_program nfs4_callback_program;
37
38 unsigned int nfs_callback_set_tcpport;
39 unsigned short nfs_callback_tcpport;
40 static const int nfs_set_port_min = 0;
41 static const int nfs_set_port_max = 65535;
42
43 static 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
53 module_param_call(callback_tcpport, param_set_port, param_get_int,
54                  &nfs_callback_set_tcpport, 0644);
55
56 /*
57  * This is the callback kernel thread.
58  */
59 static int
60 nfs_callback_svc(void *vrqstp)
61 {
62         int err, preverr = 0;
63         struct svc_rqst *rqstp = vrqstp;
64
65         set_freezable();
66
67         /*
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()) {
73                 /*
74                  * Listen for a request on the socket
75                  */
76                 err = svc_recv(rqstp, MAX_SCHEDULE_TIMEOUT);
77                 if (err == -EAGAIN || err == -EINTR) {
78                         preverr = err;
79                         continue;
80                 }
81                 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;
91                 svc_process(rqstp);
92         }
93         unlock_kernel();
94         nfs_callback_info.task = NULL;
95         svc_exit_thread(rqstp);
96         return 0;
97 }
98
99 /*
100  * Bring up the server process if it is not already up.
101  */
102 int nfs_callback_up(void)
103 {
104         struct svc_serv *serv = NULL;
105         struct svc_rqst *rqstp;
106         int ret = 0;
107
108         mutex_lock(&nfs_callback_mutex);
109         if (nfs_callback_info.users++ || nfs_callback_info.task != NULL)
110                 goto out;
111         serv = svc_create(&nfs4_callback_program, NFS4_CALLBACK_BUFSIZE, NULL);
112         ret = -ENOMEM;
113         if (!serv)
114                 goto out_err;
115
116         ret = svc_create_xprt(serv, "tcp", nfs_callback_set_tcpport,
117                               SVC_SOCK_ANONYMOUS);
118         if (ret <= 0)
119                 goto out_err;
120         nfs_callback_tcpport = ret;
121         dprintk("Callback port = 0x%x\n", nfs_callback_tcpport);
122
123         rqstp = svc_prepare_thread(serv, &serv->sv_pools[0]);
124         if (IS_ERR(rqstp)) {
125                 ret = PTR_ERR(rqstp);
126                 goto out_err;
127         }
128
129         svc_sock_update_bufs(serv);
130         nfs_callback_info.serv = serv;
131
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         }
141 out:
142         /*
143          * svc_create creates the svc_serv with sv_nrthreads == 1, and then
144          * svc_prepare_thread increments that. So we need to call svc_destroy
145          * on both success and failure so that the refcount is 1 when the
146          * thread exits.
147          */
148         if (serv)
149                 svc_destroy(serv);
150         mutex_unlock(&nfs_callback_mutex);
151         return ret;
152 out_err:
153         dprintk("Couldn't create callback socket or server thread; err = %d\n",
154                 ret);
155         nfs_callback_info.users--;
156         goto out;
157 }
158
159 /*
160  * Kill the server process if it is not already down.
161  */
162 void nfs_callback_down(void)
163 {
164         mutex_lock(&nfs_callback_mutex);
165         nfs_callback_info.users--;
166         if (nfs_callback_info.users == 0 && nfs_callback_info.task != NULL)
167                 kthread_stop(nfs_callback_info.task);
168         mutex_unlock(&nfs_callback_mutex);
169 }
170
171 static int nfs_callback_authenticate(struct svc_rqst *rqstp)
172 {
173         struct nfs_client *clp;
174         RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
175
176         /* Don't talk to strangers */
177         clp = nfs_find_client(svc_addr(rqstp), 4);
178         if (clp == NULL)
179                 return SVC_DROP;
180
181         dprintk("%s: %s NFSv4 callback!\n", __func__,
182                         svc_print_addr(rqstp, buf, sizeof(buf)));
183         nfs_put_client(clp);
184
185         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  */
203 static struct svc_version *nfs4_callback_version[] = {
204         [1] = &nfs4_callback_version1,
205 };
206
207 static struct svc_stat nfs4_callback_stats;
208
209 static 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 };