Fix missing backslash in last change.
[glibc.git] / sunrpc / clnt_tcp.c
blobe3076524a73aa6b8dc3f0defd10049c11072937b
1 /* @(#)clnt_tcp.c 2.2 88/08/01 4.0 RPCSRC */
2 /*
3 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4 * unrestricted use provided that this legend is included on all tape
5 * media and as a part of the software program in whole or part. Users
6 * may copy or modify Sun RPC without charge, but are not authorized
7 * to license or distribute it to anyone else except as part of a product or
8 * program developed by the user.
10 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 * Sun RPC is provided with no support and without any obligation on the
15 * part of Sun Microsystems, Inc. to assist in its use, correction,
16 * modification or enhancement.
18 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20 * OR ANY PART THEREOF.
22 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23 * or profits or other special, indirect and consequential damages, even if
24 * Sun has been advised of the possibility of such damages.
26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
30 #if !defined(lint) && defined(SCCSIDS)
31 static char sccsid[] = "@(#)clnt_tcp.c 1.37 87/10/05 Copyr 1984 Sun Micro";
32 #endif
35 * clnt_tcp.c, Implements a TCP/IP based, client side RPC.
37 * Copyright (C) 1984, Sun Microsystems, Inc.
39 * TCP based RPC supports 'batched calls'.
40 * A sequence of calls may be batched-up in a send buffer. The rpc call
41 * return immediately to the client even though the call was not necessarily
42 * sent. The batching occurs if the results' xdr routine is NULL (0) AND
43 * the rpc timeout value is zero (see clnt.h, rpc).
45 * Clients should NOT casually batch calls that in fact return results; that is,
46 * the server side should be aware that a call is batched and not produce any
47 * return message. Batched calls that produce many result messages can
48 * deadlock (netlock) the client and the server....
50 * Now go hang yourself.
53 #include <netdb.h>
54 #include <errno.h>
55 #include <stdio.h>
56 #include <unistd.h>
57 #include <libintl.h>
58 #include <rpc/rpc.h>
59 #include <sys/poll.h>
60 #include <sys/socket.h>
61 #include <rpc/pmap_clnt.h>
63 extern u_long _create_xid (void);
65 #define MCALL_MSG_SIZE 24
67 struct ct_data
69 int ct_sock;
70 bool_t ct_closeit;
71 struct timeval ct_wait;
72 bool_t ct_waitset; /* wait set by clnt_control? */
73 struct sockaddr_in ct_addr;
74 struct rpc_err ct_error;
75 char ct_mcall[MCALL_MSG_SIZE]; /* marshalled callmsg */
76 u_int ct_mpos; /* pos after marshal */
77 XDR ct_xdrs;
80 static int readtcp (char *, char *, int);
81 static int writetcp (char *, char *, int);
83 static enum clnt_stat clnttcp_call (CLIENT *, u_long, xdrproc_t, caddr_t,
84 xdrproc_t, caddr_t, struct timeval);
85 static void clnttcp_abort (void);
86 static void clnttcp_geterr (CLIENT *, struct rpc_err *);
87 static bool_t clnttcp_freeres (CLIENT *, xdrproc_t, caddr_t);
88 static bool_t clnttcp_control (CLIENT *, int, char *);
89 static void clnttcp_destroy (CLIENT *);
91 static struct clnt_ops tcp_ops =
93 clnttcp_call,
94 clnttcp_abort,
95 clnttcp_geterr,
96 clnttcp_freeres,
97 clnttcp_destroy,
98 clnttcp_control
102 * Create a client handle for a tcp/ip connection.
103 * If *sockp<0, *sockp is set to a newly created TCP socket and it is
104 * connected to raddr. If *sockp non-negative then
105 * raddr is ignored. The rpc/tcp package does buffering
106 * similar to stdio, so the client must pick send and receive buffer sizes,];
107 * 0 => use the default.
108 * If raddr->sin_port is 0, then a binder on the remote machine is
109 * consulted for the right port number.
110 * NB: *sockp is copied into a private area.
111 * NB: It is the clients responsibility to close *sockp.
112 * NB: The rpch->cl_auth is set null authentication. Caller may wish to set this
113 * something more useful.
115 CLIENT *
116 clnttcp_create (struct sockaddr_in *raddr, u_long prog, u_long vers,
117 int *sockp, u_int sendsz, u_int recvsz)
119 CLIENT *h;
120 struct ct_data *ct = (struct ct_data *) mem_alloc (sizeof (*ct));
121 struct rpc_msg call_msg;
123 h = (CLIENT *) mem_alloc (sizeof (*h));
124 if (h == NULL)
126 struct rpc_createerr *ce = &get_rpc_createerr ();
127 (void) fprintf (stderr, _("clnttcp_create: out of memory\n"));
128 ce->cf_stat = RPC_SYSTEMERROR;
129 ce->cf_error.re_errno = errno;
130 goto fooy;
132 /* ct = (struct ct_data *) mem_alloc (sizeof (*ct)); */
133 if (ct == NULL)
135 struct rpc_createerr *ce = &get_rpc_createerr ();
136 (void) fprintf (stderr, _("clnttcp_create: out of memory\n"));
137 ce->cf_stat = RPC_SYSTEMERROR;
138 ce->cf_error.re_errno = errno;
139 goto fooy;
143 * If no port number given ask the pmap for one
145 if (raddr->sin_port == 0)
147 u_short port;
148 if ((port = pmap_getport (raddr, prog, vers, IPPROTO_TCP)) == 0)
150 mem_free ((caddr_t) ct, sizeof (struct ct_data));
151 mem_free ((caddr_t) h, sizeof (CLIENT));
152 return ((CLIENT *) NULL);
154 raddr->sin_port = htons (port);
158 * If no socket given, open one
160 if (*sockp < 0)
162 *sockp = __socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
163 (void) bindresvport (*sockp, (struct sockaddr_in *) 0);
164 if ((*sockp < 0)
165 || (__connect (*sockp, (struct sockaddr *) raddr,
166 sizeof (*raddr)) < 0))
168 struct rpc_createerr *ce = &get_rpc_createerr ();
169 ce->cf_stat = RPC_SYSTEMERROR;
170 ce->cf_error.re_errno = errno;
171 if (*sockp >= 0)
172 (void) __close (*sockp);
173 goto fooy;
175 ct->ct_closeit = TRUE;
177 else
179 ct->ct_closeit = FALSE;
183 * Set up private data struct
185 ct->ct_sock = *sockp;
186 ct->ct_wait.tv_usec = 0;
187 ct->ct_waitset = FALSE;
188 ct->ct_addr = *raddr;
191 * Initialize call message
193 call_msg.rm_xid = _create_xid ();
194 call_msg.rm_direction = CALL;
195 call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION;
196 call_msg.rm_call.cb_prog = prog;
197 call_msg.rm_call.cb_vers = vers;
200 * pre-serialize the static part of the call msg and stash it away
202 xdrmem_create (&(ct->ct_xdrs), ct->ct_mcall, MCALL_MSG_SIZE,
203 XDR_ENCODE);
204 if (!xdr_callhdr (&(ct->ct_xdrs), &call_msg))
206 if (ct->ct_closeit)
208 (void) __close (*sockp);
210 goto fooy;
212 ct->ct_mpos = XDR_GETPOS (&(ct->ct_xdrs));
213 XDR_DESTROY (&(ct->ct_xdrs));
216 * Create a client handle which uses xdrrec for serialization
217 * and authnone for authentication.
219 xdrrec_create (&(ct->ct_xdrs), sendsz, recvsz,
220 (caddr_t) ct, readtcp, writetcp);
221 h->cl_ops = &tcp_ops;
222 h->cl_private = (caddr_t) ct;
223 h->cl_auth = authnone_create ();
224 return h;
226 fooy:
228 * Something goofed, free stuff and barf
230 mem_free ((caddr_t) ct, sizeof (struct ct_data));
231 mem_free ((caddr_t) h, sizeof (CLIENT));
232 return ((CLIENT *) NULL);
235 static enum clnt_stat
236 clnttcp_call (h, proc, xdr_args, args_ptr, xdr_results, results_ptr, timeout)
237 CLIENT *h;
238 u_long proc;
239 xdrproc_t xdr_args;
240 caddr_t args_ptr;
241 xdrproc_t xdr_results;
242 caddr_t results_ptr;
243 struct timeval timeout;
245 struct ct_data *ct = (struct ct_data *) h->cl_private;
246 XDR *xdrs = &(ct->ct_xdrs);
247 struct rpc_msg reply_msg;
248 u_long x_id;
249 u_int32_t *msg_x_id = (u_int32_t *) (ct->ct_mcall); /* yuk */
250 bool_t shipnow;
251 int refreshes = 2;
253 if (!ct->ct_waitset)
255 ct->ct_wait = timeout;
258 shipnow =
259 (xdr_results == (xdrproc_t) 0 && ct->ct_wait.tv_sec == 0
260 && ct->ct_wait.tv_usec == 0) ? FALSE : TRUE;
262 call_again:
263 xdrs->x_op = XDR_ENCODE;
264 ct->ct_error.re_status = RPC_SUCCESS;
265 x_id = ntohl (--(*msg_x_id));
266 if ((!XDR_PUTBYTES (xdrs, ct->ct_mcall, ct->ct_mpos)) ||
267 (!XDR_PUTLONG (xdrs, (long *) &proc)) ||
268 (!AUTH_MARSHALL (h->cl_auth, xdrs)) ||
269 (!(*xdr_args) (xdrs, args_ptr)))
271 if (ct->ct_error.re_status == RPC_SUCCESS)
272 ct->ct_error.re_status = RPC_CANTENCODEARGS;
273 (void) xdrrec_endofrecord (xdrs, TRUE);
274 return (ct->ct_error.re_status);
276 if (!xdrrec_endofrecord (xdrs, shipnow))
277 return ct->ct_error.re_status = RPC_CANTSEND;
278 if (!shipnow)
279 return RPC_SUCCESS;
281 * Hack to provide rpc-based message passing
283 if (ct->ct_wait.tv_sec == 0 && ct->ct_wait.tv_usec == 0)
285 return ct->ct_error.re_status = RPC_TIMEDOUT;
290 * Keep receiving until we get a valid transaction id
292 xdrs->x_op = XDR_DECODE;
293 while (TRUE)
295 reply_msg.acpted_rply.ar_verf = _null_auth;
296 reply_msg.acpted_rply.ar_results.where = NULL;
297 reply_msg.acpted_rply.ar_results.proc = (xdrproc_t)xdr_void;
298 if (!xdrrec_skiprecord (xdrs))
299 return (ct->ct_error.re_status);
300 /* now decode and validate the response header */
301 if (!xdr_replymsg (xdrs, &reply_msg))
303 if (ct->ct_error.re_status == RPC_SUCCESS)
304 continue;
305 return ct->ct_error.re_status;
307 if ((u_int32_t) reply_msg.rm_xid == (u_int32_t) x_id)
308 break;
312 * process header
314 _seterr_reply (&reply_msg, &(ct->ct_error));
315 if (ct->ct_error.re_status == RPC_SUCCESS)
317 if (!AUTH_VALIDATE (h->cl_auth, &reply_msg.acpted_rply.ar_verf))
319 ct->ct_error.re_status = RPC_AUTHERROR;
320 ct->ct_error.re_why = AUTH_INVALIDRESP;
322 else if (!(*xdr_results) (xdrs, results_ptr))
324 if (ct->ct_error.re_status == RPC_SUCCESS)
325 ct->ct_error.re_status = RPC_CANTDECODERES;
327 /* free verifier ... */
328 if (reply_msg.acpted_rply.ar_verf.oa_base != NULL)
330 xdrs->x_op = XDR_FREE;
331 (void) xdr_opaque_auth (xdrs, &(reply_msg.acpted_rply.ar_verf));
333 } /* end successful completion */
334 else
336 /* maybe our credentials need to be refreshed ... */
337 if (refreshes-- && AUTH_REFRESH (h->cl_auth))
338 goto call_again;
339 } /* end of unsuccessful completion */
340 return ct->ct_error.re_status;
343 static void
344 clnttcp_geterr (h, errp)
345 CLIENT *h;
346 struct rpc_err *errp;
348 struct ct_data *ct =
349 (struct ct_data *) h->cl_private;
351 *errp = ct->ct_error;
354 static bool_t
355 clnttcp_freeres (cl, xdr_res, res_ptr)
356 CLIENT *cl;
357 xdrproc_t xdr_res;
358 caddr_t res_ptr;
360 struct ct_data *ct = (struct ct_data *) cl->cl_private;
361 XDR *xdrs = &(ct->ct_xdrs);
363 xdrs->x_op = XDR_FREE;
364 return (*xdr_res) (xdrs, res_ptr);
367 static void
368 clnttcp_abort ()
372 static bool_t
373 clnttcp_control (CLIENT *cl, int request, char *info)
375 struct ct_data *ct = (struct ct_data *) cl->cl_private;
378 switch (request)
380 case CLSET_FD_CLOSE:
381 ct->ct_closeit = TRUE;
382 break;
383 case CLSET_FD_NCLOSE:
384 ct->ct_closeit = FALSE;
385 break;
386 case CLSET_TIMEOUT:
387 ct->ct_wait = *(struct timeval *) info;
388 ct->ct_waitset = TRUE;
389 break;
390 case CLGET_TIMEOUT:
391 *(struct timeval *) info = ct->ct_wait;
392 break;
393 case CLGET_SERVER_ADDR:
394 *(struct sockaddr_in *) info = ct->ct_addr;
395 break;
396 case CLGET_FD:
397 *(int *)info = ct->ct_sock;
398 break;
399 case CLGET_XID:
401 * use the knowledge that xid is the
402 * first element in the call structure *.
403 * This will get the xid of the PREVIOUS call
405 *(u_long *)info = ntohl (*(u_long *)ct->ct_mcall);
406 break;
407 case CLSET_XID:
408 /* This will set the xid of the NEXT call */
409 *(u_long *)ct->ct_mcall = htonl (*(u_long *)info - 1);
410 /* decrement by 1 as clnttcp_call() increments once */
411 case CLGET_VERS:
413 * This RELIES on the information that, in the call body,
414 * the version number field is the fifth field from the
415 * begining of the RPC header. MUST be changed if the
416 * call_struct is changed
418 *(u_long *)info = ntohl (*(u_long *)(ct->ct_mcall +
419 4 * BYTES_PER_XDR_UNIT));
420 break;
421 case CLSET_VERS:
422 *(u_long *)(ct->ct_mcall + 4 * BYTES_PER_XDR_UNIT)
423 = htonl (*(u_long *)info);
424 break;
425 case CLGET_PROG:
427 * This RELIES on the information that, in the call body,
428 * the program number field is the field from the
429 * begining of the RPC header. MUST be changed if the
430 * call_struct is changed
432 *(u_long *)info = ntohl(*(u_long *)(ct->ct_mcall +
433 3 * BYTES_PER_XDR_UNIT));
434 break;
435 case CLSET_PROG:
436 *(u_long *)(ct->ct_mcall + 3 * BYTES_PER_XDR_UNIT)
437 = htonl(*(u_long *)info);
438 break;
439 /* The following are only possible with TI-RPC */
440 case CLGET_RETRY_TIMEOUT:
441 case CLSET_RETRY_TIMEOUT:
442 case CLGET_SVC_ADDR:
443 case CLSET_SVC_ADDR:
444 case CLSET_PUSH_TIMOD:
445 case CLSET_POP_TIMOD:
446 default:
447 return FALSE;
449 return TRUE;
453 static void
454 clnttcp_destroy (CLIENT *h)
456 struct ct_data *ct =
457 (struct ct_data *) h->cl_private;
459 if (ct->ct_closeit)
461 (void) __close (ct->ct_sock);
463 XDR_DESTROY (&(ct->ct_xdrs));
464 mem_free ((caddr_t) ct, sizeof (struct ct_data));
465 mem_free ((caddr_t) h, sizeof (CLIENT));
469 * Interface between xdr serializer and tcp connection.
470 * Behaves like the system calls, read & write, but keeps some error state
471 * around for the rpc level.
473 static int
474 readtcp (char *ctptr, char *buf, int len)
476 struct ct_data *ct = (struct ct_data *)ctptr;
477 struct pollfd fd;
478 int milliseconds = (ct->ct_wait.tv_sec * 1000) +
479 (ct->ct_wait.tv_usec / 1000);
481 if (len == 0)
482 return 0;
484 fd.fd = ct->ct_sock;
485 fd.events = POLLIN;
486 while (TRUE)
488 switch (__poll(&fd, 1, milliseconds))
490 case 0:
491 ct->ct_error.re_status = RPC_TIMEDOUT;
492 return -1;
494 case -1:
495 if (errno == EINTR)
496 continue;
497 ct->ct_error.re_status = RPC_CANTRECV;
498 ct->ct_error.re_errno = errno;
499 return -1;
501 break;
503 switch (len = __read (ct->ct_sock, buf, len))
506 case 0:
507 /* premature eof */
508 ct->ct_error.re_errno = ECONNRESET;
509 ct->ct_error.re_status = RPC_CANTRECV;
510 len = -1; /* it's really an error */
511 break;
513 case -1:
514 ct->ct_error.re_errno = errno;
515 ct->ct_error.re_status = RPC_CANTRECV;
516 break;
518 return len;
521 static int
522 writetcp (char *ctptr, char *buf, int len)
524 int i, cnt;
525 struct ct_data *ct = (struct ct_data*)ctptr;
527 for (cnt = len; cnt > 0; cnt -= i, buf += i)
529 if ((i = __write (ct->ct_sock, buf, cnt)) == -1)
531 ct->ct_error.re_errno = errno;
532 ct->ct_error.re_status = RPC_CANTSEND;
533 return -1;
536 return len;