2 * linux/net/sunrpc/pmap.c
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
9 #include <linux/config.h>
10 #include <linux/types.h>
11 #include <linux/socket.h>
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/uio.h>
16 #include <linux/sunrpc/clnt.h>
17 #include <linux/sunrpc/xprt.h>
18 #include <linux/sunrpc/sched.h>
21 # define RPCDBG_FACILITY RPCDBG_PMAP
26 #define PMAP_GETPORT 3
28 static struct rpc_procinfo pmap_procedures
[];
29 static struct rpc_clnt
* pmap_create(char *, struct sockaddr_in
*, int);
30 static void pmap_getport_done(struct rpc_task
*);
31 static struct rpc_program pmap_program
;
32 static DEFINE_SPINLOCK(pmap_lock
);
35 * Obtain the port for a given RPC service on a given host. This one can
36 * be called for an ongoing RPC request.
39 rpc_getport(struct rpc_task
*task
, struct rpc_clnt
*clnt
)
41 struct rpc_portmap
*map
= clnt
->cl_pmap
;
42 struct sockaddr_in
*sap
= &clnt
->cl_xprt
->addr
;
43 struct rpc_message msg
= {
44 .rpc_proc
= &pmap_procedures
[PMAP_GETPORT
],
46 .rpc_resp
= &clnt
->cl_port
,
49 struct rpc_clnt
*pmap_clnt
;
50 struct rpc_task
*child
;
52 dprintk("RPC: %4d rpc_getport(%s, %d, %d, %d)\n",
53 task
->tk_pid
, clnt
->cl_server
,
54 map
->pm_prog
, map
->pm_vers
, map
->pm_prot
);
56 /* Autobind on cloned rpc clients is discouraged */
57 BUG_ON(clnt
->cl_parent
!= clnt
);
59 spin_lock(&pmap_lock
);
60 if (map
->pm_binding
) {
61 rpc_sleep_on(&map
->pm_bindwait
, task
, NULL
, NULL
);
62 spin_unlock(&pmap_lock
);
66 spin_unlock(&pmap_lock
);
68 pmap_clnt
= pmap_create(clnt
->cl_server
, sap
, map
->pm_prot
);
69 if (IS_ERR(pmap_clnt
)) {
70 task
->tk_status
= PTR_ERR(pmap_clnt
);
76 * Note: rpc_new_child will release client after a failure.
78 if (!(child
= rpc_new_child(pmap_clnt
, task
)))
81 /* Setup the call info struct */
82 rpc_call_setup(child
, &msg
, 0);
84 /* ... and run the child task */
85 rpc_run_child(task
, child
, pmap_getport_done
);
89 spin_lock(&pmap_lock
);
91 rpc_wake_up(&map
->pm_bindwait
);
92 spin_unlock(&pmap_lock
);
93 task
->tk_status
= -EIO
;
94 task
->tk_action
= NULL
;
97 #ifdef CONFIG_ROOT_NFS
99 rpc_getport_external(struct sockaddr_in
*sin
, __u32 prog
, __u32 vers
, int prot
)
101 struct rpc_portmap map
= {
107 struct rpc_clnt
*pmap_clnt
;
111 dprintk("RPC: rpc_getport_external(%u.%u.%u.%u, %d, %d, %d)\n",
112 NIPQUAD(sin
->sin_addr
.s_addr
), prog
, vers
, prot
);
114 sprintf(hostname
, "%u.%u.%u.%u", NIPQUAD(sin
->sin_addr
.s_addr
));
115 pmap_clnt
= pmap_create(hostname
, sin
, prot
);
116 if (IS_ERR(pmap_clnt
))
117 return PTR_ERR(pmap_clnt
);
119 /* Setup the call info struct */
120 status
= rpc_call(pmap_clnt
, PMAP_GETPORT
, &map
, &map
.pm_port
, 0);
123 if (map
.pm_port
!= 0)
132 pmap_getport_done(struct rpc_task
*task
)
134 struct rpc_clnt
*clnt
= task
->tk_client
;
135 struct rpc_portmap
*map
= clnt
->cl_pmap
;
137 dprintk("RPC: %4d pmap_getport_done(status %d, port %d)\n",
138 task
->tk_pid
, task
->tk_status
, clnt
->cl_port
);
139 if (task
->tk_status
< 0) {
140 /* Make the calling task exit with an error */
141 task
->tk_action
= NULL
;
142 } else if (clnt
->cl_port
== 0) {
143 /* Program not registered */
144 task
->tk_status
= -EACCES
;
145 task
->tk_action
= NULL
;
147 /* byte-swap port number first */
148 clnt
->cl_port
= htons(clnt
->cl_port
);
149 clnt
->cl_xprt
->addr
.sin_port
= clnt
->cl_port
;
151 spin_lock(&pmap_lock
);
153 rpc_wake_up(&map
->pm_bindwait
);
154 spin_unlock(&pmap_lock
);
158 * Set or unset a port registration with the local portmapper.
159 * port == 0 means unregister, port != 0 means register.
162 rpc_register(u32 prog
, u32 vers
, int prot
, unsigned short port
, int *okay
)
164 struct sockaddr_in sin
;
165 struct rpc_portmap map
;
166 struct rpc_clnt
*pmap_clnt
;
169 dprintk("RPC: registering (%d, %d, %d, %d) with portmapper.\n",
170 prog
, vers
, prot
, port
);
172 sin
.sin_family
= AF_INET
;
173 sin
.sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
);
174 pmap_clnt
= pmap_create("localhost", &sin
, IPPROTO_UDP
);
175 if (IS_ERR(pmap_clnt
)) {
176 error
= PTR_ERR(pmap_clnt
);
177 dprintk("RPC: couldn't create pmap client. Error = %d\n", error
);
186 error
= rpc_call(pmap_clnt
, port
? PMAP_SET
: PMAP_UNSET
,
191 "RPC: failed to contact portmap (errno %d).\n",
194 dprintk("RPC: registration status %d/%d\n", error
, *okay
);
196 /* Client deleted automatically because cl_oneshot == 1 */
200 static struct rpc_clnt
*
201 pmap_create(char *hostname
, struct sockaddr_in
*srvaddr
, int proto
)
203 struct rpc_xprt
*xprt
;
204 struct rpc_clnt
*clnt
;
206 /* printk("pmap: create xprt\n"); */
207 xprt
= xprt_create_proto(proto
, srvaddr
, NULL
);
209 return (struct rpc_clnt
*)xprt
;
210 xprt
->addr
.sin_port
= htons(RPC_PMAP_PORT
);
212 /* printk("pmap: create clnt\n"); */
213 clnt
= rpc_new_client(xprt
, hostname
,
214 &pmap_program
, RPC_PMAP_VERSION
,
217 clnt
->cl_softrtry
= 1;
219 clnt
->cl_oneshot
= 1;
225 * XDR encode/decode functions for PMAP
228 xdr_encode_mapping(struct rpc_rqst
*req
, u32
*p
, struct rpc_portmap
*map
)
230 dprintk("RPC: xdr_encode_mapping(%d, %d, %d, %d)\n",
231 map
->pm_prog
, map
->pm_vers
, map
->pm_prot
, map
->pm_port
);
232 *p
++ = htonl(map
->pm_prog
);
233 *p
++ = htonl(map
->pm_vers
);
234 *p
++ = htonl(map
->pm_prot
);
235 *p
++ = htonl(map
->pm_port
);
237 req
->rq_slen
= xdr_adjust_iovec(req
->rq_svec
, p
);
242 xdr_decode_port(struct rpc_rqst
*req
, u32
*p
, unsigned short *portp
)
244 *portp
= (unsigned short) ntohl(*p
++);
249 xdr_decode_bool(struct rpc_rqst
*req
, u32
*p
, unsigned int *boolp
)
251 *boolp
= (unsigned int) ntohl(*p
++);
255 static struct rpc_procinfo pmap_procedures
[] = {
258 .p_encode
= (kxdrproc_t
) xdr_encode_mapping
,
259 .p_decode
= (kxdrproc_t
) xdr_decode_bool
,
264 .p_proc
= PMAP_UNSET
,
265 .p_encode
= (kxdrproc_t
) xdr_encode_mapping
,
266 .p_decode
= (kxdrproc_t
) xdr_decode_bool
,
271 .p_proc
= PMAP_GETPORT
,
272 .p_encode
= (kxdrproc_t
) xdr_encode_mapping
,
273 .p_decode
= (kxdrproc_t
) xdr_decode_port
,
279 static struct rpc_version pmap_version2
= {
282 .procs
= pmap_procedures
285 static struct rpc_version
* pmap_version
[] = {
291 static struct rpc_stat pmap_stats
;
293 static struct rpc_program pmap_program
= {
295 .number
= RPC_PMAP_PROGRAM
,
296 .nrvers
= ARRAY_SIZE(pmap_version
),
297 .version
= pmap_version
,
298 .stats
= &pmap_stats
,