Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/callback.c |
| 3 | * |
| 4 | * Copyright (C) 2004 Trond Myklebust |
| 5 | * |
| 6 | * NFSv4 callback handling |
| 7 | */ |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 16 | #include <linux/mutex.h> |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 17 | #include <linux/freezer.h> |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 18 | #include <linux/kthread.h> |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 19 | |
| 20 | #include <net/inet_sock.h> |
| 21 | |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 22 | #include "nfs4_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "callback.h" |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 24 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | #define NFSDBG_FACILITY NFSDBG_CALLBACK |
| 27 | |
| 28 | struct nfs_callback_data { |
| 29 | unsigned int users; |
| 30 | struct svc_serv *serv; |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 31 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | static struct nfs_callback_data nfs_callback_info; |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 35 | static DEFINE_MUTEX(nfs_callback_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | static struct svc_program nfs4_callback_program; |
| 37 | |
Trond Myklebust | a72b442 | 2006-01-03 09:55:41 +0100 | [diff] [blame] | 38 | unsigned int nfs_callback_set_tcpport; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | unsigned short nfs_callback_tcpport; |
David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | /* |
| 57 | * This is the callback kernel thread. |
| 58 | */ |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 59 | static int |
| 60 | nfs_callback_svc(void *vrqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
Jeff Layton | 06e02d6 | 2008-04-08 15:40:07 -0400 | [diff] [blame] | 62 | int err, preverr = 0; |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 63 | struct svc_rqst *rqstp = vrqstp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 65 | set_freezable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 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()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | /* |
| 74 | * Listen for a request on the socket |
| 75 | */ |
NeilBrown | 6fb2b47 | 2006-10-02 02:17:50 -0700 | [diff] [blame] | 76 | err = svc_recv(rqstp, MAX_SCHEDULE_TIMEOUT); |
Jeff Layton | 06e02d6 | 2008-04-08 15:40:07 -0400 | [diff] [blame] | 77 | if (err == -EAGAIN || err == -EINTR) { |
| 78 | preverr = err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
Jeff Layton | 06e02d6 | 2008-04-08 15:40:07 -0400 | [diff] [blame] | 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; |
NeilBrown | 6fb2b47 | 2006-10-02 02:17:50 -0700 | [diff] [blame] | 91 | svc_process(rqstp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | unlock_kernel(); |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 94 | nfs_callback_info.task = NULL; |
| 95 | svc_exit_thread(rqstp); |
| 96 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /* |
| 100 | * Bring up the server process if it is not already up. |
| 101 | */ |
| 102 | int nfs_callback_up(void) |
| 103 | { |
Jeff Layton | 8e60029 | 2008-02-11 10:00:20 -0500 | [diff] [blame] | 104 | struct svc_serv *serv = NULL; |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 105 | struct svc_rqst *rqstp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | int ret = 0; |
| 107 | |
| 108 | lock_kernel(); |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 109 | mutex_lock(&nfs_callback_mutex); |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 110 | if (nfs_callback_info.users++ || nfs_callback_info.task != NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | goto out; |
NeilBrown | bc591cc | 2006-10-02 02:17:44 -0700 | [diff] [blame] | 112 | serv = svc_create(&nfs4_callback_program, NFS4_CALLBACK_BUFSIZE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | ret = -ENOMEM; |
| 114 | if (!serv) |
| 115 | goto out_err; |
Chuck Lever | 482fb94 | 2007-02-12 00:53:29 -0800 | [diff] [blame] | 116 | |
Tom Tucker | d7c9f1e | 2007-12-30 21:07:44 -0600 | [diff] [blame] | 117 | ret = svc_create_xprt(serv, "tcp", nfs_callback_set_tcpport, |
| 118 | SVC_SOCK_ANONYMOUS); |
Chuck Lever | 482fb94 | 2007-02-12 00:53:29 -0800 | [diff] [blame] | 119 | if (ret <= 0) |
Jeff Layton | 8e60029 | 2008-02-11 10:00:20 -0500 | [diff] [blame] | 120 | goto out_err; |
Chuck Lever | 482fb94 | 2007-02-12 00:53:29 -0800 | [diff] [blame] | 121 | nfs_callback_tcpport = ret; |
| 122 | dprintk("Callback port = 0x%x\n", nfs_callback_tcpport); |
| 123 | |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 124 | rqstp = svc_prepare_thread(serv, &serv->sv_pools[0]); |
| 125 | if (IS_ERR(rqstp)) { |
| 126 | ret = PTR_ERR(rqstp); |
Jeff Layton | 8e60029 | 2008-02-11 10:00:20 -0500 | [diff] [blame] | 127 | goto out_err; |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | svc_sock_update_bufs(serv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | nfs_callback_info.serv = serv; |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 132 | |
| 133 | nfs_callback_info.task = kthread_run(nfs_callback_svc, rqstp, |
| 134 | "nfsv4-svc"); |
| 135 | if (IS_ERR(nfs_callback_info.task)) { |
| 136 | ret = PTR_ERR(nfs_callback_info.task); |
| 137 | nfs_callback_info.serv = NULL; |
| 138 | nfs_callback_info.task = NULL; |
| 139 | svc_exit_thread(rqstp); |
| 140 | goto out_err; |
| 141 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | out: |
Jeff Layton | 8e60029 | 2008-02-11 10:00:20 -0500 | [diff] [blame] | 143 | /* |
| 144 | * svc_create creates the svc_serv with sv_nrthreads == 1, and then |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 145 | * svc_prepare_thread increments that. So we need to call svc_destroy |
Jeff Layton | 8e60029 | 2008-02-11 10:00:20 -0500 | [diff] [blame] | 146 | * on both success and failure so that the refcount is 1 when the |
| 147 | * thread exits. |
| 148 | */ |
| 149 | if (serv) |
| 150 | svc_destroy(serv); |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 151 | mutex_unlock(&nfs_callback_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | unlock_kernel(); |
| 153 | return ret; |
Jeff Layton | 8e60029 | 2008-02-11 10:00:20 -0500 | [diff] [blame] | 154 | out_err: |
Chuck Lever | 482fb94 | 2007-02-12 00:53:29 -0800 | [diff] [blame] | 155 | dprintk("Couldn't create callback socket or server thread; err = %d\n", |
| 156 | ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | nfs_callback_info.users--; |
| 158 | goto out; |
| 159 | } |
| 160 | |
| 161 | /* |
J. Bruce Fields | e1ba1ab | 2008-04-07 13:09:47 -0400 | [diff] [blame] | 162 | * Kill the server process if it is not already down. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | */ |
David Howells | 5ae1fbc | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 164 | void nfs_callback_down(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | lock_kernel(); |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 167 | mutex_lock(&nfs_callback_mutex); |
Trond Myklebust | 1dd761e | 2006-03-20 13:44:49 -0500 | [diff] [blame] | 168 | nfs_callback_info.users--; |
Jeff Layton | a277e33 | 2008-02-20 08:55:30 -0500 | [diff] [blame] | 169 | if (nfs_callback_info.users == 0 && nfs_callback_info.task != NULL) |
| 170 | kthread_stop(nfs_callback_info.task); |
Ingo Molnar | 353ab6e | 2006-03-26 01:37:12 -0800 | [diff] [blame] | 171 | mutex_unlock(&nfs_callback_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | unlock_kernel(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | static int nfs_callback_authenticate(struct svc_rqst *rqstp) |
| 176 | { |
David Howells | adfa6f9 | 2006-08-22 20:06:08 -0400 | [diff] [blame] | 177 | struct nfs_client *clp; |
Pavel Emelyanov | 5216a8e | 2008-02-21 10:57:45 +0300 | [diff] [blame] | 178 | RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
| 180 | /* Don't talk to strangers */ |
Chuck Lever | ff05264 | 2007-12-10 14:58:44 -0500 | [diff] [blame] | 181 | clp = nfs_find_client(svc_addr(rqstp), 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | if (clp == NULL) |
| 183 | return SVC_DROP; |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 184 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 185 | dprintk("%s: %s NFSv4 callback!\n", __func__, |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 186 | svc_print_addr(rqstp, buf, sizeof(buf))); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 187 | nfs_put_client(clp); |
Chuck Lever | ad06e4b | 2007-02-12 00:53:32 -0800 | [diff] [blame] | 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | switch (rqstp->rq_authop->flavour) { |
| 190 | case RPC_AUTH_NULL: |
| 191 | if (rqstp->rq_proc != CB_NULL) |
| 192 | return SVC_DENIED; |
| 193 | break; |
| 194 | case RPC_AUTH_UNIX: |
| 195 | break; |
| 196 | case RPC_AUTH_GSS: |
| 197 | /* FIXME: RPCSEC_GSS handling? */ |
| 198 | default: |
| 199 | return SVC_DENIED; |
| 200 | } |
| 201 | return SVC_OK; |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * Define NFS4 callback program |
| 206 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | static struct svc_version *nfs4_callback_version[] = { |
| 208 | [1] = &nfs4_callback_version1, |
| 209 | }; |
| 210 | |
| 211 | static struct svc_stat nfs4_callback_stats; |
| 212 | |
| 213 | static struct svc_program nfs4_callback_program = { |
| 214 | .pg_prog = NFS4_CALLBACK, /* RPC service number */ |
| 215 | .pg_nvers = ARRAY_SIZE(nfs4_callback_version), /* Number of entries */ |
| 216 | .pg_vers = nfs4_callback_version, /* version table */ |
| 217 | .pg_name = "NFSv4 callback", /* service name */ |
| 218 | .pg_class = "nfs", /* authentication class */ |
| 219 | .pg_stats = &nfs4_callback_stats, |
| 220 | .pg_authenticate = nfs_callback_authenticate, |
| 221 | }; |