blob: 0d76c0f09bb81091f627f8ac7a83b2d2fb342f83 [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 Lever7402ab192011-05-09 15:22:55 -040019#include <linux/un.h>
Chuck Leverd5b64432007-08-06 11:57:18 -040020#include <linux/in.h>
21#include <linux/in6.h>
Chuck Levera5090502007-03-29 16:48:04 -040022#include <linux/kernel.h>
23#include <linux/errno.h>
Chuck Leverc5266112009-12-03 15:58:56 -050024#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +040026#include <linux/nsproxy.h>
Chuck Lever9d548b92008-09-15 16:27:30 -050027#include <net/ipv6.h>
Chuck Levera5090502007-03-29 16:48:04 -040028
29#include <linux/sunrpc/clnt.h>
30#include <linux/sunrpc/sched.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040031#include <linux/sunrpc/xprtsock.h>
Chuck Levera5090502007-03-29 16:48:04 -040032
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +040033#include "netns.h"
34
Chuck Levera5090502007-03-29 16:48:04 -040035#ifdef RPC_DEBUG
36# define RPCDBG_FACILITY RPCDBG_BIND
37#endif
38
Chuck Lever7402ab192011-05-09 15:22:55 -040039#define RPCBIND_SOCK_PATHNAME "/var/run/rpcbind.sock"
40
Chuck Levera5090502007-03-29 16:48:04 -040041#define RPCBIND_PROGRAM (100000u)
42#define RPCBIND_PORT (111u)
43
Chuck Leverfc200e72008-06-25 17:24:31 -040044#define RPCBVERS_2 (2u)
45#define RPCBVERS_3 (3u)
46#define RPCBVERS_4 (4u)
47
Chuck Levera5090502007-03-29 16:48:04 -040048enum {
49 RPCBPROC_NULL,
50 RPCBPROC_SET,
51 RPCBPROC_UNSET,
52 RPCBPROC_GETPORT,
53 RPCBPROC_GETADDR = 3, /* alias for GETPORT */
54 RPCBPROC_DUMP,
55 RPCBPROC_CALLIT,
56 RPCBPROC_BCAST = 5, /* alias for CALLIT */
57 RPCBPROC_GETTIME,
58 RPCBPROC_UADDR2TADDR,
59 RPCBPROC_TADDR2UADDR,
60 RPCBPROC_GETVERSADDR,
61 RPCBPROC_INDIRECT,
62 RPCBPROC_GETADDRLIST,
63 RPCBPROC_GETSTAT,
64};
65
Chuck Levera5090502007-03-29 16:48:04 -040066/*
Chuck Levera5090502007-03-29 16:48:04 -040067 * r_owner
68 *
69 * The "owner" is allowed to unset a service in the rpcbind database.
Chuck Lever126e4bc2009-03-18 20:47:14 -040070 *
71 * For AF_LOCAL SET/UNSET requests, rpcbind treats this string as a
72 * UID which it maps to a local user name via a password lookup.
73 * In all other cases it is ignored.
74 *
75 * For SET/UNSET requests, user space provides a value, even for
76 * network requests, and GETADDR uses an empty string. We follow
77 * those precedents here.
Chuck Levera5090502007-03-29 16:48:04 -040078 */
Chuck Lever126e4bc2009-03-18 20:47:14 -040079#define RPCB_OWNER_STRING "0"
Chuck Levera5090502007-03-29 16:48:04 -040080#define RPCB_MAXOWNERLEN sizeof(RPCB_OWNER_STRING)
81
Chuck Lever0b10bf52009-08-09 15:09:33 -040082/*
83 * XDR data type sizes
84 */
85#define RPCB_program_sz (1)
86#define RPCB_version_sz (1)
87#define RPCB_protocol_sz (1)
88#define RPCB_port_sz (1)
89#define RPCB_boolean_sz (1)
90
91#define RPCB_netid_sz (1 + XDR_QUADLEN(RPCBIND_MAXNETIDLEN))
92#define RPCB_addr_sz (1 + XDR_QUADLEN(RPCBIND_MAXUADDRLEN))
93#define RPCB_ownerstring_sz (1 + XDR_QUADLEN(RPCB_MAXOWNERLEN))
94
95/*
96 * XDR argument and result sizes
97 */
98#define RPCB_mappingargs_sz (RPCB_program_sz + RPCB_version_sz + \
99 RPCB_protocol_sz + RPCB_port_sz)
100#define RPCB_getaddrargs_sz (RPCB_program_sz + RPCB_version_sz + \
101 RPCB_netid_sz + RPCB_addr_sz + \
102 RPCB_ownerstring_sz)
103
104#define RPCB_getportres_sz RPCB_port_sz
105#define RPCB_setres_sz RPCB_boolean_sz
106
107/*
108 * Note that RFC 1833 does not put any size restrictions on the
109 * address string returned by the remote rpcbind database.
110 */
111#define RPCB_getaddrres_sz RPCB_addr_sz
112
Chuck Levera5090502007-03-29 16:48:04 -0400113static void rpcb_getport_done(struct rpc_task *, void *);
Trond Myklebust381ba742008-07-07 12:18:53 -0400114static void rpcb_map_release(void *data);
Adrian Bunk7f4adef2007-06-13 01:03:13 +0200115static struct rpc_program rpcb_program;
Chuck Levera5090502007-03-29 16:48:04 -0400116
117struct rpcbind_args {
118 struct rpc_xprt * r_xprt;
119
120 u32 r_prog;
121 u32 r_vers;
122 u32 r_prot;
123 unsigned short r_port;
Trond Myklebust86d61d82008-01-07 21:16:56 -0500124 const char * r_netid;
125 const char * r_addr;
126 const char * r_owner;
Trond Myklebust381ba742008-07-07 12:18:53 -0400127
128 int r_status;
Chuck Levera5090502007-03-29 16:48:04 -0400129};
130
131static struct rpc_procinfo rpcb_procedures2[];
132static struct rpc_procinfo rpcb_procedures3[];
Chuck Leverc2e1b092008-07-14 16:03:30 -0400133static struct rpc_procinfo rpcb_procedures4[];
Chuck Levera5090502007-03-29 16:48:04 -0400134
Chuck Leverd5b64432007-08-06 11:57:18 -0400135struct rpcb_info {
Chuck Leverfc200e72008-06-25 17:24:31 -0400136 u32 rpc_vers;
Chuck Levera5090502007-03-29 16:48:04 -0400137 struct rpc_procinfo * rpc_proc;
Chuck Leverd5b64432007-08-06 11:57:18 -0400138};
139
140static struct rpcb_info rpcb_next_version[];
141static struct rpcb_info rpcb_next_version6[];
Chuck Levera5090502007-03-29 16:48:04 -0400142
Chuck Levera5090502007-03-29 16:48:04 -0400143static const struct rpc_call_ops rpcb_getport_ops = {
Chuck Levera5090502007-03-29 16:48:04 -0400144 .rpc_call_done = rpcb_getport_done,
145 .rpc_release = rpcb_map_release,
146};
147
148static void rpcb_wake_rpcbind_waiters(struct rpc_xprt *xprt, int status)
149{
150 xprt_clear_binding(xprt);
151 rpc_wake_up_status(&xprt->binding, status);
152}
153
Trond Myklebust381ba742008-07-07 12:18:53 -0400154static void rpcb_map_release(void *data)
155{
156 struct rpcbind_args *map = data;
157
158 rpcb_wake_rpcbind_waiters(map->r_xprt, map->r_status);
159 xprt_put(map->r_xprt);
Chuck Leverba809132009-08-09 15:09:35 -0400160 kfree(map->r_addr);
Trond Myklebust381ba742008-07-07 12:18:53 -0400161 kfree(map);
162}
163
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400164static int rpcb_get_local(struct net *net)
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300165{
166 int cnt;
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400167 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300168
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400169 spin_lock(&sn->rpcb_clnt_lock);
170 if (sn->rpcb_users)
171 sn->rpcb_users++;
172 cnt = sn->rpcb_users;
173 spin_unlock(&sn->rpcb_clnt_lock);
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300174
175 return cnt;
176}
177
178void rpcb_put_local(void)
179{
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400180 struct sunrpc_net *sn = net_generic(&init_net, sunrpc_net_id);
181 struct rpc_clnt *clnt = sn->rpcb_local_clnt;
182 struct rpc_clnt *clnt4 = sn->rpcb_local_clnt4;
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300183 int shutdown;
184
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400185 spin_lock(&sn->rpcb_clnt_lock);
186 if (--sn->rpcb_users == 0) {
187 sn->rpcb_local_clnt = NULL;
188 sn->rpcb_local_clnt4 = NULL;
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300189 }
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400190 shutdown = !sn->rpcb_users;
191 spin_unlock(&sn->rpcb_clnt_lock);
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300192
193 if (shutdown) {
194 /*
195 * cleanup_rpcb_clnt - remove xprtsock's sysctls, unregister
196 */
197 if (clnt4)
198 rpc_shutdown_client(clnt4);
199 if (clnt)
200 rpc_shutdown_client(clnt);
201 }
202}
203
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400204static void rpcb_set_local(struct net *net, struct rpc_clnt *clnt,
205 struct rpc_clnt *clnt4)
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300206{
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400207 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400208
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300209 /* Protected by rpcb_create_local_mutex */
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400210 sn->rpcb_local_clnt = clnt;
211 sn->rpcb_local_clnt4 = clnt4;
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300212 smp_wmb();
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400213 sn->rpcb_users = 1;
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300214 dprintk("RPC: created new rpcb local clients (rpcb_local_clnt: "
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400215 "%p, rpcb_local_clnt4: %p) for net %p%s\n",
216 sn->rpcb_local_clnt, sn->rpcb_local_clnt4,
217 net, (net == &init_net) ? " (init_net)" : "");
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300218}
219
Chuck Lever7402ab192011-05-09 15:22:55 -0400220/*
221 * Returns zero on success, otherwise a negative errno value
222 * is returned.
223 */
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400224static int rpcb_create_local_unix(struct net *net)
Chuck Lever7402ab192011-05-09 15:22:55 -0400225{
226 static const struct sockaddr_un rpcb_localaddr_rpcbind = {
227 .sun_family = AF_LOCAL,
228 .sun_path = RPCBIND_SOCK_PATHNAME,
229 };
230 struct rpc_create_args args = {
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400231 .net = net,
Chuck Lever7402ab192011-05-09 15:22:55 -0400232 .protocol = XPRT_TRANSPORT_LOCAL,
233 .address = (struct sockaddr *)&rpcb_localaddr_rpcbind,
234 .addrsize = sizeof(rpcb_localaddr_rpcbind),
235 .servername = "localhost",
236 .program = &rpcb_program,
237 .version = RPCBVERS_2,
238 .authflavor = RPC_AUTH_NULL,
239 };
240 struct rpc_clnt *clnt, *clnt4;
241 int result = 0;
Chuck Levercc5598b2008-07-14 16:03:27 -0400242
Chuck Lever7402ab192011-05-09 15:22:55 -0400243 /*
244 * Because we requested an RPC PING at transport creation time,
245 * this works only if the user space portmapper is rpcbind, and
246 * it's listening on AF_LOCAL on the named socket.
247 */
248 clnt = rpc_create(&args);
249 if (IS_ERR(clnt)) {
250 dprintk("RPC: failed to create AF_LOCAL rpcbind "
251 "client (errno %ld).\n", PTR_ERR(clnt));
252 result = -PTR_ERR(clnt);
253 goto out;
254 }
255
256 clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
257 if (IS_ERR(clnt4)) {
258 dprintk("RPC: failed to bind second program to "
259 "rpcbind v4 client (errno %ld).\n",
260 PTR_ERR(clnt4));
261 clnt4 = NULL;
262 }
263
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400264 rpcb_set_local(net, clnt, clnt4);
Chuck Lever7402ab192011-05-09 15:22:55 -0400265
266out:
267 return result;
268}
Chuck Leverc5266112009-12-03 15:58:56 -0500269
270/*
271 * Returns zero on success, otherwise a negative errno value
272 * is returned.
273 */
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400274static int rpcb_create_local_net(struct net *net)
Chuck Levercc5598b2008-07-14 16:03:27 -0400275{
Chuck Lever7402ab192011-05-09 15:22:55 -0400276 static const struct sockaddr_in rpcb_inaddr_loopback = {
277 .sin_family = AF_INET,
278 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
279 .sin_port = htons(RPCBIND_PORT),
280 };
Chuck Levercc5598b2008-07-14 16:03:27 -0400281 struct rpc_create_args args = {
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400282 .net = net,
Chuck Lever2a76b3b2009-12-03 15:58:56 -0500283 .protocol = XPRT_TRANSPORT_TCP,
Chuck Lever5a462112009-12-03 15:58:56 -0500284 .address = (struct sockaddr *)&rpcb_inaddr_loopback,
285 .addrsize = sizeof(rpcb_inaddr_loopback),
Chuck Levercc5598b2008-07-14 16:03:27 -0400286 .servername = "localhost",
287 .program = &rpcb_program,
Chuck Leverc5266112009-12-03 15:58:56 -0500288 .version = RPCBVERS_2,
Chuck Levercc5598b2008-07-14 16:03:27 -0400289 .authflavor = RPC_AUTH_UNIX,
290 .flags = RPC_CLNT_CREATE_NOPING,
291 };
Chuck Leverc5266112009-12-03 15:58:56 -0500292 struct rpc_clnt *clnt, *clnt4;
293 int result = 0;
Chuck Levercc5598b2008-07-14 16:03:27 -0400294
Chuck Leverc5266112009-12-03 15:58:56 -0500295 clnt = rpc_create(&args);
296 if (IS_ERR(clnt)) {
297 dprintk("RPC: failed to create local rpcbind "
298 "client (errno %ld).\n", PTR_ERR(clnt));
299 result = -PTR_ERR(clnt);
300 goto out;
301 }
302
303 /*
304 * This results in an RPC ping. On systems running portmapper,
305 * the v4 ping will fail. Proceed anyway, but disallow rpcb
306 * v4 upcalls.
307 */
308 clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
309 if (IS_ERR(clnt4)) {
Chuck Lever38359352010-09-21 16:55:48 -0400310 dprintk("RPC: failed to bind second program to "
311 "rpcbind v4 client (errno %ld).\n",
312 PTR_ERR(clnt4));
Chuck Leverc5266112009-12-03 15:58:56 -0500313 clnt4 = NULL;
314 }
315
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400316 rpcb_set_local(net, clnt, clnt4);
Chuck Leverc5266112009-12-03 15:58:56 -0500317
318out:
Chuck Lever7402ab192011-05-09 15:22:55 -0400319 return result;
320}
321
322/*
323 * Returns zero on success, otherwise a negative errno value
324 * is returned.
325 */
Stanislav Kinsburskyd9908562011-10-25 14:16:58 +0300326int rpcb_create_local(void)
Chuck Lever7402ab192011-05-09 15:22:55 -0400327{
328 static DEFINE_MUTEX(rpcb_create_local_mutex);
329 int result = 0;
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400330 struct net *net = &init_net;
Chuck Lever7402ab192011-05-09 15:22:55 -0400331
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400332 if (rpcb_get_local(net))
Chuck Lever7402ab192011-05-09 15:22:55 -0400333 return result;
334
335 mutex_lock(&rpcb_create_local_mutex);
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400336 if (rpcb_get_local(net))
Chuck Lever7402ab192011-05-09 15:22:55 -0400337 goto out;
338
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400339 if (rpcb_create_local_unix(net) != 0)
340 result = rpcb_create_local_net(net);
Chuck Lever7402ab192011-05-09 15:22:55 -0400341
342out:
Chuck Leverc5266112009-12-03 15:58:56 -0500343 mutex_unlock(&rpcb_create_local_mutex);
344 return result;
Chuck Levercc5598b2008-07-14 16:03:27 -0400345}
346
Stanislav Kinsburskyc2550e02012-01-13 12:52:35 +0400347static struct rpc_clnt *rpcb_create(struct net *net, char *hostname,
348 struct sockaddr *srvaddr, size_t salen,
349 int proto, u32 version)
Chuck Levera5090502007-03-29 16:48:04 -0400350{
351 struct rpc_create_args args = {
Stanislav Kinsburskyc2550e02012-01-13 12:52:35 +0400352 .net = net,
Chuck Levera5090502007-03-29 16:48:04 -0400353 .protocol = proto,
354 .address = srvaddr,
Chuck Lever9f6ad262007-12-10 14:56:31 -0500355 .addrsize = salen,
Chuck Levera5090502007-03-29 16:48:04 -0400356 .servername = hostname,
357 .program = &rpcb_program,
358 .version = version,
359 .authflavor = RPC_AUTH_UNIX,
Chuck Lever423d8b02008-07-14 16:03:28 -0400360 .flags = (RPC_CLNT_CREATE_NOPING |
361 RPC_CLNT_CREATE_NONPRIVPORT),
Chuck Levera5090502007-03-29 16:48:04 -0400362 };
363
Chuck Leverd5b64432007-08-06 11:57:18 -0400364 switch (srvaddr->sa_family) {
365 case AF_INET:
366 ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
367 break;
368 case AF_INET6:
369 ((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
370 break;
371 default:
Pavel Emelyanovc636b572010-10-06 13:45:56 +0400372 return ERR_PTR(-EAFNOSUPPORT);
Chuck Leverd5b64432007-08-06 11:57:18 -0400373 }
374
Chuck Levera5090502007-03-29 16:48:04 -0400375 return rpc_create(&args);
376}
377
Chuck Leverc5266112009-12-03 15:58:56 -0500378static int rpcb_register_call(struct rpc_clnt *clnt, struct rpc_message *msg)
Chuck Leverbabe80e2008-07-14 16:03:29 -0400379{
Chuck Lever14aeb212008-08-18 19:34:00 -0400380 int result, error = 0;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400381
Chuck Lever14aeb212008-08-18 19:34:00 -0400382 msg->rpc_resp = &result;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400383
Chuck Lever2a76b3b2009-12-03 15:58:56 -0500384 error = rpc_call_sync(clnt, msg, RPC_TASK_SOFTCONN);
Chuck Lever14aeb212008-08-18 19:34:00 -0400385 if (error < 0) {
Chuck Lever363f7242009-03-18 20:47:44 -0400386 dprintk("RPC: failed to contact local rpcbind "
Chuck Leverbabe80e2008-07-14 16:03:29 -0400387 "server (errno %d).\n", -error);
Chuck Lever14aeb212008-08-18 19:34:00 -0400388 return error;
389 }
Chuck Leverbabe80e2008-07-14 16:03:29 -0400390
Chuck Leverdb820d62008-09-25 11:57:05 -0400391 if (!result)
Chuck Lever14aeb212008-08-18 19:34:00 -0400392 return -EACCES;
Chuck Lever14aeb212008-08-18 19:34:00 -0400393 return 0;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400394}
395
Chuck Levera5090502007-03-29 16:48:04 -0400396/**
397 * rpcb_register - set or unset a port registration with the local rpcbind svc
398 * @prog: RPC program number to bind
399 * @vers: RPC version number to bind
Chuck Leverc2e1b092008-07-14 16:03:30 -0400400 * @prot: transport protocol to register
Chuck Levera5090502007-03-29 16:48:04 -0400401 * @port: port value to register
Chuck Lever14aeb212008-08-18 19:34:00 -0400402 *
403 * Returns zero if the registration request was dispatched successfully
404 * and the rpcbind daemon returned success. Otherwise, returns an errno
405 * value that reflects the nature of the error (request could not be
406 * dispatched, timed out, or rpcbind returned an error).
Chuck Levera5090502007-03-29 16:48:04 -0400407 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400408 * RPC services invoke this function to advertise their contact
409 * information via the system's rpcbind daemon. RPC services
410 * invoke this function once for each [program, version, transport]
411 * tuple they wish to advertise.
Chuck Levera5090502007-03-29 16:48:04 -0400412 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400413 * Callers may also unregister RPC services that are no longer
414 * available by setting the passed-in port to zero. This removes
415 * all registered transports for [program, version] from the local
416 * rpcbind database.
417 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400418 * This function uses rpcbind protocol version 2 to contact the
419 * local rpcbind daemon.
420 *
421 * Registration works over both AF_INET and AF_INET6, and services
422 * registered via this function are advertised as available for any
423 * address. If the local rpcbind daemon is listening on AF_INET6,
424 * services registered via this function will be advertised on
425 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
426 * addresses).
Chuck Levera5090502007-03-29 16:48:04 -0400427 */
Chuck Lever14aeb212008-08-18 19:34:00 -0400428int rpcb_register(u32 prog, u32 vers, int prot, unsigned short port)
Chuck Levera5090502007-03-29 16:48:04 -0400429{
Chuck Levera5090502007-03-29 16:48:04 -0400430 struct rpcbind_args map = {
431 .r_prog = prog,
432 .r_vers = vers,
433 .r_prot = prot,
434 .r_port = port,
435 };
436 struct rpc_message msg = {
Chuck Levera5090502007-03-29 16:48:04 -0400437 .rpc_argp = &map,
Chuck Levera5090502007-03-29 16:48:04 -0400438 };
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400439 struct sunrpc_net *sn = net_generic(&init_net, sunrpc_net_id);
Chuck Levera5090502007-03-29 16:48:04 -0400440
441 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
442 "rpcbind\n", (port ? "" : "un"),
443 prog, vers, prot, port);
444
Chuck Leverbabe80e2008-07-14 16:03:29 -0400445 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_UNSET];
446 if (port)
447 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_SET];
448
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400449 return rpcb_register_call(sn->rpcb_local_clnt, &msg);
Chuck Levera5090502007-03-29 16:48:04 -0400450}
451
Chuck Leverc2e1b092008-07-14 16:03:30 -0400452/*
453 * Fill in AF_INET family-specific arguments to register
454 */
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400455static int rpcb_register_inet4(struct sunrpc_net *sn,
456 const struct sockaddr *sap,
Chuck Lever1673d0d2009-03-18 20:47:21 -0400457 struct rpc_message *msg)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400458{
Chuck Lever3aba4552009-03-18 20:47:06 -0400459 const struct sockaddr_in *sin = (const struct sockaddr_in *)sap;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400460 struct rpcbind_args *map = msg->rpc_argp;
Chuck Lever3aba4552009-03-18 20:47:06 -0400461 unsigned short port = ntohs(sin->sin_port);
Chuck Leverba809132009-08-09 15:09:35 -0400462 int result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400463
Trond Myklebustd77385f2011-10-17 16:08:10 -0700464 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400465
466 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
467 "local rpcbind\n", (port ? "" : "un"),
468 map->r_prog, map->r_vers,
469 map->r_addr, map->r_netid);
470
471 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
472 if (port)
473 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
474
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400475 result = rpcb_register_call(sn->rpcb_local_clnt4, msg);
Chuck Leverba809132009-08-09 15:09:35 -0400476 kfree(map->r_addr);
477 return result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400478}
479
480/*
481 * Fill in AF_INET6 family-specific arguments to register
482 */
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400483static int rpcb_register_inet6(struct sunrpc_net *sn,
484 const struct sockaddr *sap,
Chuck Lever1673d0d2009-03-18 20:47:21 -0400485 struct rpc_message *msg)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400486{
Chuck Lever3aba4552009-03-18 20:47:06 -0400487 const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400488 struct rpcbind_args *map = msg->rpc_argp;
Chuck Lever3aba4552009-03-18 20:47:06 -0400489 unsigned short port = ntohs(sin6->sin6_port);
Chuck Leverba809132009-08-09 15:09:35 -0400490 int result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400491
Trond Myklebustd77385f2011-10-17 16:08:10 -0700492 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400493
494 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
495 "local rpcbind\n", (port ? "" : "un"),
496 map->r_prog, map->r_vers,
497 map->r_addr, map->r_netid);
498
499 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
500 if (port)
501 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
502
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400503 result = rpcb_register_call(sn->rpcb_local_clnt4, msg);
Chuck Leverba809132009-08-09 15:09:35 -0400504 kfree(map->r_addr);
505 return result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400506}
507
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400508static int rpcb_unregister_all_protofamilies(struct sunrpc_net *sn,
509 struct rpc_message *msg)
Chuck Lever1673d0d2009-03-18 20:47:21 -0400510{
511 struct rpcbind_args *map = msg->rpc_argp;
512
513 dprintk("RPC: unregistering [%u, %u, '%s'] with "
514 "local rpcbind\n",
515 map->r_prog, map->r_vers, map->r_netid);
516
517 map->r_addr = "";
518 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
519
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400520 return rpcb_register_call(sn->rpcb_local_clnt4, msg);
Chuck Lever1673d0d2009-03-18 20:47:21 -0400521}
522
Chuck Leverc2e1b092008-07-14 16:03:30 -0400523/**
524 * rpcb_v4_register - set or unset a port registration with the local rpcbind
525 * @program: RPC program number of service to (un)register
526 * @version: RPC version number of service to (un)register
527 * @address: address family, IP address, and port to (un)register
528 * @netid: netid of transport protocol to (un)register
Chuck Lever14aeb212008-08-18 19:34:00 -0400529 *
530 * Returns zero if the registration request was dispatched successfully
531 * and the rpcbind daemon returned success. Otherwise, returns an errno
532 * value that reflects the nature of the error (request could not be
533 * dispatched, timed out, or rpcbind returned an error).
Chuck Leverc2e1b092008-07-14 16:03:30 -0400534 *
535 * RPC services invoke this function to advertise their contact
536 * information via the system's rpcbind daemon. RPC services
537 * invoke this function once for each [program, version, address,
538 * netid] tuple they wish to advertise.
539 *
Chuck Lever1673d0d2009-03-18 20:47:21 -0400540 * Callers may also unregister RPC services that are registered at a
541 * specific address by setting the port number in @address to zero.
542 * They may unregister all registered protocol families at once for
543 * a service by passing a NULL @address argument. If @netid is ""
544 * then all netids for [program, version, address] are unregistered.
Chuck Leverc2e1b092008-07-14 16:03:30 -0400545 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400546 * This function uses rpcbind protocol version 4 to contact the
547 * local rpcbind daemon. The local rpcbind daemon must support
548 * version 4 of the rpcbind protocol in order for these functions
549 * to register a service successfully.
550 *
551 * Supported netids include "udp" and "tcp" for UDP and TCP over
552 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
553 * respectively.
554 *
555 * The contents of @address determine the address family and the
556 * port to be registered. The usual practice is to pass INADDR_ANY
557 * as the raw address, but specifying a non-zero address is also
558 * supported by this API if the caller wishes to advertise an RPC
559 * service on a specific network interface.
560 *
561 * Note that passing in INADDR_ANY does not create the same service
562 * registration as IN6ADDR_ANY. The former advertises an RPC
563 * service on any IPv4 address, but not on IPv6. The latter
564 * advertises the service on all IPv4 and IPv6 addresses.
565 */
566int rpcb_v4_register(const u32 program, const u32 version,
Chuck Lever14aeb212008-08-18 19:34:00 -0400567 const struct sockaddr *address, const char *netid)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400568{
569 struct rpcbind_args map = {
570 .r_prog = program,
571 .r_vers = version,
572 .r_netid = netid,
573 .r_owner = RPCB_OWNER_STRING,
574 };
575 struct rpc_message msg = {
576 .rpc_argp = &map,
Chuck Leverc2e1b092008-07-14 16:03:30 -0400577 };
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400578 struct sunrpc_net *sn = net_generic(&init_net, sunrpc_net_id);
Chuck Leverc5266112009-12-03 15:58:56 -0500579
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400580 if (sn->rpcb_local_clnt4 == NULL)
Chuck Leverc5266112009-12-03 15:58:56 -0500581 return -EPROTONOSUPPORT;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400582
Chuck Lever1673d0d2009-03-18 20:47:21 -0400583 if (address == NULL)
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400584 return rpcb_unregister_all_protofamilies(sn, &msg);
Chuck Lever1673d0d2009-03-18 20:47:21 -0400585
Chuck Leverc2e1b092008-07-14 16:03:30 -0400586 switch (address->sa_family) {
587 case AF_INET:
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400588 return rpcb_register_inet4(sn, address, &msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400589 case AF_INET6:
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400590 return rpcb_register_inet6(sn, address, &msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400591 }
592
593 return -EAFNOSUPPORT;
594}
595
Trond Myklebust803a9062008-07-01 15:20:55 -0400596static 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 -0400597{
598 struct rpc_message msg = {
Trond Myklebust803a9062008-07-01 15:20:55 -0400599 .rpc_proc = proc,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400600 .rpc_argp = map,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400601 .rpc_resp = map,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400602 };
603 struct rpc_task_setup task_setup_data = {
604 .rpc_client = rpcb_clnt,
605 .rpc_message = &msg,
606 .callback_ops = &rpcb_getport_ops,
607 .callback_data = map,
Chuck Lever012da152009-12-03 15:58:56 -0500608 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFTCONN,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400609 };
610
611 return rpc_run_task(&task_setup_data);
612}
613
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400614/*
615 * In the case where rpc clients have been cloned, we want to make
616 * sure that we use the program number/version etc of the actual
617 * owner of the xprt. To do so, we walk back up the tree of parents
618 * to find whoever created the transport and/or whoever has the
619 * autobind flag set.
620 */
621static struct rpc_clnt *rpcb_find_transport_owner(struct rpc_clnt *clnt)
622{
623 struct rpc_clnt *parent = clnt->cl_parent;
624
625 while (parent != clnt) {
626 if (parent->cl_xprt != clnt->cl_xprt)
627 break;
628 if (clnt->cl_autobind)
629 break;
630 clnt = parent;
631 parent = parent->cl_parent;
632 }
633 return clnt;
634}
635
Chuck Levera5090502007-03-29 16:48:04 -0400636/**
Chuck Lever45160d62007-07-01 12:13:17 -0400637 * rpcb_getport_async - obtain the port for a given RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400638 * @task: task that is waiting for portmapper request
639 *
640 * This one can be called for an ongoing RPC request, and can be used in
641 * an async (rpciod) context.
642 */
Chuck Lever45160d62007-07-01 12:13:17 -0400643void rpcb_getport_async(struct rpc_task *task)
Chuck Levera5090502007-03-29 16:48:04 -0400644{
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400645 struct rpc_clnt *clnt;
Trond Myklebust803a9062008-07-01 15:20:55 -0400646 struct rpc_procinfo *proc;
Chuck Lever0a48f5d2007-12-10 14:56:38 -0500647 u32 bind_version;
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400648 struct rpc_xprt *xprt;
Chuck Levera5090502007-03-29 16:48:04 -0400649 struct rpc_clnt *rpcb_clnt;
Ben Greearec0dd262011-07-12 10:27:55 -0700650 struct rpcbind_args *map;
Chuck Levera5090502007-03-29 16:48:04 -0400651 struct rpc_task *child;
Chuck Lever9f6ad262007-12-10 14:56:31 -0500652 struct sockaddr_storage addr;
653 struct sockaddr *sap = (struct sockaddr *)&addr;
654 size_t salen;
Chuck Levera5090502007-03-29 16:48:04 -0400655 int status;
656
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400657 clnt = rpcb_find_transport_owner(task->tk_client);
658 xprt = clnt->cl_xprt;
659
Chuck Lever45160d62007-07-01 12:13:17 -0400660 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800661 task->tk_pid, __func__,
Chuck Lever45160d62007-07-01 12:13:17 -0400662 clnt->cl_server, clnt->cl_prog, clnt->cl_vers, xprt->prot);
Chuck Levera5090502007-03-29 16:48:04 -0400663
Trond Myklebust381ba742008-07-07 12:18:53 -0400664 /* Put self on the wait queue to ensure we get notified if
665 * some other task is already attempting to bind the port */
666 rpc_sleep_on(&xprt->binding, task, NULL);
667
Chuck Levera5090502007-03-29 16:48:04 -0400668 if (xprt_test_and_set_binding(xprt)) {
Chuck Lever45160d62007-07-01 12:13:17 -0400669 dprintk("RPC: %5u %s: waiting for another binder\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800670 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400671 return;
Chuck Levera5090502007-03-29 16:48:04 -0400672 }
673
Chuck Levera5090502007-03-29 16:48:04 -0400674 /* Someone else may have bound if we slept */
675 if (xprt_bound(xprt)) {
676 status = 0;
Chuck Lever45160d62007-07-01 12:13:17 -0400677 dprintk("RPC: %5u %s: already bound\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800678 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400679 goto bailout_nofree;
680 }
681
Chuck Leverba809132009-08-09 15:09:35 -0400682 /* Parent transport's destination address */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500683 salen = rpc_peeraddr(clnt, sap, sizeof(addr));
Chuck Leverd5b64432007-08-06 11:57:18 -0400684
685 /* Don't ever use rpcbind v2 for AF_INET6 requests */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500686 switch (sap->sa_family) {
Chuck Leverd5b64432007-08-06 11:57:18 -0400687 case AF_INET:
Trond Myklebust803a9062008-07-01 15:20:55 -0400688 proc = rpcb_next_version[xprt->bind_index].rpc_proc;
689 bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400690 break;
691 case AF_INET6:
Trond Myklebust803a9062008-07-01 15:20:55 -0400692 proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
693 bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400694 break;
695 default:
696 status = -EAFNOSUPPORT;
697 dprintk("RPC: %5u %s: bad address family\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800698 task->tk_pid, __func__);
Chuck Leverd5b64432007-08-06 11:57:18 -0400699 goto bailout_nofree;
700 }
Trond Myklebust803a9062008-07-01 15:20:55 -0400701 if (proc == NULL) {
Chuck Levera5090502007-03-29 16:48:04 -0400702 xprt->bind_index = 0;
Chuck Lever906462a2007-09-11 18:00:47 -0400703 status = -EPFNOSUPPORT;
Chuck Lever45160d62007-07-01 12:13:17 -0400704 dprintk("RPC: %5u %s: no more getport versions available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800705 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400706 goto bailout_nofree;
707 }
Chuck Levera5090502007-03-29 16:48:04 -0400708
Chuck Lever45160d62007-07-01 12:13:17 -0400709 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800710 task->tk_pid, __func__, bind_version);
Chuck Levera5090502007-03-29 16:48:04 -0400711
Stanislav Kinsburskyc2550e02012-01-13 12:52:35 +0400712 rpcb_clnt = rpcb_create(xprt->xprt_net, clnt->cl_server, sap, salen,
713 xprt->prot, bind_version);
Chuck Lever143b6c42007-08-16 16:03:31 -0400714 if (IS_ERR(rpcb_clnt)) {
715 status = PTR_ERR(rpcb_clnt);
716 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800717 task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
Chuck Lever143b6c42007-08-16 16:03:31 -0400718 goto bailout_nofree;
719 }
720
Chuck Levera5090502007-03-29 16:48:04 -0400721 map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
722 if (!map) {
723 status = -ENOMEM;
Chuck Lever45160d62007-07-01 12:13:17 -0400724 dprintk("RPC: %5u %s: no memory available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800725 task->tk_pid, __func__);
Trond Myklebust96165e22008-10-03 16:48:40 -0400726 goto bailout_release_client;
Chuck Levera5090502007-03-29 16:48:04 -0400727 }
728 map->r_prog = clnt->cl_prog;
729 map->r_vers = clnt->cl_vers;
730 map->r_prot = xprt->prot;
731 map->r_port = 0;
732 map->r_xprt = xprt_get(xprt);
Trond Myklebust381ba742008-07-07 12:18:53 -0400733 map->r_status = -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400734
Chuck Leverba809132009-08-09 15:09:35 -0400735 switch (bind_version) {
736 case RPCBVERS_4:
737 case RPCBVERS_3:
738 map->r_netid = rpc_peeraddr2str(clnt, RPC_DISPLAY_NETID);
Trond Myklebustd77385f2011-10-17 16:08:10 -0700739 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_ATOMIC);
Chuck Leverba809132009-08-09 15:09:35 -0400740 map->r_owner = "";
741 break;
742 case RPCBVERS_2:
743 map->r_addr = NULL;
744 break;
745 default:
746 BUG();
747 }
748
Trond Myklebust803a9062008-07-01 15:20:55 -0400749 child = rpcb_call_async(rpcb_clnt, map, proc);
Trond Myklebust4c402b42007-06-14 16:40:32 -0400750 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400751 if (IS_ERR(child)) {
Trond Myklebust0d3a34b2008-07-07 12:18:52 -0400752 /* rpcb_map_release() has freed the arguments */
Chuck Lever45160d62007-07-01 12:13:17 -0400753 dprintk("RPC: %5u %s: rpc_run_task failed\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800754 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400755 return;
Chuck Levera5090502007-03-29 16:48:04 -0400756 }
Chuck Levera5090502007-03-29 16:48:04 -0400757
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400758 xprt->stat.bind_count++;
759 rpc_put_task(child);
Chuck Levera5090502007-03-29 16:48:04 -0400760 return;
761
Trond Myklebust96165e22008-10-03 16:48:40 -0400762bailout_release_client:
763 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400764bailout_nofree:
765 rpcb_wake_rpcbind_waiters(xprt, status);
Chuck Levera5090502007-03-29 16:48:04 -0400766 task->tk_status = status;
767}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400768EXPORT_SYMBOL_GPL(rpcb_getport_async);
Chuck Levera5090502007-03-29 16:48:04 -0400769
770/*
771 * Rpcbind child task calls this callback via tk_exit.
772 */
773static void rpcb_getport_done(struct rpc_task *child, void *data)
774{
775 struct rpcbind_args *map = data;
776 struct rpc_xprt *xprt = map->r_xprt;
777 int status = child->tk_status;
778
Chuck Lever4784cb52007-09-11 18:00:36 -0400779 /* Garbage reply: retry with a lesser rpcbind version */
780 if (status == -EIO)
781 status = -EPROTONOSUPPORT;
782
Chuck Levera5090502007-03-29 16:48:04 -0400783 /* rpcbind server doesn't support this rpcbind protocol version */
784 if (status == -EPROTONOSUPPORT)
785 xprt->bind_index++;
786
787 if (status < 0) {
788 /* rpcbind server not available on remote host? */
789 xprt->ops->set_port(xprt, 0);
790 } else if (map->r_port == 0) {
791 /* Requested RPC service wasn't registered on remote host */
792 xprt->ops->set_port(xprt, 0);
793 status = -EACCES;
794 } else {
795 /* Succeeded */
796 xprt->ops->set_port(xprt, map->r_port);
797 xprt_set_bound(xprt);
798 status = 0;
799 }
800
801 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
802 child->tk_pid, status, map->r_port);
803
Trond Myklebust381ba742008-07-07 12:18:53 -0400804 map->r_status = status;
Chuck Levera5090502007-03-29 16:48:04 -0400805}
806
Chuck Lever166b88d2008-07-14 16:03:26 -0400807/*
808 * XDR functions for rpcbind
809 */
810
Chuck Lever9f06c712010-12-14 14:59:18 +0000811static void rpcb_enc_mapping(struct rpc_rqst *req, struct xdr_stream *xdr,
812 const struct rpcbind_args *rpcb)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400813{
814 struct rpc_task *task = req->rq_task;
Chuck Lever9f06c712010-12-14 14:59:18 +0000815 __be32 *p;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400816
817 dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
818 task->tk_pid, task->tk_msg.rpc_proc->p_name,
819 rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
820
Chuck Lever9f06c712010-12-14 14:59:18 +0000821 p = xdr_reserve_space(xdr, RPCB_mappingargs_sz << 2);
Chuck Lever4129ccf2010-12-14 14:58:59 +0000822 *p++ = cpu_to_be32(rpcb->r_prog);
823 *p++ = cpu_to_be32(rpcb->r_vers);
824 *p++ = cpu_to_be32(rpcb->r_prot);
825 *p = cpu_to_be32(rpcb->r_port);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400826}
827
Chuck Leverbf269552010-12-14 14:59:29 +0000828static int rpcb_dec_getport(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400829 struct rpcbind_args *rpcb)
830{
831 struct rpc_task *task = req->rq_task;
Chuck Leverc0c077d2009-08-09 15:09:43 -0400832 unsigned long port;
Chuck Leverbf269552010-12-14 14:59:29 +0000833 __be32 *p;
Chuck Leverc0c077d2009-08-09 15:09:43 -0400834
835 rpcb->r_port = 0;
836
Chuck Leverbf269552010-12-14 14:59:29 +0000837 p = xdr_inline_decode(xdr, 4);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400838 if (unlikely(p == NULL))
839 return -EIO;
840
Chuck Lever4129ccf2010-12-14 14:58:59 +0000841 port = be32_to_cpup(p);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400842 dprintk("RPC: %5u PMAP_%s result: %lu\n", task->tk_pid,
843 task->tk_msg.rpc_proc->p_name, port);
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700844 if (unlikely(port > USHRT_MAX))
Chuck Leverc0c077d2009-08-09 15:09:43 -0400845 return -EIO;
846
847 rpcb->r_port = port;
848 return 0;
849}
850
Chuck Leverbf269552010-12-14 14:59:29 +0000851static int rpcb_dec_set(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400852 unsigned int *boolp)
853{
854 struct rpc_task *task = req->rq_task;
Chuck Leverbf269552010-12-14 14:59:29 +0000855 __be32 *p;
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400856
Chuck Leverbf269552010-12-14 14:59:29 +0000857 p = xdr_inline_decode(xdr, 4);
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400858 if (unlikely(p == NULL))
859 return -EIO;
860
861 *boolp = 0;
Chuck Leverbf269552010-12-14 14:59:29 +0000862 if (*p != xdr_zero)
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400863 *boolp = 1;
864
865 dprintk("RPC: %5u RPCB_%s call %s\n",
866 task->tk_pid, task->tk_msg.rpc_proc->p_name,
867 (*boolp ? "succeeded" : "failed"));
868 return 0;
869}
870
Chuck Lever4129ccf2010-12-14 14:58:59 +0000871static void encode_rpcb_string(struct xdr_stream *xdr, const char *string,
872 const u32 maxstrlen)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400873{
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400874 __be32 *p;
Chuck Lever4129ccf2010-12-14 14:58:59 +0000875 u32 len;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400876
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400877 len = strlen(string);
Chuck Lever4129ccf2010-12-14 14:58:59 +0000878 BUG_ON(len > maxstrlen);
879 p = xdr_reserve_space(xdr, 4 + len);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400880 xdr_encode_opaque(p, string, len);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400881}
882
Chuck Lever9f06c712010-12-14 14:59:18 +0000883static void rpcb_enc_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
884 const struct rpcbind_args *rpcb)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400885{
886 struct rpc_task *task = req->rq_task;
Chuck Lever9f06c712010-12-14 14:59:18 +0000887 __be32 *p;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400888
889 dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
890 task->tk_pid, task->tk_msg.rpc_proc->p_name,
891 rpcb->r_prog, rpcb->r_vers,
892 rpcb->r_netid, rpcb->r_addr);
893
Chuck Lever9f06c712010-12-14 14:59:18 +0000894 p = xdr_reserve_space(xdr, (RPCB_program_sz + RPCB_version_sz) << 2);
Chuck Lever4129ccf2010-12-14 14:58:59 +0000895 *p++ = cpu_to_be32(rpcb->r_prog);
896 *p = cpu_to_be32(rpcb->r_vers);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400897
Chuck Lever9f06c712010-12-14 14:59:18 +0000898 encode_rpcb_string(xdr, rpcb->r_netid, RPCBIND_MAXNETIDLEN);
899 encode_rpcb_string(xdr, rpcb->r_addr, RPCBIND_MAXUADDRLEN);
900 encode_rpcb_string(xdr, rpcb->r_owner, RPCB_MAXOWNERLEN);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400901}
902
Chuck Leverbf269552010-12-14 14:59:29 +0000903static int rpcb_dec_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400904 struct rpcbind_args *rpcb)
905{
906 struct sockaddr_storage address;
907 struct sockaddr *sap = (struct sockaddr *)&address;
908 struct rpc_task *task = req->rq_task;
Chuck Leverbf269552010-12-14 14:59:29 +0000909 __be32 *p;
Chuck Leverc0c077d2009-08-09 15:09:43 -0400910 u32 len;
911
912 rpcb->r_port = 0;
913
Chuck Leverbf269552010-12-14 14:59:29 +0000914 p = xdr_inline_decode(xdr, 4);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400915 if (unlikely(p == NULL))
916 goto out_fail;
Chuck Lever4129ccf2010-12-14 14:58:59 +0000917 len = be32_to_cpup(p);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400918
919 /*
920 * If the returned universal address is a null string,
921 * the requested RPC service was not registered.
922 */
923 if (len == 0) {
924 dprintk("RPC: %5u RPCB reply: program not registered\n",
925 task->tk_pid);
926 return 0;
927 }
928
929 if (unlikely(len > RPCBIND_MAXUADDRLEN))
930 goto out_fail;
931
Chuck Leverbf269552010-12-14 14:59:29 +0000932 p = xdr_inline_decode(xdr, len);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400933 if (unlikely(p == NULL))
934 goto out_fail;
935 dprintk("RPC: %5u RPCB_%s reply: %s\n", task->tk_pid,
936 task->tk_msg.rpc_proc->p_name, (char *)p);
937
938 if (rpc_uaddr2sockaddr((char *)p, len, sap, sizeof(address)) == 0)
939 goto out_fail;
940 rpcb->r_port = rpc_get_port(sap);
941
942 return 0;
943
944out_fail:
945 dprintk("RPC: %5u malformed RPCB_%s reply\n",
946 task->tk_pid, task->tk_msg.rpc_proc->p_name);
947 return -EIO;
948}
949
Chuck Levera5090502007-03-29 16:48:04 -0400950/*
951 * Not all rpcbind procedures described in RFC 1833 are implemented
952 * since the Linux kernel RPC code requires only these.
953 */
Chuck Leverf8b761e2009-08-09 15:09:44 -0400954
Chuck Levera5090502007-03-29 16:48:04 -0400955static struct rpc_procinfo rpcb_procedures2[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -0400956 [RPCBPROC_SET] = {
957 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +0000958 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +0000959 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400960 .p_arglen = RPCB_mappingargs_sz,
961 .p_replen = RPCB_setres_sz,
962 .p_statidx = RPCBPROC_SET,
963 .p_timer = 0,
964 .p_name = "SET",
965 },
966 [RPCBPROC_UNSET] = {
967 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +0000968 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +0000969 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400970 .p_arglen = RPCB_mappingargs_sz,
971 .p_replen = RPCB_setres_sz,
972 .p_statidx = RPCBPROC_UNSET,
973 .p_timer = 0,
974 .p_name = "UNSET",
975 },
976 [RPCBPROC_GETPORT] = {
977 .p_proc = RPCBPROC_GETPORT,
Chuck Lever9f06c712010-12-14 14:59:18 +0000978 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +0000979 .p_decode = (kxdrdproc_t)rpcb_dec_getport,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400980 .p_arglen = RPCB_mappingargs_sz,
981 .p_replen = RPCB_getportres_sz,
982 .p_statidx = RPCBPROC_GETPORT,
983 .p_timer = 0,
984 .p_name = "GETPORT",
985 },
Chuck Levera5090502007-03-29 16:48:04 -0400986};
987
988static struct rpc_procinfo rpcb_procedures3[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -0400989 [RPCBPROC_SET] = {
990 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +0000991 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +0000992 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400993 .p_arglen = RPCB_getaddrargs_sz,
994 .p_replen = RPCB_setres_sz,
995 .p_statidx = RPCBPROC_SET,
996 .p_timer = 0,
997 .p_name = "SET",
998 },
999 [RPCBPROC_UNSET] = {
1000 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001001 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001002 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001003 .p_arglen = RPCB_getaddrargs_sz,
1004 .p_replen = RPCB_setres_sz,
1005 .p_statidx = RPCBPROC_UNSET,
1006 .p_timer = 0,
1007 .p_name = "UNSET",
1008 },
1009 [RPCBPROC_GETADDR] = {
1010 .p_proc = RPCBPROC_GETADDR,
Chuck Lever9f06c712010-12-14 14:59:18 +00001011 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001012 .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001013 .p_arglen = RPCB_getaddrargs_sz,
1014 .p_replen = RPCB_getaddrres_sz,
1015 .p_statidx = RPCBPROC_GETADDR,
1016 .p_timer = 0,
1017 .p_name = "GETADDR",
1018 },
Chuck Levera5090502007-03-29 16:48:04 -04001019};
1020
1021static struct rpc_procinfo rpcb_procedures4[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -04001022 [RPCBPROC_SET] = {
1023 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001024 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001025 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001026 .p_arglen = RPCB_getaddrargs_sz,
1027 .p_replen = RPCB_setres_sz,
1028 .p_statidx = RPCBPROC_SET,
1029 .p_timer = 0,
1030 .p_name = "SET",
1031 },
1032 [RPCBPROC_UNSET] = {
1033 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001034 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001035 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001036 .p_arglen = RPCB_getaddrargs_sz,
1037 .p_replen = RPCB_setres_sz,
1038 .p_statidx = RPCBPROC_UNSET,
1039 .p_timer = 0,
1040 .p_name = "UNSET",
1041 },
1042 [RPCBPROC_GETADDR] = {
1043 .p_proc = RPCBPROC_GETADDR,
Chuck Lever9f06c712010-12-14 14:59:18 +00001044 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001045 .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001046 .p_arglen = RPCB_getaddrargs_sz,
1047 .p_replen = RPCB_getaddrres_sz,
1048 .p_statidx = RPCBPROC_GETADDR,
1049 .p_timer = 0,
1050 .p_name = "GETADDR",
1051 },
Chuck Levera5090502007-03-29 16:48:04 -04001052};
1053
1054static struct rpcb_info rpcb_next_version[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001055 {
1056 .rpc_vers = RPCBVERS_2,
1057 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
1058 },
1059 {
1060 .rpc_proc = NULL,
1061 },
Chuck Levera5090502007-03-29 16:48:04 -04001062};
1063
Chuck Leverd5b64432007-08-06 11:57:18 -04001064static struct rpcb_info rpcb_next_version6[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001065 {
1066 .rpc_vers = RPCBVERS_4,
Chuck Lever88424132008-06-25 17:24:47 -04001067 .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
Chuck Leverfc200e72008-06-25 17:24:31 -04001068 },
1069 {
1070 .rpc_vers = RPCBVERS_3,
1071 .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
1072 },
Chuck Leverfc200e72008-06-25 17:24:31 -04001073 {
1074 .rpc_proc = NULL,
1075 },
Chuck Leverd5b64432007-08-06 11:57:18 -04001076};
1077
Chuck Levera5090502007-03-29 16:48:04 -04001078static struct rpc_version rpcb_version2 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001079 .number = RPCBVERS_2,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001080 .nrprocs = ARRAY_SIZE(rpcb_procedures2),
Chuck Levera5090502007-03-29 16:48:04 -04001081 .procs = rpcb_procedures2
1082};
1083
1084static struct rpc_version rpcb_version3 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001085 .number = RPCBVERS_3,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001086 .nrprocs = ARRAY_SIZE(rpcb_procedures3),
Chuck Levera5090502007-03-29 16:48:04 -04001087 .procs = rpcb_procedures3
1088};
1089
1090static struct rpc_version rpcb_version4 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001091 .number = RPCBVERS_4,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001092 .nrprocs = ARRAY_SIZE(rpcb_procedures4),
Chuck Levera5090502007-03-29 16:48:04 -04001093 .procs = rpcb_procedures4
1094};
1095
1096static struct rpc_version *rpcb_version[] = {
1097 NULL,
1098 NULL,
1099 &rpcb_version2,
1100 &rpcb_version3,
1101 &rpcb_version4
1102};
1103
1104static struct rpc_stat rpcb_stats;
1105
Adrian Bunk7f4adef2007-06-13 01:03:13 +02001106static struct rpc_program rpcb_program = {
Chuck Levera5090502007-03-29 16:48:04 -04001107 .name = "rpcbind",
1108 .number = RPCBIND_PROGRAM,
1109 .nrvers = ARRAY_SIZE(rpcb_version),
1110 .version = rpcb_version,
1111 .stats = &rpcb_stats,
1112};