blob: b0f7232271579a3c4ad5ec395e8fe8f265347b90 [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>
Chuck Lever9d548b92008-09-15 16:27:30 -050026#include <net/ipv6.h>
Chuck Levera5090502007-03-29 16:48:04 -040027
28#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050029#include <linux/sunrpc/addr.h>
Chuck Levera5090502007-03-29 16:48:04 -040030#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);
Trond Myklebusta613fa12012-01-20 13:53:56 -0500115static const 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
Trond Myklebusta613fa12012-01-20 13:53:56 -0500140static const struct rpcb_info rpcb_next_version[];
141static const 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
Stanislav Kinsburskyf7a30c12012-01-13 12:52:51 +0400178void rpcb_put_local(struct net *net)
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300179{
Stanislav Kinsburskyf7a30c12012-01-13 12:52:51 +0400180 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400181 struct rpc_clnt *clnt = sn->rpcb_local_clnt;
182 struct rpc_clnt *clnt4 = sn->rpcb_local_clnt4;
Stanislav Kinsbursky9793f7c2012-05-02 16:08:38 +0400183 int shutdown = 0;
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300184
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400185 spin_lock(&sn->rpcb_clnt_lock);
Stanislav Kinsbursky9793f7c2012-05-02 16:08:38 +0400186 if (sn->rpcb_users) {
187 if (--sn->rpcb_users == 0) {
188 sn->rpcb_local_clnt = NULL;
189 sn->rpcb_local_clnt4 = NULL;
190 }
191 shutdown = !sn->rpcb_users;
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300192 }
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400193 spin_unlock(&sn->rpcb_clnt_lock);
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300194
195 if (shutdown) {
196 /*
197 * cleanup_rpcb_clnt - remove xprtsock's sysctls, unregister
198 */
199 if (clnt4)
200 rpc_shutdown_client(clnt4);
201 if (clnt)
202 rpc_shutdown_client(clnt);
203 }
204}
205
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400206static void rpcb_set_local(struct net *net, struct rpc_clnt *clnt,
207 struct rpc_clnt *clnt4)
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300208{
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400209 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400210
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300211 /* Protected by rpcb_create_local_mutex */
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400212 sn->rpcb_local_clnt = clnt;
213 sn->rpcb_local_clnt4 = clnt4;
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300214 smp_wmb();
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400215 sn->rpcb_users = 1;
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300216 dprintk("RPC: created new rpcb local clients (rpcb_local_clnt: "
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400217 "%p, rpcb_local_clnt4: %p) for net %p%s\n",
218 sn->rpcb_local_clnt, sn->rpcb_local_clnt4,
219 net, (net == &init_net) ? " (init_net)" : "");
Stanislav Kinsbursky914edb12011-10-25 14:16:36 +0300220}
221
Chuck Lever7402ab192011-05-09 15:22:55 -0400222/*
223 * Returns zero on success, otherwise a negative errno value
224 * is returned.
225 */
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400226static int rpcb_create_local_unix(struct net *net)
Chuck Lever7402ab192011-05-09 15:22:55 -0400227{
228 static const struct sockaddr_un rpcb_localaddr_rpcbind = {
229 .sun_family = AF_LOCAL,
230 .sun_path = RPCBIND_SOCK_PATHNAME,
231 };
232 struct rpc_create_args args = {
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400233 .net = net,
Chuck Lever7402ab192011-05-09 15:22:55 -0400234 .protocol = XPRT_TRANSPORT_LOCAL,
235 .address = (struct sockaddr *)&rpcb_localaddr_rpcbind,
236 .addrsize = sizeof(rpcb_localaddr_rpcbind),
237 .servername = "localhost",
238 .program = &rpcb_program,
239 .version = RPCBVERS_2,
240 .authflavor = RPC_AUTH_NULL,
Trond Myklebust00326ed2013-08-05 14:10:43 -0400241 /*
242 * We turn off the idle timeout to prevent the kernel
243 * from automatically disconnecting the socket.
244 * Otherwise, we'd have to cache the mount namespace
245 * of the caller and somehow pass that to the socket
246 * reconnect code.
247 */
248 .flags = RPC_CLNT_CREATE_NO_IDLE_TIMEOUT,
Chuck Lever7402ab192011-05-09 15:22:55 -0400249 };
250 struct rpc_clnt *clnt, *clnt4;
251 int result = 0;
Chuck Levercc5598b2008-07-14 16:03:27 -0400252
Chuck Lever7402ab192011-05-09 15:22:55 -0400253 /*
254 * Because we requested an RPC PING at transport creation time,
255 * this works only if the user space portmapper is rpcbind, and
256 * it's listening on AF_LOCAL on the named socket.
257 */
258 clnt = rpc_create(&args);
259 if (IS_ERR(clnt)) {
260 dprintk("RPC: failed to create AF_LOCAL rpcbind "
261 "client (errno %ld).\n", PTR_ERR(clnt));
Stanislav Kinsburskycaea33d2012-07-20 15:57:48 +0400262 result = PTR_ERR(clnt);
Chuck Lever7402ab192011-05-09 15:22:55 -0400263 goto out;
264 }
265
266 clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
267 if (IS_ERR(clnt4)) {
268 dprintk("RPC: failed to bind second program to "
269 "rpcbind v4 client (errno %ld).\n",
270 PTR_ERR(clnt4));
271 clnt4 = NULL;
272 }
273
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400274 rpcb_set_local(net, clnt, clnt4);
Chuck Lever7402ab192011-05-09 15:22:55 -0400275
276out:
277 return result;
278}
Chuck Leverc5266112009-12-03 15:58:56 -0500279
280/*
281 * Returns zero on success, otherwise a negative errno value
282 * is returned.
283 */
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400284static int rpcb_create_local_net(struct net *net)
Chuck Levercc5598b2008-07-14 16:03:27 -0400285{
Chuck Lever7402ab192011-05-09 15:22:55 -0400286 static const struct sockaddr_in rpcb_inaddr_loopback = {
287 .sin_family = AF_INET,
288 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
289 .sin_port = htons(RPCBIND_PORT),
290 };
Chuck Levercc5598b2008-07-14 16:03:27 -0400291 struct rpc_create_args args = {
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400292 .net = net,
Chuck Lever2a76b3b2009-12-03 15:58:56 -0500293 .protocol = XPRT_TRANSPORT_TCP,
Chuck Lever5a462112009-12-03 15:58:56 -0500294 .address = (struct sockaddr *)&rpcb_inaddr_loopback,
295 .addrsize = sizeof(rpcb_inaddr_loopback),
Chuck Levercc5598b2008-07-14 16:03:27 -0400296 .servername = "localhost",
297 .program = &rpcb_program,
Chuck Leverc5266112009-12-03 15:58:56 -0500298 .version = RPCBVERS_2,
Chuck Levercc5598b2008-07-14 16:03:27 -0400299 .authflavor = RPC_AUTH_UNIX,
300 .flags = RPC_CLNT_CREATE_NOPING,
301 };
Chuck Leverc5266112009-12-03 15:58:56 -0500302 struct rpc_clnt *clnt, *clnt4;
303 int result = 0;
Chuck Levercc5598b2008-07-14 16:03:27 -0400304
Chuck Leverc5266112009-12-03 15:58:56 -0500305 clnt = rpc_create(&args);
306 if (IS_ERR(clnt)) {
307 dprintk("RPC: failed to create local rpcbind "
308 "client (errno %ld).\n", PTR_ERR(clnt));
Stanislav Kinsburskycaea33d2012-07-20 15:57:48 +0400309 result = PTR_ERR(clnt);
Chuck Leverc5266112009-12-03 15:58:56 -0500310 goto out;
311 }
312
313 /*
314 * This results in an RPC ping. On systems running portmapper,
315 * the v4 ping will fail. Proceed anyway, but disallow rpcb
316 * v4 upcalls.
317 */
318 clnt4 = rpc_bind_new_program(clnt, &rpcb_program, RPCBVERS_4);
319 if (IS_ERR(clnt4)) {
Chuck Lever38359352010-09-21 16:55:48 -0400320 dprintk("RPC: failed to bind second program to "
321 "rpcbind v4 client (errno %ld).\n",
322 PTR_ERR(clnt4));
Chuck Leverc5266112009-12-03 15:58:56 -0500323 clnt4 = NULL;
324 }
325
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400326 rpcb_set_local(net, clnt, clnt4);
Chuck Leverc5266112009-12-03 15:58:56 -0500327
328out:
Chuck Lever7402ab192011-05-09 15:22:55 -0400329 return result;
330}
331
332/*
333 * Returns zero on success, otherwise a negative errno value
334 * is returned.
335 */
Stanislav Kinsburskyf7a30c12012-01-13 12:52:51 +0400336int rpcb_create_local(struct net *net)
Chuck Lever7402ab192011-05-09 15:22:55 -0400337{
338 static DEFINE_MUTEX(rpcb_create_local_mutex);
339 int result = 0;
340
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400341 if (rpcb_get_local(net))
Chuck Lever7402ab192011-05-09 15:22:55 -0400342 return result;
343
344 mutex_lock(&rpcb_create_local_mutex);
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400345 if (rpcb_get_local(net))
Chuck Lever7402ab192011-05-09 15:22:55 -0400346 goto out;
347
Stanislav Kinsbursky2ea75a12012-01-13 12:52:18 +0400348 if (rpcb_create_local_unix(net) != 0)
349 result = rpcb_create_local_net(net);
Chuck Lever7402ab192011-05-09 15:22:55 -0400350
351out:
Chuck Leverc5266112009-12-03 15:58:56 -0500352 mutex_unlock(&rpcb_create_local_mutex);
353 return result;
Chuck Levercc5598b2008-07-14 16:03:27 -0400354}
355
Trond Myklebust6eac7d32012-01-20 13:53:37 -0500356static struct rpc_clnt *rpcb_create(struct net *net, const char *hostname,
Stanislav Kinsburskyc2550e02012-01-13 12:52:35 +0400357 struct sockaddr *srvaddr, size_t salen,
358 int proto, u32 version)
Chuck Levera5090502007-03-29 16:48:04 -0400359{
360 struct rpc_create_args args = {
Stanislav Kinsburskyc2550e02012-01-13 12:52:35 +0400361 .net = net,
Chuck Levera5090502007-03-29 16:48:04 -0400362 .protocol = proto,
363 .address = srvaddr,
Chuck Lever9f6ad262007-12-10 14:56:31 -0500364 .addrsize = salen,
Chuck Levera5090502007-03-29 16:48:04 -0400365 .servername = hostname,
366 .program = &rpcb_program,
367 .version = version,
368 .authflavor = RPC_AUTH_UNIX,
Chuck Lever423d8b02008-07-14 16:03:28 -0400369 .flags = (RPC_CLNT_CREATE_NOPING |
370 RPC_CLNT_CREATE_NONPRIVPORT),
Chuck Levera5090502007-03-29 16:48:04 -0400371 };
372
Chuck Leverd5b64432007-08-06 11:57:18 -0400373 switch (srvaddr->sa_family) {
374 case AF_INET:
375 ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);
376 break;
377 case AF_INET6:
378 ((struct sockaddr_in6 *)srvaddr)->sin6_port = htons(RPCBIND_PORT);
379 break;
380 default:
Pavel Emelyanovc636b572010-10-06 13:45:56 +0400381 return ERR_PTR(-EAFNOSUPPORT);
Chuck Leverd5b64432007-08-06 11:57:18 -0400382 }
383
Chuck Levera5090502007-03-29 16:48:04 -0400384 return rpc_create(&args);
385}
386
Chuck Leverc5266112009-12-03 15:58:56 -0500387static int rpcb_register_call(struct rpc_clnt *clnt, struct rpc_message *msg)
Chuck Leverbabe80e2008-07-14 16:03:29 -0400388{
Chuck Lever14aeb212008-08-18 19:34:00 -0400389 int result, error = 0;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400390
Chuck Lever14aeb212008-08-18 19:34:00 -0400391 msg->rpc_resp = &result;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400392
Chuck Lever2a76b3b2009-12-03 15:58:56 -0500393 error = rpc_call_sync(clnt, msg, RPC_TASK_SOFTCONN);
Chuck Lever14aeb212008-08-18 19:34:00 -0400394 if (error < 0) {
Chuck Lever363f7242009-03-18 20:47:44 -0400395 dprintk("RPC: failed to contact local rpcbind "
Chuck Leverbabe80e2008-07-14 16:03:29 -0400396 "server (errno %d).\n", -error);
Chuck Lever14aeb212008-08-18 19:34:00 -0400397 return error;
398 }
Chuck Leverbabe80e2008-07-14 16:03:29 -0400399
Chuck Leverdb820d62008-09-25 11:57:05 -0400400 if (!result)
Chuck Lever14aeb212008-08-18 19:34:00 -0400401 return -EACCES;
Chuck Lever14aeb212008-08-18 19:34:00 -0400402 return 0;
Chuck Leverbabe80e2008-07-14 16:03:29 -0400403}
404
Chuck Levera5090502007-03-29 16:48:04 -0400405/**
406 * rpcb_register - set or unset a port registration with the local rpcbind svc
Randy Dunlapbda14602012-05-13 10:35:40 -0700407 * @net: target network namespace
Chuck Levera5090502007-03-29 16:48:04 -0400408 * @prog: RPC program number to bind
409 * @vers: RPC version number to bind
Chuck Leverc2e1b092008-07-14 16:03:30 -0400410 * @prot: transport protocol to register
Chuck Levera5090502007-03-29 16:48:04 -0400411 * @port: port value to register
Chuck Lever14aeb212008-08-18 19:34:00 -0400412 *
413 * Returns zero if the registration request was dispatched successfully
414 * and the rpcbind daemon returned success. Otherwise, returns an errno
415 * value that reflects the nature of the error (request could not be
416 * dispatched, timed out, or rpcbind returned an error).
Chuck Levera5090502007-03-29 16:48:04 -0400417 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400418 * RPC services invoke this function to advertise their contact
419 * information via the system's rpcbind daemon. RPC services
420 * invoke this function once for each [program, version, transport]
421 * tuple they wish to advertise.
Chuck Levera5090502007-03-29 16:48:04 -0400422 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400423 * Callers may also unregister RPC services that are no longer
424 * available by setting the passed-in port to zero. This removes
425 * all registered transports for [program, version] from the local
426 * rpcbind database.
427 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400428 * This function uses rpcbind protocol version 2 to contact the
429 * local rpcbind daemon.
430 *
431 * Registration works over both AF_INET and AF_INET6, and services
432 * registered via this function are advertised as available for any
433 * address. If the local rpcbind daemon is listening on AF_INET6,
434 * services registered via this function will be advertised on
435 * IN6ADDR_ANY (ie available for all AF_INET and AF_INET6
436 * addresses).
Chuck Levera5090502007-03-29 16:48:04 -0400437 */
Stanislav Kinsbursky977ac312012-01-13 12:52:43 +0400438int rpcb_register(struct net *net, u32 prog, u32 vers, int prot, unsigned short port)
Chuck Levera5090502007-03-29 16:48:04 -0400439{
Chuck Levera5090502007-03-29 16:48:04 -0400440 struct rpcbind_args map = {
441 .r_prog = prog,
442 .r_vers = vers,
443 .r_prot = prot,
444 .r_port = port,
445 };
446 struct rpc_message msg = {
Chuck Levera5090502007-03-29 16:48:04 -0400447 .rpc_argp = &map,
Chuck Levera5090502007-03-29 16:48:04 -0400448 };
Stanislav Kinsbursky977ac312012-01-13 12:52:43 +0400449 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Chuck Levera5090502007-03-29 16:48:04 -0400450
451 dprintk("RPC: %sregistering (%u, %u, %d, %u) with local "
452 "rpcbind\n", (port ? "" : "un"),
453 prog, vers, prot, port);
454
Chuck Leverbabe80e2008-07-14 16:03:29 -0400455 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_UNSET];
456 if (port)
457 msg.rpc_proc = &rpcb_procedures2[RPCBPROC_SET];
458
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400459 return rpcb_register_call(sn->rpcb_local_clnt, &msg);
Chuck Levera5090502007-03-29 16:48:04 -0400460}
461
Chuck Leverc2e1b092008-07-14 16:03:30 -0400462/*
463 * Fill in AF_INET family-specific arguments to register
464 */
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400465static int rpcb_register_inet4(struct sunrpc_net *sn,
466 const struct sockaddr *sap,
Chuck Lever1673d0d2009-03-18 20:47:21 -0400467 struct rpc_message *msg)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400468{
Chuck Lever3aba4552009-03-18 20:47:06 -0400469 const struct sockaddr_in *sin = (const struct sockaddr_in *)sap;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400470 struct rpcbind_args *map = msg->rpc_argp;
Chuck Lever3aba4552009-03-18 20:47:06 -0400471 unsigned short port = ntohs(sin->sin_port);
Chuck Leverba809132009-08-09 15:09:35 -0400472 int result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400473
Trond Myklebustd77385f2011-10-17 16:08:10 -0700474 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400475
476 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
477 "local rpcbind\n", (port ? "" : "un"),
478 map->r_prog, map->r_vers,
479 map->r_addr, map->r_netid);
480
481 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
482 if (port)
483 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
484
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400485 result = rpcb_register_call(sn->rpcb_local_clnt4, msg);
Chuck Leverba809132009-08-09 15:09:35 -0400486 kfree(map->r_addr);
487 return result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400488}
489
490/*
491 * Fill in AF_INET6 family-specific arguments to register
492 */
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400493static int rpcb_register_inet6(struct sunrpc_net *sn,
494 const struct sockaddr *sap,
Chuck Lever1673d0d2009-03-18 20:47:21 -0400495 struct rpc_message *msg)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400496{
Chuck Lever3aba4552009-03-18 20:47:06 -0400497 const struct sockaddr_in6 *sin6 = (const struct sockaddr_in6 *)sap;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400498 struct rpcbind_args *map = msg->rpc_argp;
Chuck Lever3aba4552009-03-18 20:47:06 -0400499 unsigned short port = ntohs(sin6->sin6_port);
Chuck Leverba809132009-08-09 15:09:35 -0400500 int result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400501
Trond Myklebustd77385f2011-10-17 16:08:10 -0700502 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_KERNEL);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400503
504 dprintk("RPC: %sregistering [%u, %u, %s, '%s'] with "
505 "local rpcbind\n", (port ? "" : "un"),
506 map->r_prog, map->r_vers,
507 map->r_addr, map->r_netid);
508
509 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
510 if (port)
511 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_SET];
512
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400513 result = rpcb_register_call(sn->rpcb_local_clnt4, msg);
Chuck Leverba809132009-08-09 15:09:35 -0400514 kfree(map->r_addr);
515 return result;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400516}
517
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400518static int rpcb_unregister_all_protofamilies(struct sunrpc_net *sn,
519 struct rpc_message *msg)
Chuck Lever1673d0d2009-03-18 20:47:21 -0400520{
521 struct rpcbind_args *map = msg->rpc_argp;
522
523 dprintk("RPC: unregistering [%u, %u, '%s'] with "
524 "local rpcbind\n",
525 map->r_prog, map->r_vers, map->r_netid);
526
527 map->r_addr = "";
528 msg->rpc_proc = &rpcb_procedures4[RPCBPROC_UNSET];
529
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400530 return rpcb_register_call(sn->rpcb_local_clnt4, msg);
Chuck Lever1673d0d2009-03-18 20:47:21 -0400531}
532
Chuck Leverc2e1b092008-07-14 16:03:30 -0400533/**
534 * rpcb_v4_register - set or unset a port registration with the local rpcbind
Randy Dunlapbda14602012-05-13 10:35:40 -0700535 * @net: target network namespace
Chuck Leverc2e1b092008-07-14 16:03:30 -0400536 * @program: RPC program number of service to (un)register
537 * @version: RPC version number of service to (un)register
538 * @address: address family, IP address, and port to (un)register
539 * @netid: netid of transport protocol to (un)register
Chuck Lever14aeb212008-08-18 19:34:00 -0400540 *
541 * Returns zero if the registration request was dispatched successfully
542 * and the rpcbind daemon returned success. Otherwise, returns an errno
543 * value that reflects the nature of the error (request could not be
544 * dispatched, timed out, or rpcbind returned an error).
Chuck Leverc2e1b092008-07-14 16:03:30 -0400545 *
546 * RPC services invoke this function to advertise their contact
547 * information via the system's rpcbind daemon. RPC services
548 * invoke this function once for each [program, version, address,
549 * netid] tuple they wish to advertise.
550 *
Chuck Lever1673d0d2009-03-18 20:47:21 -0400551 * Callers may also unregister RPC services that are registered at a
552 * specific address by setting the port number in @address to zero.
553 * They may unregister all registered protocol families at once for
554 * a service by passing a NULL @address argument. If @netid is ""
555 * then all netids for [program, version, address] are unregistered.
Chuck Leverc2e1b092008-07-14 16:03:30 -0400556 *
Chuck Leverc2e1b092008-07-14 16:03:30 -0400557 * This function uses rpcbind protocol version 4 to contact the
558 * local rpcbind daemon. The local rpcbind daemon must support
559 * version 4 of the rpcbind protocol in order for these functions
560 * to register a service successfully.
561 *
562 * Supported netids include "udp" and "tcp" for UDP and TCP over
563 * IPv4, and "udp6" and "tcp6" for UDP and TCP over IPv6,
564 * respectively.
565 *
566 * The contents of @address determine the address family and the
567 * port to be registered. The usual practice is to pass INADDR_ANY
568 * as the raw address, but specifying a non-zero address is also
569 * supported by this API if the caller wishes to advertise an RPC
570 * service on a specific network interface.
571 *
572 * Note that passing in INADDR_ANY does not create the same service
573 * registration as IN6ADDR_ANY. The former advertises an RPC
574 * service on any IPv4 address, but not on IPv6. The latter
575 * advertises the service on all IPv4 and IPv6 addresses.
576 */
Stanislav Kinsbursky977ac312012-01-13 12:52:43 +0400577int rpcb_v4_register(struct net *net, const u32 program, const u32 version,
Chuck Lever14aeb212008-08-18 19:34:00 -0400578 const struct sockaddr *address, const char *netid)
Chuck Leverc2e1b092008-07-14 16:03:30 -0400579{
580 struct rpcbind_args map = {
581 .r_prog = program,
582 .r_vers = version,
583 .r_netid = netid,
584 .r_owner = RPCB_OWNER_STRING,
585 };
586 struct rpc_message msg = {
587 .rpc_argp = &map,
Chuck Leverc2e1b092008-07-14 16:03:30 -0400588 };
Stanislav Kinsbursky977ac312012-01-13 12:52:43 +0400589 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Chuck Leverc5266112009-12-03 15:58:56 -0500590
Stanislav Kinsburskydff02d42012-01-13 12:52:10 +0400591 if (sn->rpcb_local_clnt4 == NULL)
Chuck Leverc5266112009-12-03 15:58:56 -0500592 return -EPROTONOSUPPORT;
Chuck Leverc2e1b092008-07-14 16:03:30 -0400593
Chuck Lever1673d0d2009-03-18 20:47:21 -0400594 if (address == NULL)
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400595 return rpcb_unregister_all_protofamilies(sn, &msg);
Chuck Lever1673d0d2009-03-18 20:47:21 -0400596
Chuck Leverc2e1b092008-07-14 16:03:30 -0400597 switch (address->sa_family) {
598 case AF_INET:
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400599 return rpcb_register_inet4(sn, address, &msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400600 case AF_INET6:
Stanislav Kinsbursky1a114a62012-01-13 12:52:26 +0400601 return rpcb_register_inet6(sn, address, &msg);
Chuck Leverc2e1b092008-07-14 16:03:30 -0400602 }
603
604 return -EAFNOSUPPORT;
605}
606
Trond Myklebust803a9062008-07-01 15:20:55 -0400607static 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 -0400608{
609 struct rpc_message msg = {
Trond Myklebust803a9062008-07-01 15:20:55 -0400610 .rpc_proc = proc,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400611 .rpc_argp = map,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400612 .rpc_resp = map,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400613 };
614 struct rpc_task_setup task_setup_data = {
615 .rpc_client = rpcb_clnt,
616 .rpc_message = &msg,
617 .callback_ops = &rpcb_getport_ops,
618 .callback_data = map,
Chuck Lever012da152009-12-03 15:58:56 -0500619 .flags = RPC_TASK_ASYNC | RPC_TASK_SOFTCONN,
Trond Myklebust5138fde2007-07-14 15:40:01 -0400620 };
621
622 return rpc_run_task(&task_setup_data);
623}
624
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400625/*
626 * In the case where rpc clients have been cloned, we want to make
627 * sure that we use the program number/version etc of the actual
628 * owner of the xprt. To do so, we walk back up the tree of parents
629 * to find whoever created the transport and/or whoever has the
630 * autobind flag set.
631 */
632static struct rpc_clnt *rpcb_find_transport_owner(struct rpc_clnt *clnt)
633{
634 struct rpc_clnt *parent = clnt->cl_parent;
Trond Myklebust2446ab62012-03-01 17:00:56 -0500635 struct rpc_xprt *xprt = rcu_dereference(clnt->cl_xprt);
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400636
637 while (parent != clnt) {
Trond Myklebust2446ab62012-03-01 17:00:56 -0500638 if (rcu_dereference(parent->cl_xprt) != xprt)
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400639 break;
640 if (clnt->cl_autobind)
641 break;
642 clnt = parent;
643 parent = parent->cl_parent;
644 }
645 return clnt;
646}
647
Chuck Levera5090502007-03-29 16:48:04 -0400648/**
Chuck Lever45160d62007-07-01 12:13:17 -0400649 * rpcb_getport_async - obtain the port for a given RPC service on a given host
Chuck Levera5090502007-03-29 16:48:04 -0400650 * @task: task that is waiting for portmapper request
651 *
652 * This one can be called for an ongoing RPC request, and can be used in
653 * an async (rpciod) context.
654 */
Chuck Lever45160d62007-07-01 12:13:17 -0400655void rpcb_getport_async(struct rpc_task *task)
Chuck Levera5090502007-03-29 16:48:04 -0400656{
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400657 struct rpc_clnt *clnt;
Trond Myklebust803a9062008-07-01 15:20:55 -0400658 struct rpc_procinfo *proc;
Chuck Lever0a48f5d2007-12-10 14:56:38 -0500659 u32 bind_version;
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400660 struct rpc_xprt *xprt;
Chuck Levera5090502007-03-29 16:48:04 -0400661 struct rpc_clnt *rpcb_clnt;
Ben Greearec0dd262011-07-12 10:27:55 -0700662 struct rpcbind_args *map;
Chuck Levera5090502007-03-29 16:48:04 -0400663 struct rpc_task *child;
Chuck Lever9f6ad262007-12-10 14:56:31 -0500664 struct sockaddr_storage addr;
665 struct sockaddr *sap = (struct sockaddr *)&addr;
666 size_t salen;
Chuck Levera5090502007-03-29 16:48:04 -0400667 int status;
668
Trond Myklebust2446ab62012-03-01 17:00:56 -0500669 rcu_read_lock();
670 do {
671 clnt = rpcb_find_transport_owner(task->tk_client);
672 xprt = xprt_get(rcu_dereference(clnt->cl_xprt));
673 } while (xprt == NULL);
674 rcu_read_unlock();
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400675
Chuck Lever45160d62007-07-01 12:13:17 -0400676 dprintk("RPC: %5u %s(%s, %u, %u, %d)\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800677 task->tk_pid, __func__,
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500678 xprt->servername, clnt->cl_prog, clnt->cl_vers, xprt->prot);
Chuck Levera5090502007-03-29 16:48:04 -0400679
Trond Myklebust381ba742008-07-07 12:18:53 -0400680 /* Put self on the wait queue to ensure we get notified if
681 * some other task is already attempting to bind the port */
682 rpc_sleep_on(&xprt->binding, task, NULL);
683
Chuck Levera5090502007-03-29 16:48:04 -0400684 if (xprt_test_and_set_binding(xprt)) {
Chuck Lever45160d62007-07-01 12:13:17 -0400685 dprintk("RPC: %5u %s: waiting for another binder\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800686 task->tk_pid, __func__);
Trond Myklebust2446ab62012-03-01 17:00:56 -0500687 xprt_put(xprt);
Trond Myklebust381ba742008-07-07 12:18:53 -0400688 return;
Chuck Levera5090502007-03-29 16:48:04 -0400689 }
690
Chuck Levera5090502007-03-29 16:48:04 -0400691 /* Someone else may have bound if we slept */
692 if (xprt_bound(xprt)) {
693 status = 0;
Chuck Lever45160d62007-07-01 12:13:17 -0400694 dprintk("RPC: %5u %s: already bound\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800695 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400696 goto bailout_nofree;
697 }
698
Chuck Leverba809132009-08-09 15:09:35 -0400699 /* Parent transport's destination address */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500700 salen = rpc_peeraddr(clnt, sap, sizeof(addr));
Chuck Leverd5b64432007-08-06 11:57:18 -0400701
702 /* Don't ever use rpcbind v2 for AF_INET6 requests */
Chuck Lever9f6ad262007-12-10 14:56:31 -0500703 switch (sap->sa_family) {
Chuck Leverd5b64432007-08-06 11:57:18 -0400704 case AF_INET:
Trond Myklebust803a9062008-07-01 15:20:55 -0400705 proc = rpcb_next_version[xprt->bind_index].rpc_proc;
706 bind_version = rpcb_next_version[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400707 break;
708 case AF_INET6:
Trond Myklebust803a9062008-07-01 15:20:55 -0400709 proc = rpcb_next_version6[xprt->bind_index].rpc_proc;
710 bind_version = rpcb_next_version6[xprt->bind_index].rpc_vers;
Chuck Leverd5b64432007-08-06 11:57:18 -0400711 break;
712 default:
713 status = -EAFNOSUPPORT;
714 dprintk("RPC: %5u %s: bad address family\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800715 task->tk_pid, __func__);
Chuck Leverd5b64432007-08-06 11:57:18 -0400716 goto bailout_nofree;
717 }
Trond Myklebust803a9062008-07-01 15:20:55 -0400718 if (proc == NULL) {
Chuck Levera5090502007-03-29 16:48:04 -0400719 xprt->bind_index = 0;
Chuck Lever906462a2007-09-11 18:00:47 -0400720 status = -EPFNOSUPPORT;
Chuck Lever45160d62007-07-01 12:13:17 -0400721 dprintk("RPC: %5u %s: no more getport versions available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800722 task->tk_pid, __func__);
Chuck Levera5090502007-03-29 16:48:04 -0400723 goto bailout_nofree;
724 }
Chuck Levera5090502007-03-29 16:48:04 -0400725
Chuck Lever45160d62007-07-01 12:13:17 -0400726 dprintk("RPC: %5u %s: trying rpcbind version %u\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800727 task->tk_pid, __func__, bind_version);
Chuck Levera5090502007-03-29 16:48:04 -0400728
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500729 rpcb_clnt = rpcb_create(xprt->xprt_net, xprt->servername, sap, salen,
Stanislav Kinsburskyc2550e02012-01-13 12:52:35 +0400730 xprt->prot, bind_version);
Chuck Lever143b6c42007-08-16 16:03:31 -0400731 if (IS_ERR(rpcb_clnt)) {
732 status = PTR_ERR(rpcb_clnt);
733 dprintk("RPC: %5u %s: rpcb_create failed, error %ld\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800734 task->tk_pid, __func__, PTR_ERR(rpcb_clnt));
Chuck Lever143b6c42007-08-16 16:03:31 -0400735 goto bailout_nofree;
736 }
737
Chuck Levera5090502007-03-29 16:48:04 -0400738 map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC);
739 if (!map) {
740 status = -ENOMEM;
Chuck Lever45160d62007-07-01 12:13:17 -0400741 dprintk("RPC: %5u %s: no memory available\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800742 task->tk_pid, __func__);
Trond Myklebust96165e22008-10-03 16:48:40 -0400743 goto bailout_release_client;
Chuck Levera5090502007-03-29 16:48:04 -0400744 }
745 map->r_prog = clnt->cl_prog;
746 map->r_vers = clnt->cl_vers;
747 map->r_prot = xprt->prot;
748 map->r_port = 0;
Bryan Schumaker864cf9b2012-03-27 13:46:32 -0400749 map->r_xprt = xprt;
Trond Myklebust381ba742008-07-07 12:18:53 -0400750 map->r_status = -EIO;
Chuck Levera5090502007-03-29 16:48:04 -0400751
Chuck Leverba809132009-08-09 15:09:35 -0400752 switch (bind_version) {
753 case RPCBVERS_4:
754 case RPCBVERS_3:
Trond Myklebust2446ab62012-03-01 17:00:56 -0500755 map->r_netid = xprt->address_strings[RPC_DISPLAY_NETID];
Trond Myklebustd77385f2011-10-17 16:08:10 -0700756 map->r_addr = rpc_sockaddr2uaddr(sap, GFP_ATOMIC);
Chuck Leverba809132009-08-09 15:09:35 -0400757 map->r_owner = "";
758 break;
759 case RPCBVERS_2:
760 map->r_addr = NULL;
761 break;
762 default:
763 BUG();
764 }
765
Trond Myklebust803a9062008-07-01 15:20:55 -0400766 child = rpcb_call_async(rpcb_clnt, map, proc);
Trond Myklebust4c402b42007-06-14 16:40:32 -0400767 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400768 if (IS_ERR(child)) {
Trond Myklebust0d3a34b2008-07-07 12:18:52 -0400769 /* rpcb_map_release() has freed the arguments */
Chuck Lever45160d62007-07-01 12:13:17 -0400770 dprintk("RPC: %5u %s: rpc_run_task failed\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800771 task->tk_pid, __func__);
Trond Myklebust381ba742008-07-07 12:18:53 -0400772 return;
Chuck Levera5090502007-03-29 16:48:04 -0400773 }
Chuck Levera5090502007-03-29 16:48:04 -0400774
Trond Myklebust9a4bd292008-10-03 16:48:34 -0400775 xprt->stat.bind_count++;
776 rpc_put_task(child);
Chuck Levera5090502007-03-29 16:48:04 -0400777 return;
778
Trond Myklebust96165e22008-10-03 16:48:40 -0400779bailout_release_client:
780 rpc_release_client(rpcb_clnt);
Chuck Levera5090502007-03-29 16:48:04 -0400781bailout_nofree:
782 rpcb_wake_rpcbind_waiters(xprt, status);
Chuck Levera5090502007-03-29 16:48:04 -0400783 task->tk_status = status;
Trond Myklebust2446ab62012-03-01 17:00:56 -0500784 xprt_put(xprt);
Chuck Levera5090502007-03-29 16:48:04 -0400785}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400786EXPORT_SYMBOL_GPL(rpcb_getport_async);
Chuck Levera5090502007-03-29 16:48:04 -0400787
788/*
789 * Rpcbind child task calls this callback via tk_exit.
790 */
791static void rpcb_getport_done(struct rpc_task *child, void *data)
792{
793 struct rpcbind_args *map = data;
794 struct rpc_xprt *xprt = map->r_xprt;
795 int status = child->tk_status;
796
Chuck Lever4784cb52007-09-11 18:00:36 -0400797 /* Garbage reply: retry with a lesser rpcbind version */
798 if (status == -EIO)
799 status = -EPROTONOSUPPORT;
800
Chuck Levera5090502007-03-29 16:48:04 -0400801 /* rpcbind server doesn't support this rpcbind protocol version */
802 if (status == -EPROTONOSUPPORT)
803 xprt->bind_index++;
804
805 if (status < 0) {
806 /* rpcbind server not available on remote host? */
807 xprt->ops->set_port(xprt, 0);
808 } else if (map->r_port == 0) {
809 /* Requested RPC service wasn't registered on remote host */
810 xprt->ops->set_port(xprt, 0);
811 status = -EACCES;
812 } else {
813 /* Succeeded */
814 xprt->ops->set_port(xprt, map->r_port);
815 xprt_set_bound(xprt);
816 status = 0;
817 }
818
819 dprintk("RPC: %5u rpcb_getport_done(status %d, port %u)\n",
820 child->tk_pid, status, map->r_port);
821
Trond Myklebust381ba742008-07-07 12:18:53 -0400822 map->r_status = status;
Chuck Levera5090502007-03-29 16:48:04 -0400823}
824
Chuck Lever166b88d2008-07-14 16:03:26 -0400825/*
826 * XDR functions for rpcbind
827 */
828
Chuck Lever9f06c712010-12-14 14:59:18 +0000829static void rpcb_enc_mapping(struct rpc_rqst *req, struct xdr_stream *xdr,
830 const struct rpcbind_args *rpcb)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400831{
Chuck Lever9f06c712010-12-14 14:59:18 +0000832 __be32 *p;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400833
834 dprintk("RPC: %5u encoding PMAP_%s call (%u, %u, %d, %u)\n",
Trond Myklebustffa94db2012-03-20 09:22:00 -0400835 req->rq_task->tk_pid,
836 req->rq_task->tk_msg.rpc_proc->p_name,
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400837 rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
838
Chuck Lever9f06c712010-12-14 14:59:18 +0000839 p = xdr_reserve_space(xdr, RPCB_mappingargs_sz << 2);
Chuck Lever4129ccf2010-12-14 14:58:59 +0000840 *p++ = cpu_to_be32(rpcb->r_prog);
841 *p++ = cpu_to_be32(rpcb->r_vers);
842 *p++ = cpu_to_be32(rpcb->r_prot);
843 *p = cpu_to_be32(rpcb->r_port);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400844}
845
Chuck Leverbf269552010-12-14 14:59:29 +0000846static int rpcb_dec_getport(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400847 struct rpcbind_args *rpcb)
848{
Chuck Leverc0c077d2009-08-09 15:09:43 -0400849 unsigned long port;
Chuck Leverbf269552010-12-14 14:59:29 +0000850 __be32 *p;
Chuck Leverc0c077d2009-08-09 15:09:43 -0400851
852 rpcb->r_port = 0;
853
Chuck Leverbf269552010-12-14 14:59:29 +0000854 p = xdr_inline_decode(xdr, 4);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400855 if (unlikely(p == NULL))
856 return -EIO;
857
Chuck Lever4129ccf2010-12-14 14:58:59 +0000858 port = be32_to_cpup(p);
Trond Myklebustffa94db2012-03-20 09:22:00 -0400859 dprintk("RPC: %5u PMAP_%s result: %lu\n", req->rq_task->tk_pid,
860 req->rq_task->tk_msg.rpc_proc->p_name, port);
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700861 if (unlikely(port > USHRT_MAX))
Chuck Leverc0c077d2009-08-09 15:09:43 -0400862 return -EIO;
863
864 rpcb->r_port = port;
865 return 0;
866}
867
Chuck Leverbf269552010-12-14 14:59:29 +0000868static int rpcb_dec_set(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400869 unsigned int *boolp)
870{
Chuck Leverbf269552010-12-14 14:59:29 +0000871 __be32 *p;
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400872
Chuck Leverbf269552010-12-14 14:59:29 +0000873 p = xdr_inline_decode(xdr, 4);
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400874 if (unlikely(p == NULL))
875 return -EIO;
876
877 *boolp = 0;
Chuck Leverbf269552010-12-14 14:59:29 +0000878 if (*p != xdr_zero)
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400879 *boolp = 1;
880
881 dprintk("RPC: %5u RPCB_%s call %s\n",
Trond Myklebustffa94db2012-03-20 09:22:00 -0400882 req->rq_task->tk_pid,
883 req->rq_task->tk_msg.rpc_proc->p_name,
Chuck Lever7ed0ff92009-08-09 15:09:42 -0400884 (*boolp ? "succeeded" : "failed"));
885 return 0;
886}
887
Chuck Lever4129ccf2010-12-14 14:58:59 +0000888static void encode_rpcb_string(struct xdr_stream *xdr, const char *string,
889 const u32 maxstrlen)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400890{
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400891 __be32 *p;
Chuck Lever4129ccf2010-12-14 14:58:59 +0000892 u32 len;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400893
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400894 len = strlen(string);
Weston Andros Adamson332e0082012-10-23 10:43:44 -0400895 WARN_ON_ONCE(len > maxstrlen);
896 if (len > maxstrlen)
897 /* truncate and hope for the best */
898 len = maxstrlen;
Chuck Lever4129ccf2010-12-14 14:58:59 +0000899 p = xdr_reserve_space(xdr, 4 + len);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400900 xdr_encode_opaque(p, string, len);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400901}
902
Chuck Lever9f06c712010-12-14 14:59:18 +0000903static void rpcb_enc_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
904 const struct rpcbind_args *rpcb)
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400905{
Chuck Lever9f06c712010-12-14 14:59:18 +0000906 __be32 *p;
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400907
908 dprintk("RPC: %5u encoding RPCB_%s call (%u, %u, '%s', '%s')\n",
Trond Myklebustffa94db2012-03-20 09:22:00 -0400909 req->rq_task->tk_pid,
910 req->rq_task->tk_msg.rpc_proc->p_name,
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400911 rpcb->r_prog, rpcb->r_vers,
912 rpcb->r_netid, rpcb->r_addr);
913
Chuck Lever9f06c712010-12-14 14:59:18 +0000914 p = xdr_reserve_space(xdr, (RPCB_program_sz + RPCB_version_sz) << 2);
Chuck Lever4129ccf2010-12-14 14:58:59 +0000915 *p++ = cpu_to_be32(rpcb->r_prog);
916 *p = cpu_to_be32(rpcb->r_vers);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400917
Chuck Lever9f06c712010-12-14 14:59:18 +0000918 encode_rpcb_string(xdr, rpcb->r_netid, RPCBIND_MAXNETIDLEN);
919 encode_rpcb_string(xdr, rpcb->r_addr, RPCBIND_MAXUADDRLEN);
920 encode_rpcb_string(xdr, rpcb->r_owner, RPCB_MAXOWNERLEN);
Chuck Lever6f2c2db2009-08-09 15:09:40 -0400921}
922
Chuck Leverbf269552010-12-14 14:59:29 +0000923static int rpcb_dec_getaddr(struct rpc_rqst *req, struct xdr_stream *xdr,
Chuck Leverc0c077d2009-08-09 15:09:43 -0400924 struct rpcbind_args *rpcb)
925{
926 struct sockaddr_storage address;
927 struct sockaddr *sap = (struct sockaddr *)&address;
Chuck Leverbf269552010-12-14 14:59:29 +0000928 __be32 *p;
Chuck Leverc0c077d2009-08-09 15:09:43 -0400929 u32 len;
930
931 rpcb->r_port = 0;
932
Chuck Leverbf269552010-12-14 14:59:29 +0000933 p = xdr_inline_decode(xdr, 4);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400934 if (unlikely(p == NULL))
935 goto out_fail;
Chuck Lever4129ccf2010-12-14 14:58:59 +0000936 len = be32_to_cpup(p);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400937
938 /*
939 * If the returned universal address is a null string,
940 * the requested RPC service was not registered.
941 */
942 if (len == 0) {
943 dprintk("RPC: %5u RPCB reply: program not registered\n",
Trond Myklebustffa94db2012-03-20 09:22:00 -0400944 req->rq_task->tk_pid);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400945 return 0;
946 }
947
948 if (unlikely(len > RPCBIND_MAXUADDRLEN))
949 goto out_fail;
950
Chuck Leverbf269552010-12-14 14:59:29 +0000951 p = xdr_inline_decode(xdr, len);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400952 if (unlikely(p == NULL))
953 goto out_fail;
Trond Myklebustffa94db2012-03-20 09:22:00 -0400954 dprintk("RPC: %5u RPCB_%s reply: %s\n", req->rq_task->tk_pid,
955 req->rq_task->tk_msg.rpc_proc->p_name, (char *)p);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400956
Stanislav Kinsburskyb030fb02012-01-13 14:02:40 +0400957 if (rpc_uaddr2sockaddr(req->rq_xprt->xprt_net, (char *)p, len,
958 sap, sizeof(address)) == 0)
Chuck Leverc0c077d2009-08-09 15:09:43 -0400959 goto out_fail;
960 rpcb->r_port = rpc_get_port(sap);
961
962 return 0;
963
964out_fail:
965 dprintk("RPC: %5u malformed RPCB_%s reply\n",
Trond Myklebustffa94db2012-03-20 09:22:00 -0400966 req->rq_task->tk_pid,
967 req->rq_task->tk_msg.rpc_proc->p_name);
Chuck Leverc0c077d2009-08-09 15:09:43 -0400968 return -EIO;
969}
970
Chuck Levera5090502007-03-29 16:48:04 -0400971/*
972 * Not all rpcbind procedures described in RFC 1833 are implemented
973 * since the Linux kernel RPC code requires only these.
974 */
Chuck Leverf8b761e2009-08-09 15:09:44 -0400975
Chuck Levera5090502007-03-29 16:48:04 -0400976static struct rpc_procinfo rpcb_procedures2[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -0400977 [RPCBPROC_SET] = {
978 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +0000979 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +0000980 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400981 .p_arglen = RPCB_mappingargs_sz,
982 .p_replen = RPCB_setres_sz,
983 .p_statidx = RPCBPROC_SET,
984 .p_timer = 0,
985 .p_name = "SET",
986 },
987 [RPCBPROC_UNSET] = {
988 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +0000989 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +0000990 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -0400991 .p_arglen = RPCB_mappingargs_sz,
992 .p_replen = RPCB_setres_sz,
993 .p_statidx = RPCBPROC_UNSET,
994 .p_timer = 0,
995 .p_name = "UNSET",
996 },
997 [RPCBPROC_GETPORT] = {
998 .p_proc = RPCBPROC_GETPORT,
Chuck Lever9f06c712010-12-14 14:59:18 +0000999 .p_encode = (kxdreproc_t)rpcb_enc_mapping,
Chuck Leverbf269552010-12-14 14:59:29 +00001000 .p_decode = (kxdrdproc_t)rpcb_dec_getport,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001001 .p_arglen = RPCB_mappingargs_sz,
1002 .p_replen = RPCB_getportres_sz,
1003 .p_statidx = RPCBPROC_GETPORT,
1004 .p_timer = 0,
1005 .p_name = "GETPORT",
1006 },
Chuck Levera5090502007-03-29 16:48:04 -04001007};
1008
1009static struct rpc_procinfo rpcb_procedures3[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -04001010 [RPCBPROC_SET] = {
1011 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001012 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001013 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001014 .p_arglen = RPCB_getaddrargs_sz,
1015 .p_replen = RPCB_setres_sz,
1016 .p_statidx = RPCBPROC_SET,
1017 .p_timer = 0,
1018 .p_name = "SET",
1019 },
1020 [RPCBPROC_UNSET] = {
1021 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001022 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001023 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001024 .p_arglen = RPCB_getaddrargs_sz,
1025 .p_replen = RPCB_setres_sz,
1026 .p_statidx = RPCBPROC_UNSET,
1027 .p_timer = 0,
1028 .p_name = "UNSET",
1029 },
1030 [RPCBPROC_GETADDR] = {
1031 .p_proc = RPCBPROC_GETADDR,
Chuck Lever9f06c712010-12-14 14:59:18 +00001032 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001033 .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001034 .p_arglen = RPCB_getaddrargs_sz,
1035 .p_replen = RPCB_getaddrres_sz,
1036 .p_statidx = RPCBPROC_GETADDR,
1037 .p_timer = 0,
1038 .p_name = "GETADDR",
1039 },
Chuck Levera5090502007-03-29 16:48:04 -04001040};
1041
1042static struct rpc_procinfo rpcb_procedures4[] = {
Chuck Leverf8b761e2009-08-09 15:09:44 -04001043 [RPCBPROC_SET] = {
1044 .p_proc = RPCBPROC_SET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001045 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001046 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001047 .p_arglen = RPCB_getaddrargs_sz,
1048 .p_replen = RPCB_setres_sz,
1049 .p_statidx = RPCBPROC_SET,
1050 .p_timer = 0,
1051 .p_name = "SET",
1052 },
1053 [RPCBPROC_UNSET] = {
1054 .p_proc = RPCBPROC_UNSET,
Chuck Lever9f06c712010-12-14 14:59:18 +00001055 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001056 .p_decode = (kxdrdproc_t)rpcb_dec_set,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001057 .p_arglen = RPCB_getaddrargs_sz,
1058 .p_replen = RPCB_setres_sz,
1059 .p_statidx = RPCBPROC_UNSET,
1060 .p_timer = 0,
1061 .p_name = "UNSET",
1062 },
1063 [RPCBPROC_GETADDR] = {
1064 .p_proc = RPCBPROC_GETADDR,
Chuck Lever9f06c712010-12-14 14:59:18 +00001065 .p_encode = (kxdreproc_t)rpcb_enc_getaddr,
Chuck Leverbf269552010-12-14 14:59:29 +00001066 .p_decode = (kxdrdproc_t)rpcb_dec_getaddr,
Chuck Leverf8b761e2009-08-09 15:09:44 -04001067 .p_arglen = RPCB_getaddrargs_sz,
1068 .p_replen = RPCB_getaddrres_sz,
1069 .p_statidx = RPCBPROC_GETADDR,
1070 .p_timer = 0,
1071 .p_name = "GETADDR",
1072 },
Chuck Levera5090502007-03-29 16:48:04 -04001073};
1074
Trond Myklebusta613fa12012-01-20 13:53:56 -05001075static const struct rpcb_info rpcb_next_version[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001076 {
1077 .rpc_vers = RPCBVERS_2,
1078 .rpc_proc = &rpcb_procedures2[RPCBPROC_GETPORT],
1079 },
1080 {
1081 .rpc_proc = NULL,
1082 },
Chuck Levera5090502007-03-29 16:48:04 -04001083};
1084
Trond Myklebusta613fa12012-01-20 13:53:56 -05001085static const struct rpcb_info rpcb_next_version6[] = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001086 {
1087 .rpc_vers = RPCBVERS_4,
Chuck Lever88424132008-06-25 17:24:47 -04001088 .rpc_proc = &rpcb_procedures4[RPCBPROC_GETADDR],
Chuck Leverfc200e72008-06-25 17:24:31 -04001089 },
1090 {
1091 .rpc_vers = RPCBVERS_3,
1092 .rpc_proc = &rpcb_procedures3[RPCBPROC_GETADDR],
1093 },
Chuck Leverfc200e72008-06-25 17:24:31 -04001094 {
1095 .rpc_proc = NULL,
1096 },
Chuck Leverd5b64432007-08-06 11:57:18 -04001097};
1098
Trond Myklebusta613fa12012-01-20 13:53:56 -05001099static const struct rpc_version rpcb_version2 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001100 .number = RPCBVERS_2,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001101 .nrprocs = ARRAY_SIZE(rpcb_procedures2),
Chuck Levera5090502007-03-29 16:48:04 -04001102 .procs = rpcb_procedures2
1103};
1104
Trond Myklebusta613fa12012-01-20 13:53:56 -05001105static const struct rpc_version rpcb_version3 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001106 .number = RPCBVERS_3,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001107 .nrprocs = ARRAY_SIZE(rpcb_procedures3),
Chuck Levera5090502007-03-29 16:48:04 -04001108 .procs = rpcb_procedures3
1109};
1110
Trond Myklebusta613fa12012-01-20 13:53:56 -05001111static const struct rpc_version rpcb_version4 = {
Chuck Leverfc200e72008-06-25 17:24:31 -04001112 .number = RPCBVERS_4,
Chuck Lever1ac7c232010-12-14 14:59:09 +00001113 .nrprocs = ARRAY_SIZE(rpcb_procedures4),
Chuck Levera5090502007-03-29 16:48:04 -04001114 .procs = rpcb_procedures4
1115};
1116
Trond Myklebusta613fa12012-01-20 13:53:56 -05001117static const struct rpc_version *rpcb_version[] = {
Chuck Levera5090502007-03-29 16:48:04 -04001118 NULL,
1119 NULL,
1120 &rpcb_version2,
1121 &rpcb_version3,
1122 &rpcb_version4
1123};
1124
1125static struct rpc_stat rpcb_stats;
1126
Trond Myklebusta613fa12012-01-20 13:53:56 -05001127static const struct rpc_program rpcb_program = {
Chuck Levera5090502007-03-29 16:48:04 -04001128 .name = "rpcbind",
1129 .number = RPCBIND_PROGRAM,
1130 .nrvers = ARRAY_SIZE(rpcb_version),
1131 .version = rpcb_version,
1132 .stats = &rpcb_stats,
1133};