blob: 691bd216f469ea6e17f4565f50d30b944b29842c [file] [log] [blame]
Chuck Levera5090502007-03-29 16:48:04 -04001/*
2 * In-kernel rpcbind client supporting versions 2, 3, and 4 of the rpcbind
3 * protocol
4 *
5 * Based on RFC 1833: "Binding Protocols for ONC RPC Version 2" and
6 * RFC 3530: "Network File System (NFS) version 4 Protocol"
7 *
8 * Original: Gilles Quillard, Bull Open Source, 2005 <gilles.quillard@bull.net>
9 * Updated: Chuck Lever, Oracle Corporation, 2007 <chuck.lever@oracle.com>
10 *
11 * Descended from net/sunrpc/pmap_clnt.c,
12 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
13 */
14
Chuck Levercce63cd2007-07-01 12:13:12 -040015#include <linux/module.h>
16
Chuck Levera5090502007-03-29 16:48:04 -040017#include <linux/types.h>
18#include <linux/socket.h>
Chuck Leverd5b64432007-08-06 11:57:18 -040019#include <linux/in.h>
20#include <linux/in6.h>
Chuck Levera5090502007-03-29 16:48:04 -040021#include <linux/kernel.h>
22#include <linux/errno.h>
23
24#include <linux/sunrpc/clnt.h>
25#include <linux/sunrpc/sched.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040026#include <linux/sunrpc/xprtsock.h>
Chuck Levera5090502007-03-29 16:48:04 -040027
28#ifdef RPC_DEBUG
29# define RPCDBG_FACILITY RPCDBG_BIND
30#endif
31
32#define RPCBIND_PROGRAM (100000u)
33#define RPCBIND_PORT (111u)
34
Chuck Leverfc200e72008-06-25 17:24:31 -040035#define RPCBVERS_2 (2u)
36#define RPCBVERS_3 (3u)
37#define RPCBVERS_4 (4u)
38
Chuck Levera5090502007-03-29 16:48:04 -040039enum {
40 RPCBPROC_NULL,
41 RPCBPROC_SET,
42 RPCBPROC_UNSET,
43 RPCBPROC_GETPORT,
44 RPCBPROC_GETADDR = 3, /* alias for GETPORT */
45 RPCBPROC_DUMP,
46 RPCBPROC_CALLIT,
47 RPCBPROC_BCAST = 5, /* alias for CALLIT */
48 RPCBPROC_GETTIME,
49 RPCBPROC_UADDR2TADDR,
50 RPCBPROC_TADDR2UADDR,
51 RPCBPROC_GETVERSADDR,
52 RPCBPROC_INDIRECT,
53 RPCBPROC_GETADDRLIST,
54 RPCBPROC_GETSTAT,
55};
56
57#define RPCB_HIGHPROC_2 RPCBPROC_CALLIT
58#define RPCB_HIGHPROC_3 RPCBPROC_TADDR2UADDR
59#define RPCB_HIGHPROC_4 RPCBPROC_GETSTAT
60
61/*
Chuck Levera5090502007-03-29 16:48:04 -040062 * r_owner
63 *
64 * The "owner" is allowed to unset a service in the rpcbind database.
65 * We always use the following (arbitrary) fixed string.
66 */
67#define RPCB_OWNER_STRING "rpcb"
68#define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
69
70static void rpcb_getport_done(struct rpc_task *, void *);
Trond Myklebust381ba742008-07-07 12:18:53 -040071static void rpcb_map_release(void *data);
Adrian Bunk7f4adef2007-06-13 01:03:13 +020072static struct rpc_program rpcb_program;
Chuck Levera5090502007-03-29 16:48:04 -040073
74struct rpcbind_args {
75 struct rpc_xprt * r_xprt;
76
77 u32 r_prog;
78 u32 r_vers;
79 u32 r_prot;
80 unsigned short r_port;
Trond Myklebust86d61d82008-01-07 21:16:56 -050081 const char * r_netid;
82 const char * r_addr;
83 const char * r_owner;
Trond Myklebust381ba742008-07-07 12:18:53 -040084
85 int r_status;
Chuck Levera5090502007-03-29 16:48:04 -040086};
87
88static struct rpc_procinfo rpcb_procedures2[];
89static struct rpc_procinfo rpcb_procedures3[];
90
Chuck Leverd5b64432007-08-06 11:57:18 -040091struct rpcb_info {
Chuck Leverfc200e72008-06-25 17:24:31 -040092 u32 rpc_vers;
Chuck Levera5090502007-03-29 16:48:04 -040093 struct rpc_procinfo * rpc_proc;
Chuck Leverd5b64432007-08-06 11:57:18 -040094};
95
96static struct rpcb_info rpcb_next_version[];
97static struct rpcb_info rpcb_next_version6[];
Chuck Levera5090502007-03-29 16:48:04 -040098
Chuck Levera5090502007-03-29 16:48:04 -040099static const struct rpc_call_ops rpcb_getport_ops = {
Chuck Levera5090502007-03-29 16:48:04 -0400100 .rpc_call_done = rpcb_getport_done,
101 .rpc_release = rpcb_map_release,
102};
103
104static void rpcb_wake_rpcbind_waiters(struct rpc_xprt *xprt, int status)
105{
106 xprt_clear_binding(xprt);
107 rpc_wake_up_status(&xprt->binding, status);
108}
109
Trond Myklebust381ba742008-07-07 12:18:53 -0400110static void rpcb_map_release(void *data)
111{
112 struct rpcbind_args *map = data;
113
114 rpcb_wake_rpcbind_waiters(map->r_xprt, map->r_status);
115 xprt_put(map->r_xprt);
116 kfree(map);
117}
118
Chuck Levercc5598b2008-07-14 16:03:27 -0400119static const struct sockaddr_in rpcb_inaddr_loopback = {
120 .sin_family = AF_INET,
121 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
122 .sin_port = htons(RPCBIND_PORT),
123};
124
125static struct rpc_clnt *rpcb_create_local(struct sockaddr *addr,
126 size_t addrlen, u32 version)
127{
128 struct rpc_create_args args = {
129 .protocol = XPRT_TRANSPORT_UDP,
130 .address = addr,
131 .addrsize = addrlen,
132 .servername = "localhost",
133 .program = &rpcb_program,
134 .version = version,
135 .authflavor = RPC_AUTH_UNIX,
136 .flags = RPC_CLNT_CREATE_NOPING,
137 };
138
139 return rpc_create(&args);
140}
141
Chuck Levera5090502007-03-29 16:48:04 -0400142static struct rpc_clnt *rpcb_create(char *hostname, struct sockaddr *srvaddr,
Chuck Lever423d8b02008-07-14 16:03:28 -0400143 size_t salen, int proto, u32 version)
Chuck Levera5090502007-03-29 16:48:04 -0400144{
145 struct rpc_create_args args = {
146 .protocol = proto,
147 .address = srvaddr,
Chuck Lever9f6ad262007-12-10 14:56:31 -0500148 .addrsize = salen,
Chuck Levera5090502007-03-29 16:48:04 -0400149 .servername = hostname,
150 .program = &rpcb_program,
151 .version = version,
152 .authflavor = RPC_AUTH_UNIX,
Chuck Lever423d8b02008-07-14 16:03:28 -0400153 .flags = (RPC_CLNT_CREATE_NOPING |
154 RPC_CLNT_CREATE_NONPRIVPORT),
Chuck Levera5090502007-03-29 16:48:04 -0400155 };
156
Chuck Leverd5b64432007-08-06 11:57:18 -0400157 switch (srvaddr->sa_family) {
158 case AF_INET:
159 ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
160 break;
161 case AF_INET6:
162 ((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
163 break;
164 default:
165 return NULL;
166 }
167
Chuck Levera5090502007-03-29 16:48:04 -0400168 return rpc_create(&args);
169}
170
171/**
172 * rpcb_register - set or unset a port registration with the local rpcbind svc
173 * @prog: RPC program number to bind
174 * @vers: RPC version number to bind
175 * @prot: transport protocol to use to make this request
176 * @port: port value to register
177 * @okay: result code
178 *
179 * port == 0 means unregister, port != 0 means register.
180 *
181 * This routine supports only rpcbind version 2.
182 */
183int rpcb_register(u32 prog, u32 vers, int prot, unsigned short port, int *okay)
184{
Chuck Levera5090502007-03-29 16:48:04 -0400185 struct rpcbind_args map = {
186 .r_prog = prog,
187 .r_vers = vers,
188 .r_prot = prot,
189 .r_port = port,
190 };
191 struct rpc_message msg = {
192 .rpc_proc = &rpcb_procedures2[port ?
193 RPCBPROC_SET : RPCBPROC_UNSET],
194 .rpc_argp = &map,
195 .rpc_resp = okay,
196 };
197 struct rpc_clnt *rpcb_clnt;
198 int error = 0;
199
200 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
201 "rpcbind\n", (port ? "" : "un"),
202 prog, vers, prot, port);
203
Chuck Levercc5598b2008-07-14 16:03:27 -0400204 rpcb_clnt = rpcb_create_local((struct sockaddr *)&rpcb_inaddr_loopback,
205 sizeof(rpcb_inaddr_loopback),
206 RPCBVERS_2);
207 if (!IS_ERR(rpcb_clnt)) {
208 error = rpc_call_sync(rpcb_clnt, &msg, 0);
209 rpc_shutdown_client(rpcb_clnt);
210 } else
211 error = PTR_ERR(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400212
Chuck Levera5090502007-03-29 16:48:04 -0400213 if (error < 0)
214 printk(KERN_WARNING "RPC: failed to contact local rpcbind "
215 "server (errno %d).\n", -error);
216 dprintk("RPC: registration status %d/%d\n", error, *okay);
217
218 return error;
219}
220
Chuck Levera5090502007-03-29 16:48:04 -0400221/**
Chuck Levercce63cd2007-07-01 12:13:12 -0400222 * rpcb_getport_sync - obtain the port for an RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400223 * @sin: address of remote peer
224 * @prog: RPC program number to bind
225 * @vers: RPC version number to bind
226 * @prot: transport protocol to use to make this request
227 *
Chuck Lever67d60212008-01-14 15:12:01 -0500228 * Return value is the requested advertised port number,
229 * or a negative errno value.
230 *
Chuck Levera5090502007-03-29 16:48:04 -0400231 * Called from outside the RPC client in a synchronous task context.
Chuck Levercce63cd2007-07-01 12:13:12 -0400232 * Uses default timeout parameters specified by underlying transport.
Chuck Levera5090502007-03-29 16:48:04 -0400233 *
Chuck Lever67d60212008-01-14 15:12:01 -0500234 * XXX: Needs to support IPv6
Chuck Levera5090502007-03-29 16:48:04 -0400235 */
Chuck Leverf1ec08c2008-01-14 15:11:53 -0500236int rpcb_getport_sync(struct sockaddr_in *sin, u32 prog, u32 vers, int prot)
Chuck Levera5090502007-03-29 16:48:04 -0400237{
238 struct rpcbind_args map = {
239 .r_prog = prog,
240 .r_vers = vers,
241 .r_prot = prot,
242 .r_port = 0,
243 };
244 struct rpc_message msg = {
245 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
246 .rpc_argp = &map,
247 .rpc_resp = &map.r_port,
248 };
249 struct rpc_clnt *rpcb_clnt;
Chuck Levera5090502007-03-29 16:48:04 -0400250 int status;
251
Chuck Levercce63cd2007-07-01 12:13:12 -0400252 dprintk("RPC: %s(" NIPQUAD_FMT ", %u, %u, %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800253 __func__, NIPQUAD(sin->sin_addr.s_addr), prog, vers, prot);
Chuck Levera5090502007-03-29 16:48:04 -0400254
Chuck Leverb91e1012008-01-14 15:11:46 -0500255 rpcb_clnt = rpcb_create(NULL, (struct sockaddr *)sin,
Chuck Lever423d8b02008-07-14 16:03:28 -0400256 sizeof(*sin), prot, RPCBVERS_2);
Chuck Levera5090502007-03-29 16:48:04 -0400257 if (IS_ERR(rpcb_clnt))
258 return PTR_ERR(rpcb_clnt);
259
260 status = rpc_call_sync(rpcb_clnt, &msg, 0);
Trond Myklebust90c57552007-06-09 19:49:36 -0400261 rpc_shutdown_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400262
263 if (status >= 0) {
264 if (map.r_port != 0)
265 return map.r_port;
266 status = -EACCES;
267 }
268 return status;
269}
Chuck Levercce63cd2007-07-01 12:13:12 -0400270EXPORT_SYMBOL_GPL(rpcb_getport_sync);
Chuck Levera5090502007-03-29 16:48:04 -0400271
Trond Myklebust803a9062008-07-01 15:20:55 -0400272static struct rpc_task *rpcb_call_async(struct rpc_clnt *rpcb_clnt, struct rpcbind_args *map, struct rpc_procinfo *proc)
Trond Myklebust5138fde2007-07-14 15:40:01 -0400273{
274 struct rpc_message msg = {
Trond Myklebust803a9062008-07-01 15:20:55 -0400275 .rpc_proc = proc,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400276 .rpc_argp = map,
277 .rpc_resp = &map->r_port,
278 };
279 struct rpc_task_setup task_setup_data = {
280 .rpc_client = rpcb_clnt,
281 .rpc_message = &msg,
282 .callback_ops = &rpcb_getport_ops,
283 .callback_data = map,
284 .flags = RPC_TASK_ASYNC,
285 };
286
287 return rpc_run_task(&task_setup_data);
288}
289
Chuck Levera5090502007-03-29 16:48:04 -0400290/**
Chuck Lever45160d62007-07-01 12:13:17 -0400291 * rpcb_getport_async - obtain the port for a given RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400292 * @task: task that is waiting for portmapper request
293 *
294 * This one can be called for an ongoing RPC request, and can be used in
295 * an async (rpciod) context.
296 */
Chuck Lever45160d62007-07-01 12:13:17 -0400297void rpcb_getport_async(struct rpc_task *task)
Chuck Levera5090502007-03-29 16:48:04 -0400298{
299 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebust803a9062008-07-01 15:20:55 -0400300 struct rpc_procinfo *proc;
Chuck Lever0a48f5d2007-12-10 14:56:38 -0500301 u32 bind_version;
Chuck Levera5090502007-03-29 16:48:04 -0400302 struct rpc_xprt *xprt = task->tk_xprt;
303 struct rpc_clnt *rpcb_clnt;
304 static struct rpcbind_args *map;
305 struct rpc_task *child;
Chuck Lever9f6ad262007-12-10 14:56:31 -0500306 struct sockaddr_storage addr;
307 struct sockaddr *sap = (struct sockaddr *)&addr;
308 size_t salen;
Chuck Levera5090502007-03-29 16:48:04 -0400309 int status;
310
Chuck Lever45160d62007-07-01 12:13:17 -0400311 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800312 task->tk_pid, __func__,
Chuck Lever45160d62007-07-01 12:13:17 -0400313 clnt->cl_server, clnt->cl_prog, clnt->cl_vers, xprt->prot);
Chuck Levera5090502007-03-29 16:48:04 -0400314
315 /* Autobind on cloned rpc clients is discouraged */
316 BUG_ON(clnt->cl_parent != clnt);
317
Trond Myklebust381ba742008-07-07 12:18:53 -0400318 /* Put self on the wait queue to ensure we get notified if
319 * some other task is already attempting to bind the port */
320 rpc_sleep_on(&xprt->binding, task, NULL);
321
Chuck Levera5090502007-03-29 16:48:04 -0400322 if (xprt_test_and_set_binding(xprt)) {
Chuck Lever45160d62007-07-01 12:13:17 -0400323 dprintk("RPC: %5u %s: waiting for another binder\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800324 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400325 return;
Chuck Levera5090502007-03-29 16:48:04 -0400326 }
327
Chuck Levera5090502007-03-29 16:48:04 -0400328 /* Someone else may have bound if we slept */
329 if (xprt_bound(xprt)) {
330 status = 0;
Chuck Lever45160d62007-07-01 12:13:17 -0400331 dprintk("RPC: %5u %s: already bound\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800332 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400333 goto bailout_nofree;
334 }
335
Chuck Lever9f6ad262007-12-10 14:56:31 -0500336 salen = rpc_peeraddr(clnt, sap, sizeof(addr));
Chuck Leverd5b64432007-08-06 11:57:18 -0400337
338 /* Don't ever use rpcbind v2 for AF_INET6 requests */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500339 switch (sap->sa_family) {
Chuck Leverd5b64432007-08-06 11:57:18 -0400340 case AF_INET:
Trond Myklebust803a9062008-07-01 15:20:55 -0400341 proc = rpcb_next_version[xprt->bind_index].rpc_proc;
342 bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400343 break;
344 case AF_INET6:
Trond Myklebust803a9062008-07-01 15:20:55 -0400345 proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
346 bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400347 break;
348 default:
349 status = -EAFNOSUPPORT;
350 dprintk("RPC: %5u %s: bad address family\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800351 task->tk_pid, __func__);
Chuck Leverd5b64432007-08-06 11:57:18 -0400352 goto bailout_nofree;
353 }
Trond Myklebust803a9062008-07-01 15:20:55 -0400354 if (proc == NULL) {
Chuck Levera5090502007-03-29 16:48:04 -0400355 xprt->bind_index = 0;
Chuck Lever906462a2007-09-11 18:00:47 -0400356 status = -EPFNOSUPPORT;
Chuck Lever45160d62007-07-01 12:13:17 -0400357 dprintk("RPC: %5u %s: no more getport versions available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800358 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400359 goto bailout_nofree;
360 }
Chuck Levera5090502007-03-29 16:48:04 -0400361
Chuck Lever45160d62007-07-01 12:13:17 -0400362 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800363 task->tk_pid, __func__, bind_version);
Chuck Levera5090502007-03-29 16:48:04 -0400364
Chuck Lever9f6ad262007-12-10 14:56:31 -0500365 rpcb_clnt = rpcb_create(clnt->cl_server, sap, salen, xprt->prot,
Chuck Lever423d8b02008-07-14 16:03:28 -0400366 bind_version);
Chuck Lever143b6c42007-08-16 16:03:31 -0400367 if (IS_ERR(rpcb_clnt)) {
368 status = PTR_ERR(rpcb_clnt);
369 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800370 task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
Chuck Lever143b6c42007-08-16 16:03:31 -0400371 goto bailout_nofree;
372 }
373
Chuck Levera5090502007-03-29 16:48:04 -0400374 map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
375 if (!map) {
376 status = -ENOMEM;
Chuck Lever45160d62007-07-01 12:13:17 -0400377 dprintk("RPC: %5u %s: no memory available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800378 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400379 goto bailout_nofree;
380 }
381 map->r_prog = clnt->cl_prog;
382 map->r_vers = clnt->cl_vers;
383 map->r_prot = xprt->prot;
384 map->r_port = 0;
385 map->r_xprt = xprt_get(xprt);
Trond Myklebust86d61d82008-01-07 21:16:56 -0500386 map->r_netid = rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
387 map->r_addr = rpc_peeraddr2str(rpcb_clnt, RPC_DISPLAY_UNIVERSAL_ADDR);
Chuck Levera5090502007-03-29 16:48:04 -0400388 map->r_owner = RPCB_OWNER_STRING; /* ignored for GETADDR */
Trond Myklebust381ba742008-07-07 12:18:53 -0400389 map->r_status = -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400390
Trond Myklebust803a9062008-07-01 15:20:55 -0400391 child = rpcb_call_async(rpcb_clnt, map, proc);
Trond Myklebust4c402b42007-06-14 16:40:32 -0400392 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400393 if (IS_ERR(child)) {
Trond Myklebust0d3a34b2008-07-07 12:18:52 -0400394 /* rpcb_map_release() has freed the arguments */
Chuck Lever45160d62007-07-01 12:13:17 -0400395 dprintk("RPC: %5u %s: rpc_run_task failed\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800396 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400397 return;
Chuck Levera5090502007-03-29 16:48:04 -0400398 }
399 rpc_put_task(child);
400
401 task->tk_xprt->stat.bind_count++;
402 return;
403
Chuck Levera5090502007-03-29 16:48:04 -0400404bailout_nofree:
405 rpcb_wake_rpcbind_waiters(xprt, status);
Chuck Levera5090502007-03-29 16:48:04 -0400406 task->tk_status = status;
407}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400408EXPORT_SYMBOL_GPL(rpcb_getport_async);
Chuck Levera5090502007-03-29 16:48:04 -0400409
410/*
411 * Rpcbind child task calls this callback via tk_exit.
412 */
413static void rpcb_getport_done(struct rpc_task *child, void *data)
414{
415 struct rpcbind_args *map = data;
416 struct rpc_xprt *xprt = map->r_xprt;
417 int status = child->tk_status;
418
Chuck Lever4784cb52007-09-11 18:00:36 -0400419 /* Garbage reply: retry with a lesser rpcbind version */
420 if (status == -EIO)
421 status = -EPROTONOSUPPORT;
422
Chuck Levera5090502007-03-29 16:48:04 -0400423 /* rpcbind server doesn't support this rpcbind protocol version */
424 if (status == -EPROTONOSUPPORT)
425 xprt->bind_index++;
426
427 if (status < 0) {
428 /* rpcbind server not available on remote host? */
429 xprt->ops->set_port(xprt, 0);
430 } else if (map->r_port == 0) {
431 /* Requested RPC service wasn't registered on remote host */
432 xprt->ops->set_port(xprt, 0);
433 status = -EACCES;
434 } else {
435 /* Succeeded */
436 xprt->ops->set_port(xprt, map->r_port);
437 xprt_set_bound(xprt);
438 status = 0;
439 }
440
441 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
442 child->tk_pid, status, map->r_port);
443
Trond Myklebust381ba742008-07-07 12:18:53 -0400444 map->r_status = status;
Chuck Levera5090502007-03-29 16:48:04 -0400445}
446
Chuck Lever166b88d2008-07-14 16:03:26 -0400447/*
448 * XDR functions for rpcbind
449 */
450
Chuck Levera5090502007-03-29 16:48:04 -0400451static int rpcb_encode_mapping(struct rpc_rqst *req, __be32 *p,
452 struct rpcbind_args *rpcb)
453{
454 dprintk("RPC: rpcb_encode_mapping(%u, %u, %d, %u)\n",
455 rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
456 *p++ = htonl(rpcb->r_prog);
457 *p++ = htonl(rpcb->r_vers);
458 *p++ = htonl(rpcb->r_prot);
459 *p++ = htonl(rpcb->r_port);
460
461 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
462 return 0;
463}
464
465static int rpcb_decode_getport(struct rpc_rqst *req, __be32 *p,
466 unsigned short *portp)
467{
468 *portp = (unsigned short) ntohl(*p++);
Chuck Lever877fcf12008-06-25 17:24:23 -0400469 dprintk("RPC: rpcb_decode_getport result %u\n",
Chuck Levera5090502007-03-29 16:48:04 -0400470 *portp);
471 return 0;
472}
473
474static int rpcb_decode_set(struct rpc_rqst *req, __be32 *p,
475 unsigned int *boolp)
476{
477 *boolp = (unsigned int) ntohl(*p++);
Chuck Lever877fcf12008-06-25 17:24:23 -0400478 dprintk("RPC: rpcb_decode_set: call %s\n",
479 (*boolp ? "succeeded" : "failed"));
Chuck Levera5090502007-03-29 16:48:04 -0400480 return 0;
481}
482
483static int rpcb_encode_getaddr(struct rpc_rqst *req, __be32 *p,
484 struct rpcbind_args *rpcb)
485{
486 dprintk("RPC: rpcb_encode_getaddr(%u, %u, %s)\n",
487 rpcb->r_prog, rpcb->r_vers, rpcb->r_addr);
488 *p++ = htonl(rpcb->r_prog);
489 *p++ = htonl(rpcb->r_vers);
490
491 p = xdr_encode_string(p, rpcb->r_netid);
492 p = xdr_encode_string(p, rpcb->r_addr);
493 p = xdr_encode_string(p, rpcb->r_owner);
494
495 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
496
497 return 0;
498}
499
500static int rpcb_decode_getaddr(struct rpc_rqst *req, __be32 *p,
501 unsigned short *portp)
502{
503 char *addr;
Chuck Leveradc24df2007-08-06 11:56:31 -0400504 u32 addr_len;
505 int c, i, f, first, val;
Chuck Levera5090502007-03-29 16:48:04 -0400506
507 *portp = 0;
Chuck Leveradc24df2007-08-06 11:56:31 -0400508 addr_len = ntohl(*p++);
Chuck Levera5090502007-03-29 16:48:04 -0400509
Chuck Levere65fe392007-09-11 18:00:31 -0400510 /*
511 * Simple sanity check. The smallest possible universal
512 * address is an IPv4 address string containing 11 bytes.
513 */
Chuck Lever0fb2b7e2007-12-10 14:56:46 -0500514 if (addr_len < 11 || addr_len > RPCBIND_MAXUADDRLEN)
Chuck Levere65fe392007-09-11 18:00:31 -0400515 goto out_err;
Chuck Levera5090502007-03-29 16:48:04 -0400516
Chuck Levere65fe392007-09-11 18:00:31 -0400517 /*
518 * Start at the end and walk backwards until the first dot
519 * is encountered. When the second dot is found, we have
520 * both parts of the port number.
521 */
Chuck Levera5090502007-03-29 16:48:04 -0400522 addr = (char *)p;
523 val = 0;
524 first = 1;
525 f = 1;
526 for (i = addr_len - 1; i > 0; i--) {
527 c = addr[i];
528 if (c >= '0' && c <= '9') {
529 val += (c - '0') * f;
530 f *= 10;
531 } else if (c == '.') {
532 if (first) {
533 *portp = val;
534 val = first = 0;
535 f = 1;
536 } else {
537 *portp |= (val << 8);
538 break;
539 }
540 }
541 }
542
Chuck Levere65fe392007-09-11 18:00:31 -0400543 /*
544 * Simple sanity check. If we never saw a dot in the reply,
545 * then this was probably just garbage.
546 */
547 if (first)
548 goto out_err;
549
Chuck Levera5090502007-03-29 16:48:04 -0400550 dprintk("RPC: rpcb_decode_getaddr port=%u\n", *portp);
551 return 0;
Chuck Levere65fe392007-09-11 18:00:31 -0400552
553out_err:
554 dprintk("RPC: rpcbind server returned malformed reply\n");
555 return -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400556}
557
558#define RPCB_program_sz (1u)
559#define RPCB_version_sz (1u)
560#define RPCB_protocol_sz (1u)
561#define RPCB_port_sz (1u)
562#define RPCB_boolean_sz (1u)
563
\"Talpey, Thomas\4f40ee42007-09-10 13:42:38 -0400564#define RPCB_netid_sz (1+XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
Chuck Lever0fb2b7e2007-12-10 14:56:46 -0500565#define RPCB_addr_sz (1+XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
Chuck Levera5090502007-03-29 16:48:04 -0400566#define RPCB_ownerstring_sz (1+XDR_QUADLEN(RPCB_MAXOWNERLEN))
567
568#define RPCB_mappingargs_sz RPCB_program_sz+RPCB_version_sz+ \
569 RPCB_protocol_sz+RPCB_port_sz
570#define RPCB_getaddrargs_sz RPCB_program_sz+RPCB_version_sz+ \
571 RPCB_netid_sz+RPCB_addr_sz+ \
572 RPCB_ownerstring_sz
573
574#define RPCB_setres_sz RPCB_boolean_sz
575#define RPCB_getportres_sz RPCB_port_sz
576
577/*
578 * Note that RFC 1833 does not put any size restrictions on the
579 * address string returned by the remote rpcbind database.
580 */
581#define RPCB_getaddrres_sz RPCB_addr_sz
582
583#define PROC(proc, argtype, restype) \
584 [RPCBPROC_##proc] = { \
585 .p_proc = RPCBPROC_##proc, \
586 .p_encode = (kxdrproc_t) rpcb_encode_##argtype, \
587 .p_decode = (kxdrproc_t) rpcb_decode_##restype, \
588 .p_arglen = RPCB_##argtype##args_sz, \
589 .p_replen = RPCB_##restype##res_sz, \
590 .p_statidx = RPCBPROC_##proc, \
591 .p_timer = 0, \
592 .p_name = #proc, \
593 }
594
595/*
596 * Not all rpcbind procedures described in RFC 1833 are implemented
597 * since the Linux kernel RPC code requires only these.
598 */
599static struct rpc_procinfo rpcb_procedures2[] = {
600 PROC(SET, mapping, set),
601 PROC(UNSET, mapping, set),
Chuck Lever6a774052008-06-25 17:24:39 -0400602 PROC(GETPORT, mapping, getport),
Chuck Levera5090502007-03-29 16:48:04 -0400603};
604
605static struct rpc_procinfo rpcb_procedures3[] = {
Chuck Lever166b88d2008-07-14 16:03:26 -0400606 PROC(SET, getaddr, set),
607 PROC(UNSET, getaddr, set),
Chuck Levera5090502007-03-29 16:48:04 -0400608 PROC(GETADDR, getaddr, getaddr),
609};
610
611static struct rpc_procinfo rpcb_procedures4[] = {
Chuck Lever166b88d2008-07-14 16:03:26 -0400612 PROC(SET, getaddr, set),
613 PROC(UNSET, getaddr, set),
Chuck Lever88424132008-06-25 17:24:47 -0400614 PROC(GETADDR, getaddr, getaddr),
Chuck Levera5090502007-03-29 16:48:04 -0400615 PROC(GETVERSADDR, getaddr, getaddr),
616};
617
618static struct rpcb_info rpcb_next_version[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400619 {
620 .rpc_vers = RPCBVERS_2,
621 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
622 },
623 {
624 .rpc_proc = NULL,
625 },
Chuck Levera5090502007-03-29 16:48:04 -0400626};
627
Chuck Leverd5b64432007-08-06 11:57:18 -0400628static struct rpcb_info rpcb_next_version6[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400629 {
630 .rpc_vers = RPCBVERS_4,
Chuck Lever88424132008-06-25 17:24:47 -0400631 .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
Chuck Leverfc200e72008-06-25 17:24:31 -0400632 },
633 {
634 .rpc_vers = RPCBVERS_3,
635 .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
636 },
Chuck Leverfc200e72008-06-25 17:24:31 -0400637 {
638 .rpc_proc = NULL,
639 },
Chuck Leverd5b64432007-08-06 11:57:18 -0400640};
641
Chuck Levera5090502007-03-29 16:48:04 -0400642static struct rpc_version rpcb_version2 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400643 .number = RPCBVERS_2,
Chuck Levera5090502007-03-29 16:48:04 -0400644 .nrprocs = RPCB_HIGHPROC_2,
645 .procs = rpcb_procedures2
646};
647
648static struct rpc_version rpcb_version3 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400649 .number = RPCBVERS_3,
Chuck Levera5090502007-03-29 16:48:04 -0400650 .nrprocs = RPCB_HIGHPROC_3,
651 .procs = rpcb_procedures3
652};
653
654static struct rpc_version rpcb_version4 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400655 .number = RPCBVERS_4,
Chuck Levera5090502007-03-29 16:48:04 -0400656 .nrprocs = RPCB_HIGHPROC_4,
657 .procs = rpcb_procedures4
658};
659
660static struct rpc_version *rpcb_version[] = {
661 NULL,
662 NULL,
663 &rpcb_version2,
664 &rpcb_version3,
665 &rpcb_version4
666};
667
668static struct rpc_stat rpcb_stats;
669
Adrian Bunk7f4adef2007-06-13 01:03:13 +0200670static struct rpc_program rpcb_program = {
Chuck Levera5090502007-03-29 16:48:04 -0400671 .name = "rpcbind",
672 .number = RPCBIND_PROGRAM,
673 .nrvers = ARRAY_SIZE(rpcb_version),
674 .version = rpcb_version,
675 .stats = &rpcb_stats,
676};