3 * Client interface to pmap rpc service.
4 * remote call and broadcast service
6 * Copyright (c) 2010, Oracle America, Inc.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer in the documentation and/or other materials
17 * provided with the distribution.
18 * * Neither the name of the "Oracle America, Inc." nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
27 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
29 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
32 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <rpc/pmap_prot.h>
41 #include <rpc/pmap_clnt.h>
42 #include <rpc/pmap_rmt.h>
44 #include <sys/socket.h>
47 #include <sys/param.h>
50 #include <sys/ioctl.h>
51 #include <arpa/inet.h>
52 #include <shlib-compat.h>
54 #define MAX_BROADCAST_SIZE 1400
56 extern u_long
_create_xid (void);
58 static const struct timeval timeout
= {3, 0};
61 * pmapper remote-call-service interface.
62 * This routine is used to call the pmapper remote call service
63 * which will look up a service program in the port maps, and then
64 * remotely call that routine with the given parameters. This allows
65 * programs to do a lookup and call in one step.
68 pmap_rmtcall (struct sockaddr_in
*addr
, u_long prog
, u_long vers
, u_long proc
,
69 xdrproc_t xdrargs
, caddr_t argsp
, xdrproc_t xdrres
, caddr_t resp
,
70 struct timeval tout
, u_long
*port_ptr
)
78 addr
->sin_port
= htons (PMAPPORT
);
79 client
= clntudp_create (addr
, PMAPPROG
, PMAPVERS
, timeout
, &socket
);
80 if (client
!= (CLIENT
*) NULL
)
87 r
.port_ptr
= port_ptr
;
89 r
.xdr_results
= xdrres
;
90 stat
= CLNT_CALL (client
, PMAPPROC_CALLIT
,
91 (xdrproc_t
)xdr_rmtcall_args
,
92 (caddr_t
)&a
, (xdrproc_t
)xdr_rmtcallres
,
94 CLNT_DESTROY (client
);
100 /* (void)__close(socket); CLNT_DESTROY already closed it */
104 libc_hidden_nolink_sunrpc (pmap_rmtcall
, GLIBC_2_0
)
108 * XDR remote call arguments
109 * written for XDR_ENCODE direction only
112 xdr_rmtcall_args (XDR
*xdrs
, struct rmtcallargs
*cap
)
114 u_int lenposition
, argposition
, position
;
116 if (xdr_u_long (xdrs
, &(cap
->prog
)) &&
117 xdr_u_long (xdrs
, &(cap
->vers
)) &&
118 xdr_u_long (xdrs
, &(cap
->proc
)))
120 u_long dummy_arglen
= 0;
121 lenposition
= XDR_GETPOS (xdrs
);
122 if (!xdr_u_long (xdrs
, &dummy_arglen
))
124 argposition
= XDR_GETPOS (xdrs
);
125 if (!(*(cap
->xdr_args
)) (xdrs
, cap
->args_ptr
))
127 position
= XDR_GETPOS (xdrs
);
128 cap
->arglen
= (u_long
) position
- (u_long
) argposition
;
129 XDR_SETPOS (xdrs
, lenposition
);
130 if (!xdr_u_long (xdrs
, &(cap
->arglen
)))
132 XDR_SETPOS (xdrs
, position
);
137 libc_hidden_nolink_sunrpc (xdr_rmtcall_args
, GLIBC_2_0
)
140 * XDR remote call results
141 * written for XDR_DECODE direction only
144 xdr_rmtcallres (XDR
*xdrs
, struct rmtcallres
*crp
)
148 port_ptr
= (caddr_t
) crp
->port_ptr
;
149 if (xdr_reference (xdrs
, &port_ptr
, sizeof (u_long
),
150 (xdrproc_t
) xdr_u_long
)
151 && xdr_u_long (xdrs
, &crp
->resultslen
))
153 crp
->port_ptr
= (u_long
*) port_ptr
;
154 return (*(crp
->xdr_results
)) (xdrs
, crp
->results_ptr
);
158 libc_hidden_nolink_sunrpc (xdr_rmtcallres
, GLIBC_2_0
)
162 * The following is kludged-up support for simple rpc broadcasts.
163 * Someday a large, complicated system will replace these trivial
164 * routines which only support udp/ip .
168 getbroadcastnets (struct in_addr
*addrs
, int naddrs
)
172 if (getifaddrs (&ifa
) != 0)
174 perror ("broadcast: getifaddrs");
179 struct ifaddrs
*run
= ifa
;
180 while (run
!= NULL
&& i
< naddrs
)
182 if ((run
->ifa_flags
& IFF_BROADCAST
) != 0
183 && (run
->ifa_flags
& IFF_UP
) != 0
184 && run
->ifa_addr
!= NULL
185 && run
->ifa_addr
->sa_family
== AF_INET
)
186 /* Copy the broadcast address. */
187 addrs
[i
++] = ((struct sockaddr_in
*) run
->ifa_broadaddr
)->sin_addr
;
199 clnt_broadcast (/* program number */
203 /* procedure number */
205 /* xdr routine for args */
207 /* pointer to args */
209 /* xdr routine for results */
211 /* pointer to results */
213 /* call with each result obtained */
214 resultproc_t eachresult
)
216 enum clnt_stat stat
= RPC_FAILED
;
217 AUTH
*unix_auth
= authunix_create_default ();
219 XDR
*xdrs
= &xdr_stream
;
221 int outlen
, inlen
, nets
;
231 struct in_addr addrs
[20];
232 struct sockaddr_in baddr
, raddr
; /* broadcast and response addresses */
233 struct rmtcallargs a
;
236 char outbuf
[MAX_BROADCAST_SIZE
], inbuf
[UDPMSGSIZE
];
239 * initialization: create a socket, a broadcast address, and
240 * preserialize the arguments into a send buffer.
242 if ((sock
= __socket (AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
)) < 0)
244 perror (_("Cannot create socket for broadcast rpc"));
249 if (__setsockopt (sock
, SOL_SOCKET
, SO_BROADCAST
, &on
, sizeof (on
)) < 0)
251 perror (_("Cannot set socket option SO_BROADCAST"));
255 #endif /* def SO_BROADCAST */
258 nets
= getbroadcastnets (addrs
, sizeof (addrs
) / sizeof (addrs
[0]));
259 memset ((char *) &baddr
, 0, sizeof (baddr
));
260 baddr
.sin_family
= AF_INET
;
261 baddr
.sin_port
= htons (PMAPPORT
);
262 baddr
.sin_addr
.s_addr
= htonl (INADDR_ANY
);
263 /* baddr.sin_addr.S_un.S_addr = htonl(INADDR_ANY); */
264 msg
.rm_xid
= xid
= _create_xid ();
266 msg
.rm_direction
= CALL
;
267 msg
.rm_call
.cb_rpcvers
= RPC_MSG_VERSION
;
268 msg
.rm_call
.cb_prog
= PMAPPROG
;
269 msg
.rm_call
.cb_vers
= PMAPVERS
;
270 msg
.rm_call
.cb_proc
= PMAPPROC_CALLIT
;
271 msg
.rm_call
.cb_cred
= unix_auth
->ah_cred
;
272 msg
.rm_call
.cb_verf
= unix_auth
->ah_verf
;
279 r
.xdr_results
= xresults
;
280 r
.results_ptr
= resultsp
;
281 xdrmem_create (xdrs
, outbuf
, MAX_BROADCAST_SIZE
, XDR_ENCODE
);
282 if ((!xdr_callmsg (xdrs
, &msg
))
283 || (!xdr_rmtcall_args (xdrs
, &a
)))
285 stat
= RPC_CANTENCODEARGS
;
288 outlen
= (int) xdr_getpos (xdrs
);
291 * Basic loop: broadcast a packet and wait a while for response(s).
292 * The response timeout grows larger per iteration.
294 for (t
.tv_sec
= 4; t
.tv_sec
<= 14; t
.tv_sec
+= 2)
296 for (i
= 0; i
< nets
; i
++)
298 baddr
.sin_addr
= addrs
[i
];
299 if (__sendto (sock
, outbuf
, outlen
, 0,
300 (struct sockaddr
*) &baddr
,
301 sizeof (struct sockaddr
)) != outlen
)
303 perror (_("Cannot send broadcast packet"));
308 if (eachresult
== NULL
)
314 msg
.acpted_rply
.ar_verf
= _null_auth
;
315 msg
.acpted_rply
.ar_results
.where
= (caddr_t
) & r
;
316 msg
.acpted_rply
.ar_results
.proc
= (xdrproc_t
) xdr_rmtcallres
;
317 milliseconds
= t
.tv_sec
* 1000 + t
.tv_usec
/ 1000;
318 switch (__poll(&fd
, 1, milliseconds
))
321 case 0: /* timed out */
325 case -1: /* some kind of error */
328 perror (_("Broadcast poll problem"));
332 } /* end of poll results switch */
334 fromlen
= sizeof (struct sockaddr
);
335 inlen
= __recvfrom (sock
, inbuf
, UDPMSGSIZE
, 0,
336 (struct sockaddr
*) &raddr
, &fromlen
);
341 perror (_("Cannot receive reply to broadcast"));
345 if ((size_t) inlen
< sizeof (u_long
))
348 * see if reply transaction id matches sent id.
349 * If so, decode the results.
351 xdrmem_create (xdrs
, inbuf
, (u_int
) inlen
, XDR_DECODE
);
352 if (xdr_replymsg (xdrs
, &msg
))
354 if (((uint32_t) msg
.rm_xid
== (uint32_t) xid
) &&
355 (msg
.rm_reply
.rp_stat
== MSG_ACCEPTED
) &&
356 (msg
.acpted_rply
.ar_stat
== SUCCESS
))
358 raddr
.sin_port
= htons ((u_short
) port
);
359 done
= (*eachresult
) (resultsp
, &raddr
);
361 /* otherwise, we just ignore the errors ... */
366 /* some kind of deserialization problem ... */
367 if ((uint32_t) msg
.rm_xid
== (uint32_t) xid
)
368 fprintf (stderr
, "Broadcast deserialization problem");
369 /* otherwise, just random garbage */
372 xdrs
->x_op
= XDR_FREE
;
373 msg
.acpted_rply
.ar_results
.proc
= (xdrproc_t
)xdr_void
;
374 (void) xdr_replymsg (xdrs
, &msg
);
375 (void) (*xresults
) (xdrs
, resultsp
);
388 (void) __close (sock
);
389 AUTH_DESTROY (unix_auth
);
392 libc_hidden_nolink_sunrpc (clnt_broadcast
, GLIBC_2_0
)