]> git.ipfire.org Git - thirdparty/glibc.git/blame - sunrpc/clnt_tcp.c
Build rpcgen-generated files when cross compiling.
[thirdparty/glibc.git] / sunrpc / clnt_tcp.c
CommitLineData
28f540f4
RM
1/*
2 * clnt_tcp.c, Implements a TCP/IP based, client side RPC.
3 *
a7ab6ec8
UD
4 * Copyright (c) 2010, Oracle America, Inc.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials
15 * provided with the distribution.
16 * * Neither the name of the "Oracle America, Inc." nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28f540f4
RM
32 *
33 * TCP based RPC supports 'batched calls'.
34 * A sequence of calls may be batched-up in a send buffer. The rpc call
35 * return immediately to the client even though the call was not necessarily
36 * sent. The batching occurs if the results' xdr routine is NULL (0) AND
37 * the rpc timeout value is zero (see clnt.h, rpc).
38 *
39 * Clients should NOT casually batch calls that in fact return results; that is,
40 * the server side should be aware that a call is batched and not produce any
41 * return message. Batched calls that produce many result messages can
42 * deadlock (netlock) the client and the server....
43 *
44 * Now go hang yourself.
45 */
46
e7fd8a39
UD
47#include <netdb.h>
48#include <errno.h>
28f540f4 49#include <stdio.h>
e7fd8a39 50#include <unistd.h>
4360eafd 51#include <libintl.h>
28f540f4 52#include <rpc/rpc.h>
099a6fbd 53#include <sys/poll.h>
28f540f4 54#include <sys/socket.h>
28f540f4 55#include <rpc/pmap_clnt.h>
3ce1f295 56#include <wchar.h>
28f540f4 57
090ca000
UD
58extern u_long _create_xid (void);
59
e7fd8a39 60#define MCALL_MSG_SIZE 24
28f540f4 61
e7fd8a39
UD
62struct ct_data
63 {
64 int ct_sock;
65 bool_t ct_closeit;
66 struct timeval ct_wait;
67 bool_t ct_waitset; /* wait set by clnt_control? */
68 struct sockaddr_in ct_addr;
69 struct rpc_err ct_error;
70 char ct_mcall[MCALL_MSG_SIZE]; /* marshalled callmsg */
71 u_int ct_mpos; /* pos after marshal */
72 XDR ct_xdrs;
73 };
74
75static int readtcp (char *, char *, int);
76static int writetcp (char *, char *, int);
77
78static enum clnt_stat clnttcp_call (CLIENT *, u_long, xdrproc_t, caddr_t,
79 xdrproc_t, caddr_t, struct timeval);
80static void clnttcp_abort (void);
81static void clnttcp_geterr (CLIENT *, struct rpc_err *);
82static bool_t clnttcp_freeres (CLIENT *, xdrproc_t, caddr_t);
83static bool_t clnttcp_control (CLIENT *, int, char *);
84static void clnttcp_destroy (CLIENT *);
85
31d7b14c 86static const struct clnt_ops tcp_ops =
e7fd8a39
UD
87{
88 clnttcp_call,
89 clnttcp_abort,
90 clnttcp_geterr,
91 clnttcp_freeres,
92 clnttcp_destroy,
93 clnttcp_control
28f540f4
RM
94};
95
96/*
97 * Create a client handle for a tcp/ip connection.
98 * If *sockp<0, *sockp is set to a newly created TCP socket and it is
99 * connected to raddr. If *sockp non-negative then
100 * raddr is ignored. The rpc/tcp package does buffering
101 * similar to stdio, so the client must pick send and receive buffer sizes,];
102 * 0 => use the default.
103 * If raddr->sin_port is 0, then a binder on the remote machine is
104 * consulted for the right port number.
105 * NB: *sockp is copied into a private area.
106 * NB: It is the clients responsibility to close *sockp.
107 * NB: The rpch->cl_auth is set null authentication. Caller may wish to set this
108 * something more useful.
109 */
110CLIENT *
e7fd8a39
UD
111clnttcp_create (struct sockaddr_in *raddr, u_long prog, u_long vers,
112 int *sockp, u_int sendsz, u_int recvsz)
28f540f4 113{
e7fd8a39 114 CLIENT *h;
51028f34 115 struct ct_data *ct;
e7fd8a39
UD
116 struct rpc_msg call_msg;
117
118 h = (CLIENT *) mem_alloc (sizeof (*h));
51028f34
UD
119 ct = (struct ct_data *) mem_alloc (sizeof (*ct));
120 if (h == NULL || ct == NULL)
e7fd8a39 121 {
543cf8a9 122 struct rpc_createerr *ce = &get_rpc_createerr ();
1d20f7f8 123 (void) __fxprintf (NULL, "%s: %s", __func__, _("out of memory\n"));
543cf8a9 124 ce->cf_stat = RPC_SYSTEMERROR;
51028f34 125 ce->cf_error.re_errno = ENOMEM;
e7fd8a39
UD
126 goto fooy;
127 }
128
129 /*
130 * If no port number given ask the pmap for one
131 */
132 if (raddr->sin_port == 0)
133 {
134 u_short port;
135 if ((port = pmap_getport (raddr, prog, vers, IPPROTO_TCP)) == 0)
136 {
137 mem_free ((caddr_t) ct, sizeof (struct ct_data));
138 mem_free ((caddr_t) h, sizeof (CLIENT));
139 return ((CLIENT *) NULL);
28f540f4 140 }
e7fd8a39
UD
141 raddr->sin_port = htons (port);
142 }
143
144 /*
145 * If no socket given, open one
146 */
147 if (*sockp < 0)
148 {
50304ef0 149 *sockp = __socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
e7fd8a39
UD
150 (void) bindresvport (*sockp, (struct sockaddr_in *) 0);
151 if ((*sockp < 0)
50304ef0
UD
152 || (__connect (*sockp, (struct sockaddr *) raddr,
153 sizeof (*raddr)) < 0))
e7fd8a39 154 {
543cf8a9
UD
155 struct rpc_createerr *ce = &get_rpc_createerr ();
156 ce->cf_stat = RPC_SYSTEMERROR;
157 ce->cf_error.re_errno = errno;
e7fd8a39 158 if (*sockp >= 0)
50304ef0 159 (void) __close (*sockp);
e7fd8a39 160 goto fooy;
28f540f4 161 }
e7fd8a39
UD
162 ct->ct_closeit = TRUE;
163 }
164 else
165 {
166 ct->ct_closeit = FALSE;
167 }
168
169 /*
170 * Set up private data struct
171 */
172 ct->ct_sock = *sockp;
173 ct->ct_wait.tv_usec = 0;
174 ct->ct_waitset = FALSE;
175 ct->ct_addr = *raddr;
176
177 /*
178 * Initialize call message
179 */
090ca000 180 call_msg.rm_xid = _create_xid ();
e7fd8a39
UD
181 call_msg.rm_direction = CALL;
182 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION;
183 call_msg.rm_call.cb_prog = prog;
184 call_msg.rm_call.cb_vers = vers;
185
186 /*
187 * pre-serialize the static part of the call msg and stash it away
188 */
7b57bfe5
UD
189 xdrmem_create (&(ct->ct_xdrs), ct->ct_mcall, MCALL_MSG_SIZE, XDR_ENCODE);
190 if (!xdr_callhdr (&(ct->ct_xdrs), &call_msg))
e7fd8a39
UD
191 {
192 if (ct->ct_closeit)
193 {
50304ef0 194 (void) __close (*sockp);
28f540f4 195 }
e7fd8a39
UD
196 goto fooy;
197 }
198 ct->ct_mpos = XDR_GETPOS (&(ct->ct_xdrs));
199 XDR_DESTROY (&(ct->ct_xdrs));
200
201 /*
202 * Create a client handle which uses xdrrec for serialization
203 * and authnone for authentication.
204 */
7b57bfe5
UD
205 xdrrec_create (&(ct->ct_xdrs), sendsz, recvsz,
206 (caddr_t) ct, readtcp, writetcp);
31d7b14c 207 h->cl_ops = (struct clnt_ops *) &tcp_ops;
e7fd8a39 208 h->cl_private = (caddr_t) ct;
7b57bfe5 209 h->cl_auth = authnone_create ();
e7fd8a39 210 return h;
28f540f4
RM
211
212fooy:
e7fd8a39
UD
213 /*
214 * Something goofed, free stuff and barf
215 */
216 mem_free ((caddr_t) ct, sizeof (struct ct_data));
217 mem_free ((caddr_t) h, sizeof (CLIENT));
218 return ((CLIENT *) NULL);
28f540f4 219}
7b57bfe5
UD
220#ifdef EXPORT_RPC_SYMBOLS
221libc_hidden_def (clnttcp_create)
222#else
223libc_hidden_nolink (clnttcp_create, GLIBC_2_0)
224#endif
28f540f4
RM
225
226static enum clnt_stat
e7fd8a39
UD
227clnttcp_call (h, proc, xdr_args, args_ptr, xdr_results, results_ptr, timeout)
228 CLIENT *h;
229 u_long proc;
230 xdrproc_t xdr_args;
231 caddr_t args_ptr;
232 xdrproc_t xdr_results;
233 caddr_t results_ptr;
234 struct timeval timeout;
28f540f4 235{
e7fd8a39
UD
236 struct ct_data *ct = (struct ct_data *) h->cl_private;
237 XDR *xdrs = &(ct->ct_xdrs);
238 struct rpc_msg reply_msg;
239 u_long x_id;
240 u_int32_t *msg_x_id = (u_int32_t *) (ct->ct_mcall); /* yuk */
241 bool_t shipnow;
242 int refreshes = 2;
243
244 if (!ct->ct_waitset)
245 {
246 ct->ct_wait = timeout;
247 }
248
249 shipnow =
a69a8d9c
UD
250 (xdr_results == (xdrproc_t) 0 && ct->ct_wait.tv_sec == 0
251 && ct->ct_wait.tv_usec == 0) ? FALSE : TRUE;
28f540f4
RM
252
253call_again:
e7fd8a39
UD
254 xdrs->x_op = XDR_ENCODE;
255 ct->ct_error.re_status = RPC_SUCCESS;
256 x_id = ntohl (--(*msg_x_id));
257 if ((!XDR_PUTBYTES (xdrs, ct->ct_mcall, ct->ct_mpos)) ||
258 (!XDR_PUTLONG (xdrs, (long *) &proc)) ||
259 (!AUTH_MARSHALL (h->cl_auth, xdrs)) ||
260 (!(*xdr_args) (xdrs, args_ptr)))
261 {
262 if (ct->ct_error.re_status == RPC_SUCCESS)
263 ct->ct_error.re_status = RPC_CANTENCODEARGS;
7b57bfe5 264 (void) xdrrec_endofrecord (xdrs, TRUE);
e7fd8a39
UD
265 return (ct->ct_error.re_status);
266 }
7b57bfe5 267 if (!xdrrec_endofrecord (xdrs, shipnow))
e7fd8a39
UD
268 return ct->ct_error.re_status = RPC_CANTSEND;
269 if (!shipnow)
270 return RPC_SUCCESS;
271 /*
272 * Hack to provide rpc-based message passing
273 */
a69a8d9c 274 if (ct->ct_wait.tv_sec == 0 && ct->ct_wait.tv_usec == 0)
e7fd8a39
UD
275 {
276 return ct->ct_error.re_status = RPC_TIMEDOUT;
277 }
278
279
280 /*
281 * Keep receiving until we get a valid transaction id
282 */
283 xdrs->x_op = XDR_DECODE;
284 while (TRUE)
285 {
286 reply_msg.acpted_rply.ar_verf = _null_auth;
287 reply_msg.acpted_rply.ar_results.where = NULL;
7b57bfe5
UD
288 reply_msg.acpted_rply.ar_results.proc = (xdrproc_t)xdr_void;
289 if (!xdrrec_skiprecord (xdrs))
e7fd8a39
UD
290 return (ct->ct_error.re_status);
291 /* now decode and validate the response header */
7b57bfe5 292 if (!xdr_replymsg (xdrs, &reply_msg))
e7fd8a39
UD
293 {
294 if (ct->ct_error.re_status == RPC_SUCCESS)
295 continue;
296 return ct->ct_error.re_status;
28f540f4 297 }
5512461f 298 if ((u_int32_t) reply_msg.rm_xid == (u_int32_t) x_id)
e7fd8a39
UD
299 break;
300 }
301
302 /*
303 * process header
304 */
305 _seterr_reply (&reply_msg, &(ct->ct_error));
306 if (ct->ct_error.re_status == RPC_SUCCESS)
307 {
308 if (!AUTH_VALIDATE (h->cl_auth, &reply_msg.acpted_rply.ar_verf))
309 {
310 ct->ct_error.re_status = RPC_AUTHERROR;
311 ct->ct_error.re_why = AUTH_INVALIDRESP;
28f540f4 312 }
e7fd8a39
UD
313 else if (!(*xdr_results) (xdrs, results_ptr))
314 {
315 if (ct->ct_error.re_status == RPC_SUCCESS)
316 ct->ct_error.re_status = RPC_CANTDECODERES;
28f540f4 317 }
e7fd8a39
UD
318 /* free verifier ... */
319 if (reply_msg.acpted_rply.ar_verf.oa_base != NULL)
320 {
321 xdrs->x_op = XDR_FREE;
7b57bfe5 322 (void) xdr_opaque_auth (xdrs, &(reply_msg.acpted_rply.ar_verf));
e7fd8a39
UD
323 }
324 } /* end successful completion */
325 else
326 {
327 /* maybe our credentials need to be refreshed ... */
328 if (refreshes-- && AUTH_REFRESH (h->cl_auth))
329 goto call_again;
330 } /* end of unsuccessful completion */
331 return ct->ct_error.re_status;
28f540f4
RM
332}
333
334static void
e7fd8a39
UD
335clnttcp_geterr (h, errp)
336 CLIENT *h;
337 struct rpc_err *errp;
28f540f4 338{
e7fd8a39
UD
339 struct ct_data *ct =
340 (struct ct_data *) h->cl_private;
28f540f4 341
e7fd8a39 342 *errp = ct->ct_error;
28f540f4
RM
343}
344
345static bool_t
e7fd8a39
UD
346clnttcp_freeres (cl, xdr_res, res_ptr)
347 CLIENT *cl;
348 xdrproc_t xdr_res;
349 caddr_t res_ptr;
28f540f4 350{
e7fd8a39
UD
351 struct ct_data *ct = (struct ct_data *) cl->cl_private;
352 XDR *xdrs = &(ct->ct_xdrs);
28f540f4 353
e7fd8a39
UD
354 xdrs->x_op = XDR_FREE;
355 return (*xdr_res) (xdrs, res_ptr);
28f540f4
RM
356}
357
358static void
e7fd8a39 359clnttcp_abort ()
28f540f4
RM
360{
361}
362
363static bool_t
26a60f90 364clnttcp_control (CLIENT *cl, int request, char *info)
28f540f4 365{
e7fd8a39 366 struct ct_data *ct = (struct ct_data *) cl->cl_private;
4efbd5cb
UD
367 u_long *mcall_ptr;
368 u_long ul;
e7fd8a39 369
26a60f90 370
e7fd8a39
UD
371 switch (request)
372 {
26a60f90
UD
373 case CLSET_FD_CLOSE:
374 ct->ct_closeit = TRUE;
375 break;
376 case CLSET_FD_NCLOSE:
377 ct->ct_closeit = FALSE;
378 break;
e7fd8a39
UD
379 case CLSET_TIMEOUT:
380 ct->ct_wait = *(struct timeval *) info;
381 ct->ct_waitset = TRUE;
382 break;
383 case CLGET_TIMEOUT:
384 *(struct timeval *) info = ct->ct_wait;
385 break;
386 case CLGET_SERVER_ADDR:
387 *(struct sockaddr_in *) info = ct->ct_addr;
388 break;
26a60f90
UD
389 case CLGET_FD:
390 *(int *)info = ct->ct_sock;
391 break;
392 case CLGET_XID:
393 /*
394 * use the knowledge that xid is the
395 * first element in the call structure *.
396 * This will get the xid of the PREVIOUS call
397 */
4efbd5cb
UD
398#if 0
399 /* This original code has aliasing issues. */
26a60f90 400 *(u_long *)info = ntohl (*(u_long *)ct->ct_mcall);
4efbd5cb
UD
401#else
402 mcall_ptr = (u_long *)ct->ct_mcall;
403 ul = ntohl (*mcall_ptr);
404 memcpy (info, &ul, sizeof (ul));
405#endif
26a60f90
UD
406 break;
407 case CLSET_XID:
408 /* This will set the xid of the NEXT call */
4efbd5cb
UD
409#if 0
410 /* This original code has aliasing issues. */
26a60f90 411 *(u_long *)ct->ct_mcall = htonl (*(u_long *)info - 1);
4efbd5cb
UD
412#else
413 ul = ntohl (*(u_long *)info - 1);
414 memcpy (ct->ct_mcall, &ul, sizeof (ul));
415#endif
26a60f90 416 /* decrement by 1 as clnttcp_call() increments once */
f0ccf6ea 417 break;
26a60f90
UD
418 case CLGET_VERS:
419 /*
420 * This RELIES on the information that, in the call body,
421 * the version number field is the fifth field from the
422 * begining of the RPC header. MUST be changed if the
423 * call_struct is changed
424 */
425 *(u_long *)info = ntohl (*(u_long *)(ct->ct_mcall +
426 4 * BYTES_PER_XDR_UNIT));
427 break;
428 case CLSET_VERS:
429 *(u_long *)(ct->ct_mcall + 4 * BYTES_PER_XDR_UNIT)
430 = htonl (*(u_long *)info);
431 break;
432 case CLGET_PROG:
433 /*
434 * This RELIES on the information that, in the call body,
435 * the program number field is the field from the
436 * begining of the RPC header. MUST be changed if the
437 * call_struct is changed
438 */
439 *(u_long *)info = ntohl(*(u_long *)(ct->ct_mcall +
440 3 * BYTES_PER_XDR_UNIT));
441 break;
442 case CLSET_PROG:
443 *(u_long *)(ct->ct_mcall + 3 * BYTES_PER_XDR_UNIT)
444 = htonl(*(u_long *)info);
445 break;
446 /* The following are only possible with TI-RPC */
447 case CLGET_RETRY_TIMEOUT:
448 case CLSET_RETRY_TIMEOUT:
449 case CLGET_SVC_ADDR:
450 case CLSET_SVC_ADDR:
451 case CLSET_PUSH_TIMOD:
452 case CLSET_POP_TIMOD:
e7fd8a39
UD
453 default:
454 return FALSE;
455 }
456 return TRUE;
28f540f4
RM
457}
458
459
460static void
e7fd8a39 461clnttcp_destroy (CLIENT *h)
28f540f4 462{
e7fd8a39
UD
463 struct ct_data *ct =
464 (struct ct_data *) h->cl_private;
465
466 if (ct->ct_closeit)
467 {
50304ef0 468 (void) __close (ct->ct_sock);
e7fd8a39
UD
469 }
470 XDR_DESTROY (&(ct->ct_xdrs));
471 mem_free ((caddr_t) ct, sizeof (struct ct_data));
472 mem_free ((caddr_t) h, sizeof (CLIENT));
28f540f4
RM
473}
474
475/*
476 * Interface between xdr serializer and tcp connection.
477 * Behaves like the system calls, read & write, but keeps some error state
478 * around for the rpc level.
479 */
480static int
e7fd8a39 481readtcp (char *ctptr, char *buf, int len)
28f540f4 482{
e7fd8a39 483 struct ct_data *ct = (struct ct_data *)ctptr;
099a6fbd
UD
484 struct pollfd fd;
485 int milliseconds = (ct->ct_wait.tv_sec * 1000) +
486 (ct->ct_wait.tv_usec / 1000);
28f540f4 487
e7fd8a39
UD
488 if (len == 0)
489 return 0;
28f540f4 490
099a6fbd
UD
491 fd.fd = ct->ct_sock;
492 fd.events = POLLIN;
e7fd8a39
UD
493 while (TRUE)
494 {
099a6fbd 495 switch (__poll(&fd, 1, milliseconds))
e7fd8a39 496 {
28f540f4 497 case 0:
e7fd8a39
UD
498 ct->ct_error.re_status = RPC_TIMEDOUT;
499 return -1;
28f540f4
RM
500
501 case -1:
e7fd8a39
UD
502 if (errno == EINTR)
503 continue;
504 ct->ct_error.re_status = RPC_CANTRECV;
505 ct->ct_error.re_errno = errno;
506 return -1;
28f540f4 507 }
e7fd8a39
UD
508 break;
509 }
50304ef0 510 switch (len = __read (ct->ct_sock, buf, len))
e7fd8a39
UD
511 {
512
513 case 0:
514 /* premature eof */
515 ct->ct_error.re_errno = ECONNRESET;
516 ct->ct_error.re_status = RPC_CANTRECV;
517 len = -1; /* it's really an error */
518 break;
519
520 case -1:
521 ct->ct_error.re_errno = errno;
522 ct->ct_error.re_status = RPC_CANTRECV;
523 break;
524 }
525 return len;
28f540f4
RM
526}
527
528static int
e7fd8a39 529writetcp (char *ctptr, char *buf, int len)
28f540f4 530{
e7fd8a39
UD
531 int i, cnt;
532 struct ct_data *ct = (struct ct_data*)ctptr;
533
534 for (cnt = len; cnt > 0; cnt -= i, buf += i)
535 {
50304ef0 536 if ((i = __write (ct->ct_sock, buf, cnt)) == -1)
e7fd8a39
UD
537 {
538 ct->ct_error.re_errno = errno;
539 ct->ct_error.re_status = RPC_CANTSEND;
540 return -1;
28f540f4 541 }
e7fd8a39
UD
542 }
543 return len;
28f540f4 544}