blob: 0021fad464e07b939d318824223f89287c1382e4 [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 Levera5090502007-03-29 16:48:04 -0400119static struct rpc_clnt *rpcb_create(char *hostname, struct sockaddr *srvaddr,
Chuck Lever0a48f5d2007-12-10 14:56:38 -0500120 size_t salen, int proto, u32 version,
Chuck Lever9f6ad262007-12-10 14:56:31 -0500121 int privileged)
Chuck Levera5090502007-03-29 16:48:04 -0400122{
123 struct rpc_create_args args = {
124 .protocol = proto,
125 .address = srvaddr,
Chuck Lever9f6ad262007-12-10 14:56:31 -0500126 .addrsize = salen,
Chuck Levera5090502007-03-29 16:48:04 -0400127 .servername = hostname,
128 .program = &rpcb_program,
129 .version = version,
130 .authflavor = RPC_AUTH_UNIX,
Matthew Wilcox150030b2007-12-06 16:24:39 -0500131 .flags = RPC_CLNT_CREATE_NOPING,
Chuck Levera5090502007-03-29 16:48:04 -0400132 };
133
Chuck Leverd5b64432007-08-06 11:57:18 -0400134 switch (srvaddr->sa_family) {
135 case AF_INET:
136 ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
137 break;
138 case AF_INET6:
139 ((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
140 break;
141 default:
142 return NULL;
143 }
144
Chuck Levera5090502007-03-29 16:48:04 -0400145 if (!privileged)
146 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
147 return rpc_create(&args);
148}
149
150/**
151 * rpcb_register - set or unset a port registration with the local rpcbind svc
152 * @prog: RPC program number to bind
153 * @vers: RPC version number to bind
154 * @prot: transport protocol to use to make this request
155 * @port: port value to register
156 * @okay: result code
157 *
158 * port == 0 means unregister, port != 0 means register.
159 *
160 * This routine supports only rpcbind version 2.
161 */
162int rpcb_register(u32 prog, u32 vers, int prot, unsigned short port, int *okay)
163{
164 struct sockaddr_in sin = {
165 .sin_family = AF_INET,
166 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
167 };
168 struct rpcbind_args map = {
169 .r_prog = prog,
170 .r_vers = vers,
171 .r_prot = prot,
172 .r_port = port,
173 };
174 struct rpc_message msg = {
175 .rpc_proc = &rpcb_procedures2[port ?
176 RPCBPROC_SET : RPCBPROC_UNSET],
177 .rpc_argp = &map,
178 .rpc_resp = okay,
179 };
180 struct rpc_clnt *rpcb_clnt;
181 int error = 0;
182
183 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
184 "rpcbind\n", (port ? "" : "un"),
185 prog, vers, prot, port);
186
187 rpcb_clnt = rpcb_create("localhost", (struct sockaddr *) &sin,
Chuck Leverfc200e72008-06-25 17:24:31 -0400188 sizeof(sin), XPRT_TRANSPORT_UDP, RPCBVERS_2, 1);
Chuck Levera5090502007-03-29 16:48:04 -0400189 if (IS_ERR(rpcb_clnt))
190 return PTR_ERR(rpcb_clnt);
191
192 error = rpc_call_sync(rpcb_clnt, &msg, 0);
193
Trond Myklebust90c57552007-06-09 19:49:36 -0400194 rpc_shutdown_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400195 if (error < 0)
196 printk(KERN_WARNING "RPC: failed to contact local rpcbind "
197 "server (errno %d).\n", -error);
198 dprintk("RPC: registration status %d/%d\n", error, *okay);
199
200 return error;
201}
202
Chuck Levera5090502007-03-29 16:48:04 -0400203/**
Chuck Levercce63cd2007-07-01 12:13:12 -0400204 * rpcb_getport_sync - obtain the port for an RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400205 * @sin: address of remote peer
206 * @prog: RPC program number to bind
207 * @vers: RPC version number to bind
208 * @prot: transport protocol to use to make this request
209 *
Chuck Lever67d60212008-01-14 15:12:01 -0500210 * Return value is the requested advertised port number,
211 * or a negative errno value.
212 *
Chuck Levera5090502007-03-29 16:48:04 -0400213 * Called from outside the RPC client in a synchronous task context.
Chuck Levercce63cd2007-07-01 12:13:12 -0400214 * Uses default timeout parameters specified by underlying transport.
Chuck Levera5090502007-03-29 16:48:04 -0400215 *
Chuck Lever67d60212008-01-14 15:12:01 -0500216 * XXX: Needs to support IPv6
Chuck Levera5090502007-03-29 16:48:04 -0400217 */
Chuck Leverf1ec08c2008-01-14 15:11:53 -0500218int rpcb_getport_sync(struct sockaddr_in *sin, u32 prog, u32 vers, int prot)
Chuck Levera5090502007-03-29 16:48:04 -0400219{
220 struct rpcbind_args map = {
221 .r_prog = prog,
222 .r_vers = vers,
223 .r_prot = prot,
224 .r_port = 0,
225 };
226 struct rpc_message msg = {
227 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
228 .rpc_argp = &map,
229 .rpc_resp = &map.r_port,
230 };
231 struct rpc_clnt *rpcb_clnt;
Chuck Levera5090502007-03-29 16:48:04 -0400232 int status;
233
Chuck Levercce63cd2007-07-01 12:13:12 -0400234 dprintk("RPC: %s(" NIPQUAD_FMT ", %u, %u, %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800235 __func__, NIPQUAD(sin->sin_addr.s_addr), prog, vers, prot);
Chuck Levera5090502007-03-29 16:48:04 -0400236
Chuck Leverb91e1012008-01-14 15:11:46 -0500237 rpcb_clnt = rpcb_create(NULL, (struct sockaddr *)sin,
Chuck Leverfc200e72008-06-25 17:24:31 -0400238 sizeof(*sin), prot, RPCBVERS_2, 0);
Chuck Levera5090502007-03-29 16:48:04 -0400239 if (IS_ERR(rpcb_clnt))
240 return PTR_ERR(rpcb_clnt);
241
242 status = rpc_call_sync(rpcb_clnt, &msg, 0);
Trond Myklebust90c57552007-06-09 19:49:36 -0400243 rpc_shutdown_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400244
245 if (status >= 0) {
246 if (map.r_port != 0)
247 return map.r_port;
248 status = -EACCES;
249 }
250 return status;
251}
Chuck Levercce63cd2007-07-01 12:13:12 -0400252EXPORT_SYMBOL_GPL(rpcb_getport_sync);
Chuck Levera5090502007-03-29 16:48:04 -0400253
Trond Myklebust803a9062008-07-01 15:20:55 -0400254static 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 -0400255{
256 struct rpc_message msg = {
Trond Myklebust803a9062008-07-01 15:20:55 -0400257 .rpc_proc = proc,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400258 .rpc_argp = map,
259 .rpc_resp = &map->r_port,
260 };
261 struct rpc_task_setup task_setup_data = {
262 .rpc_client = rpcb_clnt,
263 .rpc_message = &msg,
264 .callback_ops = &rpcb_getport_ops,
265 .callback_data = map,
266 .flags = RPC_TASK_ASYNC,
267 };
268
269 return rpc_run_task(&task_setup_data);
270}
271
Chuck Levera5090502007-03-29 16:48:04 -0400272/**
Chuck Lever45160d62007-07-01 12:13:17 -0400273 * rpcb_getport_async - obtain the port for a given RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400274 * @task: task that is waiting for portmapper request
275 *
276 * This one can be called for an ongoing RPC request, and can be used in
277 * an async (rpciod) context.
278 */
Chuck Lever45160d62007-07-01 12:13:17 -0400279void rpcb_getport_async(struct rpc_task *task)
Chuck Levera5090502007-03-29 16:48:04 -0400280{
281 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebust803a9062008-07-01 15:20:55 -0400282 struct rpc_procinfo *proc;
Chuck Lever0a48f5d2007-12-10 14:56:38 -0500283 u32 bind_version;
Chuck Levera5090502007-03-29 16:48:04 -0400284 struct rpc_xprt *xprt = task->tk_xprt;
285 struct rpc_clnt *rpcb_clnt;
286 static struct rpcbind_args *map;
287 struct rpc_task *child;
Chuck Lever9f6ad262007-12-10 14:56:31 -0500288 struct sockaddr_storage addr;
289 struct sockaddr *sap = (struct sockaddr *)&addr;
290 size_t salen;
Chuck Levera5090502007-03-29 16:48:04 -0400291 int status;
292
Chuck Lever45160d62007-07-01 12:13:17 -0400293 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800294 task->tk_pid, __func__,
Chuck Lever45160d62007-07-01 12:13:17 -0400295 clnt->cl_server, clnt->cl_prog, clnt->cl_vers, xprt->prot);
Chuck Levera5090502007-03-29 16:48:04 -0400296
297 /* Autobind on cloned rpc clients is discouraged */
298 BUG_ON(clnt->cl_parent != clnt);
299
Trond Myklebust381ba742008-07-07 12:18:53 -0400300 /* Put self on the wait queue to ensure we get notified if
301 * some other task is already attempting to bind the port */
302 rpc_sleep_on(&xprt->binding, task, NULL);
303
Chuck Levera5090502007-03-29 16:48:04 -0400304 if (xprt_test_and_set_binding(xprt)) {
Chuck Lever45160d62007-07-01 12:13:17 -0400305 dprintk("RPC: %5u %s: waiting for another binder\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800306 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400307 return;
Chuck Levera5090502007-03-29 16:48:04 -0400308 }
309
Chuck Levera5090502007-03-29 16:48:04 -0400310 /* Someone else may have bound if we slept */
311 if (xprt_bound(xprt)) {
312 status = 0;
Chuck Lever45160d62007-07-01 12:13:17 -0400313 dprintk("RPC: %5u %s: already bound\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800314 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400315 goto bailout_nofree;
316 }
317
Chuck Lever9f6ad262007-12-10 14:56:31 -0500318 salen = rpc_peeraddr(clnt, sap, sizeof(addr));
Chuck Leverd5b64432007-08-06 11:57:18 -0400319
320 /* Don't ever use rpcbind v2 for AF_INET6 requests */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500321 switch (sap->sa_family) {
Chuck Leverd5b64432007-08-06 11:57:18 -0400322 case AF_INET:
Trond Myklebust803a9062008-07-01 15:20:55 -0400323 proc = rpcb_next_version[xprt->bind_index].rpc_proc;
324 bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400325 break;
326 case AF_INET6:
Trond Myklebust803a9062008-07-01 15:20:55 -0400327 proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
328 bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400329 break;
330 default:
331 status = -EAFNOSUPPORT;
332 dprintk("RPC: %5u %s: bad address family\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800333 task->tk_pid, __func__);
Chuck Leverd5b64432007-08-06 11:57:18 -0400334 goto bailout_nofree;
335 }
Trond Myklebust803a9062008-07-01 15:20:55 -0400336 if (proc == NULL) {
Chuck Levera5090502007-03-29 16:48:04 -0400337 xprt->bind_index = 0;
Chuck Lever906462a2007-09-11 18:00:47 -0400338 status = -EPFNOSUPPORT;
Chuck Lever45160d62007-07-01 12:13:17 -0400339 dprintk("RPC: %5u %s: no more getport versions available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800340 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400341 goto bailout_nofree;
342 }
Chuck Levera5090502007-03-29 16:48:04 -0400343
Chuck Lever45160d62007-07-01 12:13:17 -0400344 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800345 task->tk_pid, __func__, bind_version);
Chuck Levera5090502007-03-29 16:48:04 -0400346
Chuck Lever9f6ad262007-12-10 14:56:31 -0500347 rpcb_clnt = rpcb_create(clnt->cl_server, sap, salen, xprt->prot,
Chuck Lever143b6c42007-08-16 16:03:31 -0400348 bind_version, 0);
349 if (IS_ERR(rpcb_clnt)) {
350 status = PTR_ERR(rpcb_clnt);
351 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800352 task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
Chuck Lever143b6c42007-08-16 16:03:31 -0400353 goto bailout_nofree;
354 }
355
Chuck Levera5090502007-03-29 16:48:04 -0400356 map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
357 if (!map) {
358 status = -ENOMEM;
Chuck Lever45160d62007-07-01 12:13:17 -0400359 dprintk("RPC: %5u %s: no memory available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800360 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400361 goto bailout_nofree;
362 }
363 map->r_prog = clnt->cl_prog;
364 map->r_vers = clnt->cl_vers;
365 map->r_prot = xprt->prot;
366 map->r_port = 0;
367 map->r_xprt = xprt_get(xprt);
Trond Myklebust86d61d82008-01-07 21:16:56 -0500368 map->r_netid = rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
369 map->r_addr = rpc_peeraddr2str(rpcb_clnt, RPC_DISPLAY_UNIVERSAL_ADDR);
Chuck Levera5090502007-03-29 16:48:04 -0400370 map->r_owner = RPCB_OWNER_STRING; /* ignored for GETADDR */
Trond Myklebust381ba742008-07-07 12:18:53 -0400371 map->r_status = -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400372
Trond Myklebust803a9062008-07-01 15:20:55 -0400373 child = rpcb_call_async(rpcb_clnt, map, proc);
Trond Myklebust4c402b42007-06-14 16:40:32 -0400374 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400375 if (IS_ERR(child)) {
Trond Myklebust0d3a34b2008-07-07 12:18:52 -0400376 /* rpcb_map_release() has freed the arguments */
Chuck Lever45160d62007-07-01 12:13:17 -0400377 dprintk("RPC: %5u %s: rpc_run_task failed\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800378 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400379 return;
Chuck Levera5090502007-03-29 16:48:04 -0400380 }
381 rpc_put_task(child);
382
383 task->tk_xprt->stat.bind_count++;
384 return;
385
Chuck Levera5090502007-03-29 16:48:04 -0400386bailout_nofree:
387 rpcb_wake_rpcbind_waiters(xprt, status);
Chuck Levera5090502007-03-29 16:48:04 -0400388 task->tk_status = status;
389}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400390EXPORT_SYMBOL_GPL(rpcb_getport_async);
Chuck Levera5090502007-03-29 16:48:04 -0400391
392/*
393 * Rpcbind child task calls this callback via tk_exit.
394 */
395static void rpcb_getport_done(struct rpc_task *child, void *data)
396{
397 struct rpcbind_args *map = data;
398 struct rpc_xprt *xprt = map->r_xprt;
399 int status = child->tk_status;
400
Chuck Lever4784cb52007-09-11 18:00:36 -0400401 /* Garbage reply: retry with a lesser rpcbind version */
402 if (status == -EIO)
403 status = -EPROTONOSUPPORT;
404
Chuck Levera5090502007-03-29 16:48:04 -0400405 /* rpcbind server doesn't support this rpcbind protocol version */
406 if (status == -EPROTONOSUPPORT)
407 xprt->bind_index++;
408
409 if (status < 0) {
410 /* rpcbind server not available on remote host? */
411 xprt->ops->set_port(xprt, 0);
412 } else if (map->r_port == 0) {
413 /* Requested RPC service wasn't registered on remote host */
414 xprt->ops->set_port(xprt, 0);
415 status = -EACCES;
416 } else {
417 /* Succeeded */
418 xprt->ops->set_port(xprt, map->r_port);
419 xprt_set_bound(xprt);
420 status = 0;
421 }
422
423 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
424 child->tk_pid, status, map->r_port);
425
Trond Myklebust381ba742008-07-07 12:18:53 -0400426 map->r_status = status;
Chuck Levera5090502007-03-29 16:48:04 -0400427}
428
Chuck Lever166b88d2008-07-14 16:03:26 -0400429/*
430 * XDR functions for rpcbind
431 */
432
Chuck Levera5090502007-03-29 16:48:04 -0400433static int rpcb_encode_mapping(struct rpc_rqst *req, __be32 *p,
434 struct rpcbind_args *rpcb)
435{
436 dprintk("RPC: rpcb_encode_mapping(%u, %u, %d, %u)\n",
437 rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
438 *p++ = htonl(rpcb->r_prog);
439 *p++ = htonl(rpcb->r_vers);
440 *p++ = htonl(rpcb->r_prot);
441 *p++ = htonl(rpcb->r_port);
442
443 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
444 return 0;
445}
446
447static int rpcb_decode_getport(struct rpc_rqst *req, __be32 *p,
448 unsigned short *portp)
449{
450 *portp = (unsigned short) ntohl(*p++);
Chuck Lever877fcf12008-06-25 17:24:23 -0400451 dprintk("RPC: rpcb_decode_getport result %u\n",
Chuck Levera5090502007-03-29 16:48:04 -0400452 *portp);
453 return 0;
454}
455
456static int rpcb_decode_set(struct rpc_rqst *req, __be32 *p,
457 unsigned int *boolp)
458{
459 *boolp = (unsigned int) ntohl(*p++);
Chuck Lever877fcf12008-06-25 17:24:23 -0400460 dprintk("RPC: rpcb_decode_set: call %s\n",
461 (*boolp ? "succeeded" : "failed"));
Chuck Levera5090502007-03-29 16:48:04 -0400462 return 0;
463}
464
465static int rpcb_encode_getaddr(struct rpc_rqst *req, __be32 *p,
466 struct rpcbind_args *rpcb)
467{
468 dprintk("RPC: rpcb_encode_getaddr(%u, %u, %s)\n",
469 rpcb->r_prog, rpcb->r_vers, rpcb->r_addr);
470 *p++ = htonl(rpcb->r_prog);
471 *p++ = htonl(rpcb->r_vers);
472
473 p = xdr_encode_string(p, rpcb->r_netid);
474 p = xdr_encode_string(p, rpcb->r_addr);
475 p = xdr_encode_string(p, rpcb->r_owner);
476
477 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
478
479 return 0;
480}
481
482static int rpcb_decode_getaddr(struct rpc_rqst *req, __be32 *p,
483 unsigned short *portp)
484{
485 char *addr;
Chuck Leveradc24df2007-08-06 11:56:31 -0400486 u32 addr_len;
487 int c, i, f, first, val;
Chuck Levera5090502007-03-29 16:48:04 -0400488
489 *portp = 0;
Chuck Leveradc24df2007-08-06 11:56:31 -0400490 addr_len = ntohl(*p++);
Chuck Levera5090502007-03-29 16:48:04 -0400491
Chuck Levere65fe392007-09-11 18:00:31 -0400492 /*
493 * Simple sanity check. The smallest possible universal
494 * address is an IPv4 address string containing 11 bytes.
495 */
Chuck Lever0fb2b7e2007-12-10 14:56:46 -0500496 if (addr_len < 11 || addr_len > RPCBIND_MAXUADDRLEN)
Chuck Levere65fe392007-09-11 18:00:31 -0400497 goto out_err;
Chuck Levera5090502007-03-29 16:48:04 -0400498
Chuck Levere65fe392007-09-11 18:00:31 -0400499 /*
500 * Start at the end and walk backwards until the first dot
501 * is encountered. When the second dot is found, we have
502 * both parts of the port number.
503 */
Chuck Levera5090502007-03-29 16:48:04 -0400504 addr = (char *)p;
505 val = 0;
506 first = 1;
507 f = 1;
508 for (i = addr_len - 1; i > 0; i--) {
509 c = addr[i];
510 if (c >= '0' && c <= '9') {
511 val += (c - '0') * f;
512 f *= 10;
513 } else if (c == '.') {
514 if (first) {
515 *portp = val;
516 val = first = 0;
517 f = 1;
518 } else {
519 *portp |= (val << 8);
520 break;
521 }
522 }
523 }
524
Chuck Levere65fe392007-09-11 18:00:31 -0400525 /*
526 * Simple sanity check. If we never saw a dot in the reply,
527 * then this was probably just garbage.
528 */
529 if (first)
530 goto out_err;
531
Chuck Levera5090502007-03-29 16:48:04 -0400532 dprintk("RPC: rpcb_decode_getaddr port=%u\n", *portp);
533 return 0;
Chuck Levere65fe392007-09-11 18:00:31 -0400534
535out_err:
536 dprintk("RPC: rpcbind server returned malformed reply\n");
537 return -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400538}
539
540#define RPCB_program_sz (1u)
541#define RPCB_version_sz (1u)
542#define RPCB_protocol_sz (1u)
543#define RPCB_port_sz (1u)
544#define RPCB_boolean_sz (1u)
545
\"Talpey, Thomas\4f40ee42007-09-10 13:42:38 -0400546#define RPCB_netid_sz (1+XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
Chuck Lever0fb2b7e2007-12-10 14:56:46 -0500547#define RPCB_addr_sz (1+XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
Chuck Levera5090502007-03-29 16:48:04 -0400548#define RPCB_ownerstring_sz (1+XDR_QUADLEN(RPCB_MAXOWNERLEN))
549
550#define RPCB_mappingargs_sz RPCB_program_sz+RPCB_version_sz+ \
551 RPCB_protocol_sz+RPCB_port_sz
552#define RPCB_getaddrargs_sz RPCB_program_sz+RPCB_version_sz+ \
553 RPCB_netid_sz+RPCB_addr_sz+ \
554 RPCB_ownerstring_sz
555
556#define RPCB_setres_sz RPCB_boolean_sz
557#define RPCB_getportres_sz RPCB_port_sz
558
559/*
560 * Note that RFC 1833 does not put any size restrictions on the
561 * address string returned by the remote rpcbind database.
562 */
563#define RPCB_getaddrres_sz RPCB_addr_sz
564
565#define PROC(proc, argtype, restype) \
566 [RPCBPROC_##proc] = { \
567 .p_proc = RPCBPROC_##proc, \
568 .p_encode = (kxdrproc_t) rpcb_encode_##argtype, \
569 .p_decode = (kxdrproc_t) rpcb_decode_##restype, \
570 .p_arglen = RPCB_##argtype##args_sz, \
571 .p_replen = RPCB_##restype##res_sz, \
572 .p_statidx = RPCBPROC_##proc, \
573 .p_timer = 0, \
574 .p_name = #proc, \
575 }
576
577/*
578 * Not all rpcbind procedures described in RFC 1833 are implemented
579 * since the Linux kernel RPC code requires only these.
580 */
581static struct rpc_procinfo rpcb_procedures2[] = {
582 PROC(SET, mapping, set),
583 PROC(UNSET, mapping, set),
Chuck Lever6a774052008-06-25 17:24:39 -0400584 PROC(GETPORT, mapping, getport),
Chuck Levera5090502007-03-29 16:48:04 -0400585};
586
587static struct rpc_procinfo rpcb_procedures3[] = {
Chuck Lever166b88d2008-07-14 16:03:26 -0400588 PROC(SET, getaddr, set),
589 PROC(UNSET, getaddr, set),
Chuck Levera5090502007-03-29 16:48:04 -0400590 PROC(GETADDR, getaddr, getaddr),
591};
592
593static struct rpc_procinfo rpcb_procedures4[] = {
Chuck Lever166b88d2008-07-14 16:03:26 -0400594 PROC(SET, getaddr, set),
595 PROC(UNSET, getaddr, set),
Chuck Lever88424132008-06-25 17:24:47 -0400596 PROC(GETADDR, getaddr, getaddr),
Chuck Levera5090502007-03-29 16:48:04 -0400597 PROC(GETVERSADDR, getaddr, getaddr),
598};
599
600static struct rpcb_info rpcb_next_version[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400601 {
602 .rpc_vers = RPCBVERS_2,
603 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
604 },
605 {
606 .rpc_proc = NULL,
607 },
Chuck Levera5090502007-03-29 16:48:04 -0400608};
609
Chuck Leverd5b64432007-08-06 11:57:18 -0400610static struct rpcb_info rpcb_next_version6[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400611 {
612 .rpc_vers = RPCBVERS_4,
Chuck Lever88424132008-06-25 17:24:47 -0400613 .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
Chuck Leverfc200e72008-06-25 17:24:31 -0400614 },
615 {
616 .rpc_vers = RPCBVERS_3,
617 .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
618 },
Chuck Leverfc200e72008-06-25 17:24:31 -0400619 {
620 .rpc_proc = NULL,
621 },
Chuck Leverd5b64432007-08-06 11:57:18 -0400622};
623
Chuck Levera5090502007-03-29 16:48:04 -0400624static struct rpc_version rpcb_version2 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400625 .number = RPCBVERS_2,
Chuck Levera5090502007-03-29 16:48:04 -0400626 .nrprocs = RPCB_HIGHPROC_2,
627 .procs = rpcb_procedures2
628};
629
630static struct rpc_version rpcb_version3 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400631 .number = RPCBVERS_3,
Chuck Levera5090502007-03-29 16:48:04 -0400632 .nrprocs = RPCB_HIGHPROC_3,
633 .procs = rpcb_procedures3
634};
635
636static struct rpc_version rpcb_version4 = {
Chuck Leverfc200e72008-06-25 17:24:31 -0400637 .number = RPCBVERS_4,
Chuck Levera5090502007-03-29 16:48:04 -0400638 .nrprocs = RPCB_HIGHPROC_4,
639 .procs = rpcb_procedures4
640};
641
642static struct rpc_version *rpcb_version[] = {
643 NULL,
644 NULL,
645 &rpcb_version2,
646 &rpcb_version3,
647 &rpcb_version4
648};
649
650static struct rpc_stat rpcb_stats;
651
Adrian Bunk7f4adef2007-06-13 01:03:13 +0200652static struct rpc_program rpcb_program = {
Chuck Levera5090502007-03-29 16:48:04 -0400653 .name = "rpcbind",
654 .number = RPCBIND_PROGRAM,
655 .nrvers = ARRAY_SIZE(rpcb_version),
656 .version = rpcb_version,
657 .stats = &rpcb_stats,
658};