blob: 623180f224c97990a0389299014520fc5f5412ca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/pmap.c
3 *
4 * Portmapper client.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/types.h>
10#include <linux/socket.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/uio.h>
14#include <linux/in.h>
15#include <linux/sunrpc/clnt.h>
16#include <linux/sunrpc/xprt.h>
17#include <linux/sunrpc/sched.h>
18
19#ifdef RPC_DEBUG
20# define RPCDBG_FACILITY RPCDBG_PMAP
21#endif
22
23#define PMAP_SET 1
24#define PMAP_UNSET 2
25#define PMAP_GETPORT 3
26
27static struct rpc_procinfo pmap_procedures[];
Chuck Lever6cd75252005-09-22 21:24:59 -040028static struct rpc_clnt * pmap_create(char *, struct sockaddr_in *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static void pmap_getport_done(struct rpc_task *);
30static struct rpc_program pmap_program;
31static DEFINE_SPINLOCK(pmap_lock);
32
33/*
34 * Obtain the port for a given RPC service on a given host. This one can
35 * be called for an ongoing RPC request.
36 */
37void
38rpc_getport(struct rpc_task *task, struct rpc_clnt *clnt)
39{
40 struct rpc_portmap *map = clnt->cl_pmap;
41 struct sockaddr_in *sap = &clnt->cl_xprt->addr;
42 struct rpc_message msg = {
43 .rpc_proc = &pmap_procedures[PMAP_GETPORT],
44 .rpc_argp = map,
45 .rpc_resp = &clnt->cl_port,
46 .rpc_cred = NULL
47 };
48 struct rpc_clnt *pmap_clnt;
49 struct rpc_task *child;
50
51 dprintk("RPC: %4d rpc_getport(%s, %d, %d, %d)\n",
52 task->tk_pid, clnt->cl_server,
53 map->pm_prog, map->pm_vers, map->pm_prot);
54
Andreas Gruenbacher007e2512005-06-22 17:16:23 +000055 /* Autobind on cloned rpc clients is discouraged */
56 BUG_ON(clnt->cl_parent != clnt);
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 spin_lock(&pmap_lock);
59 if (map->pm_binding) {
60 rpc_sleep_on(&map->pm_bindwait, task, NULL, NULL);
61 spin_unlock(&pmap_lock);
62 return;
63 }
64 map->pm_binding = 1;
65 spin_unlock(&pmap_lock);
66
Chuck Lever6cd75252005-09-22 21:24:59 -040067 pmap_clnt = pmap_create(clnt->cl_server, sap, map->pm_prot, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (IS_ERR(pmap_clnt)) {
69 task->tk_status = PTR_ERR(pmap_clnt);
70 goto bailout;
71 }
72 task->tk_status = 0;
73
74 /*
75 * Note: rpc_new_child will release client after a failure.
76 */
77 if (!(child = rpc_new_child(pmap_clnt, task)))
78 goto bailout;
79
80 /* Setup the call info struct */
81 rpc_call_setup(child, &msg, 0);
82
83 /* ... and run the child task */
Chuck Lever262ca072006-03-20 13:44:16 -050084 task->tk_xprt->stat.bind_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 rpc_run_child(task, child, pmap_getport_done);
86 return;
87
88bailout:
89 spin_lock(&pmap_lock);
90 map->pm_binding = 0;
91 rpc_wake_up(&map->pm_bindwait);
92 spin_unlock(&pmap_lock);
Trond Myklebustabbcf282006-01-03 09:55:03 +010093 rpc_exit(task, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
95
96#ifdef CONFIG_ROOT_NFS
97int
98rpc_getport_external(struct sockaddr_in *sin, __u32 prog, __u32 vers, int prot)
99{
100 struct rpc_portmap map = {
101 .pm_prog = prog,
102 .pm_vers = vers,
103 .pm_prot = prot,
104 .pm_port = 0
105 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500106 struct rpc_message msg = {
107 .rpc_proc = &pmap_procedures[PMAP_GETPORT],
108 .rpc_argp = &map,
109 .rpc_resp = &map.pm_port,
110 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct rpc_clnt *pmap_clnt;
112 char hostname[32];
113 int status;
114
115 dprintk("RPC: rpc_getport_external(%u.%u.%u.%u, %d, %d, %d)\n",
116 NIPQUAD(sin->sin_addr.s_addr), prog, vers, prot);
117
118 sprintf(hostname, "%u.%u.%u.%u", NIPQUAD(sin->sin_addr.s_addr));
Chuck Lever6cd75252005-09-22 21:24:59 -0400119 pmap_clnt = pmap_create(hostname, sin, prot, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (IS_ERR(pmap_clnt))
121 return PTR_ERR(pmap_clnt);
122
123 /* Setup the call info struct */
Chuck Leverdead28d2006-03-20 13:44:23 -0500124 status = rpc_call_sync(pmap_clnt, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 if (status >= 0) {
127 if (map.pm_port != 0)
128 return map.pm_port;
129 status = -EACCES;
130 }
131 return status;
132}
133#endif
134
135static void
136pmap_getport_done(struct rpc_task *task)
137{
138 struct rpc_clnt *clnt = task->tk_client;
Chuck Lever92200412006-01-03 09:55:51 +0100139 struct rpc_xprt *xprt = task->tk_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 struct rpc_portmap *map = clnt->cl_pmap;
141
142 dprintk("RPC: %4d pmap_getport_done(status %d, port %d)\n",
143 task->tk_pid, task->tk_status, clnt->cl_port);
Chuck Lever92200412006-01-03 09:55:51 +0100144
145 xprt->ops->set_port(xprt, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (task->tk_status < 0) {
147 /* Make the calling task exit with an error */
Trond Myklebustabbcf282006-01-03 09:55:03 +0100148 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 } else if (clnt->cl_port == 0) {
150 /* Program not registered */
Trond Myklebustabbcf282006-01-03 09:55:03 +0100151 rpc_exit(task, -EACCES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 } else {
Chuck Lever92200412006-01-03 09:55:51 +0100153 xprt->ops->set_port(xprt, clnt->cl_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 clnt->cl_port = htons(clnt->cl_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156 spin_lock(&pmap_lock);
157 map->pm_binding = 0;
158 rpc_wake_up(&map->pm_bindwait);
159 spin_unlock(&pmap_lock);
160}
161
162/*
163 * Set or unset a port registration with the local portmapper.
164 * port == 0 means unregister, port != 0 means register.
165 */
166int
167rpc_register(u32 prog, u32 vers, int prot, unsigned short port, int *okay)
168{
Chuck Leverdead28d2006-03-20 13:44:23 -0500169 struct sockaddr_in sin = {
170 .sin_family = AF_INET,
171 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
172 };
173 struct rpc_portmap map = {
174 .pm_prog = prog,
175 .pm_vers = vers,
176 .pm_prot = prot,
177 .pm_port = port,
178 };
179 struct rpc_message msg = {
180 .rpc_proc = &pmap_procedures[port ? PMAP_SET : PMAP_UNSET],
181 .rpc_argp = &map,
182 .rpc_resp = okay,
183 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct rpc_clnt *pmap_clnt;
185 int error = 0;
186
187 dprintk("RPC: registering (%d, %d, %d, %d) with portmapper.\n",
188 prog, vers, prot, port);
189
Chuck Lever6cd75252005-09-22 21:24:59 -0400190 pmap_clnt = pmap_create("localhost", &sin, IPPROTO_UDP, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 if (IS_ERR(pmap_clnt)) {
192 error = PTR_ERR(pmap_clnt);
193 dprintk("RPC: couldn't create pmap client. Error = %d\n", error);
194 return error;
195 }
196
Chuck Leverdead28d2006-03-20 13:44:23 -0500197 error = rpc_call_sync(pmap_clnt, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 if (error < 0) {
200 printk(KERN_WARNING
201 "RPC: failed to contact portmap (errno %d).\n",
202 error);
203 }
204 dprintk("RPC: registration status %d/%d\n", error, *okay);
205
206 /* Client deleted automatically because cl_oneshot == 1 */
207 return error;
208}
209
210static struct rpc_clnt *
Chuck Lever6cd75252005-09-22 21:24:59 -0400211pmap_create(char *hostname, struct sockaddr_in *srvaddr, int proto, int privileged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 struct rpc_xprt *xprt;
214 struct rpc_clnt *clnt;
215
216 /* printk("pmap: create xprt\n"); */
217 xprt = xprt_create_proto(proto, srvaddr, NULL);
218 if (IS_ERR(xprt))
219 return (struct rpc_clnt *)xprt;
Chuck Lever92200412006-01-03 09:55:51 +0100220 xprt->ops->set_port(xprt, RPC_PMAP_PORT);
Chuck Lever6cd75252005-09-22 21:24:59 -0400221 if (!privileged)
222 xprt->resvport = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 /* printk("pmap: create clnt\n"); */
Trond Myklebust5ee0ed72005-06-22 17:16:20 +0000225 clnt = rpc_new_client(xprt, hostname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 &pmap_program, RPC_PMAP_VERSION,
227 RPC_AUTH_UNIX);
Trond Myklebust5b616f52005-06-22 17:16:20 +0000228 if (!IS_ERR(clnt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 clnt->cl_softrtry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 clnt->cl_oneshot = 1;
231 }
232 return clnt;
233}
234
235/*
236 * XDR encode/decode functions for PMAP
237 */
238static int
239xdr_encode_mapping(struct rpc_rqst *req, u32 *p, struct rpc_portmap *map)
240{
241 dprintk("RPC: xdr_encode_mapping(%d, %d, %d, %d)\n",
242 map->pm_prog, map->pm_vers, map->pm_prot, map->pm_port);
243 *p++ = htonl(map->pm_prog);
244 *p++ = htonl(map->pm_vers);
245 *p++ = htonl(map->pm_prot);
246 *p++ = htonl(map->pm_port);
247
248 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
249 return 0;
250}
251
252static int
253xdr_decode_port(struct rpc_rqst *req, u32 *p, unsigned short *portp)
254{
255 *portp = (unsigned short) ntohl(*p++);
256 return 0;
257}
258
259static int
260xdr_decode_bool(struct rpc_rqst *req, u32 *p, unsigned int *boolp)
261{
262 *boolp = (unsigned int) ntohl(*p++);
263 return 0;
264}
265
266static struct rpc_procinfo pmap_procedures[] = {
267[PMAP_SET] = {
268 .p_proc = PMAP_SET,
269 .p_encode = (kxdrproc_t) xdr_encode_mapping,
270 .p_decode = (kxdrproc_t) xdr_decode_bool,
271 .p_bufsiz = 4,
272 .p_count = 1,
Chuck Levercc0175c2006-03-20 13:44:22 -0500273 .p_statidx = PMAP_SET,
274 .p_name = "SET",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 },
276[PMAP_UNSET] = {
277 .p_proc = PMAP_UNSET,
278 .p_encode = (kxdrproc_t) xdr_encode_mapping,
279 .p_decode = (kxdrproc_t) xdr_decode_bool,
280 .p_bufsiz = 4,
281 .p_count = 1,
Chuck Levercc0175c2006-03-20 13:44:22 -0500282 .p_statidx = PMAP_UNSET,
283 .p_name = "UNSET",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 },
285[PMAP_GETPORT] = {
286 .p_proc = PMAP_GETPORT,
287 .p_encode = (kxdrproc_t) xdr_encode_mapping,
288 .p_decode = (kxdrproc_t) xdr_decode_port,
289 .p_bufsiz = 4,
290 .p_count = 1,
Chuck Levercc0175c2006-03-20 13:44:22 -0500291 .p_statidx = PMAP_GETPORT,
292 .p_name = "GETPORT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 },
294};
295
296static struct rpc_version pmap_version2 = {
297 .number = 2,
298 .nrprocs = 4,
299 .procs = pmap_procedures
300};
301
302static struct rpc_version * pmap_version[] = {
303 NULL,
304 NULL,
305 &pmap_version2
306};
307
308static struct rpc_stat pmap_stats;
309
310static struct rpc_program pmap_program = {
311 .name = "portmap",
312 .number = RPC_PMAP_PROGRAM,
313 .nrvers = ARRAY_SIZE(pmap_version),
314 .version = pmap_version,
315 .stats = &pmap_stats,
316};