1 /* @(#)clnt_tcp.c 2.2 88/08/01 4.0 RPCSRC */
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.
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";
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.
60 #include <sys/socket.h>
61 #include <rpc/pmap_clnt.h>
66 extern u_long
_create_xid (void);
68 #define MCALL_MSG_SIZE 24
74 struct timeval ct_wait
;
75 bool_t ct_waitset
; /* wait set by clnt_control? */
76 struct sockaddr_in ct_addr
;
77 struct rpc_err ct_error
;
78 char ct_mcall
[MCALL_MSG_SIZE
]; /* marshalled callmsg */
79 u_int ct_mpos
; /* pos after marshal */
83 static int readtcp (char *, char *, int);
84 static int writetcp (char *, char *, int);
86 static enum clnt_stat
clnttcp_call (CLIENT
*, u_long
, xdrproc_t
, caddr_t
,
87 xdrproc_t
, caddr_t
, struct timeval
);
88 static void clnttcp_abort (void);
89 static void clnttcp_geterr (CLIENT
*, struct rpc_err
*);
90 static bool_t
clnttcp_freeres (CLIENT
*, xdrproc_t
, caddr_t
);
91 static bool_t
clnttcp_control (CLIENT
*, int, char *);
92 static void clnttcp_destroy (CLIENT
*);
94 static struct clnt_ops tcp_ops
=
105 * Create a client handle for a tcp/ip connection.
106 * If *sockp<0, *sockp is set to a newly created TCP socket and it is
107 * connected to raddr. If *sockp non-negative then
108 * raddr is ignored. The rpc/tcp package does buffering
109 * similar to stdio, so the client must pick send and receive buffer sizes,];
110 * 0 => use the default.
111 * If raddr->sin_port is 0, then a binder on the remote machine is
112 * consulted for the right port number.
113 * NB: *sockp is copied into a private area.
114 * NB: It is the clients responsibility to close *sockp.
115 * NB: The rpch->cl_auth is set null authentication. Caller may wish to set this
116 * something more useful.
119 clnttcp_create (struct sockaddr_in
*raddr
, u_long prog
, u_long vers
,
120 int *sockp
, u_int sendsz
, u_int recvsz
)
124 struct rpc_msg call_msg
;
126 h
= (CLIENT
*) mem_alloc (sizeof (*h
));
127 ct
= (struct ct_data
*) mem_alloc (sizeof (*ct
));
128 if (h
== NULL
|| ct
== NULL
)
130 struct rpc_createerr
*ce
= &get_rpc_createerr ();
132 if (_IO_fwide (stderr
, 0) > 0)
133 (void) __fwprintf (stderr
, L
"%s",
134 _("clnttcp_create: out of memory\n"));
137 (void) fputs (_("clnttcp_create: out of memory\n"), stderr
);
138 ce
->cf_stat
= RPC_SYSTEMERROR
;
139 ce
->cf_error
.re_errno
= ENOMEM
;
144 * If no port number given ask the pmap for one
146 if (raddr
->sin_port
== 0)
149 if ((port
= pmap_getport (raddr
, prog
, vers
, IPPROTO_TCP
)) == 0)
151 mem_free ((caddr_t
) ct
, sizeof (struct ct_data
));
152 mem_free ((caddr_t
) h
, sizeof (CLIENT
));
153 return ((CLIENT
*) NULL
);
155 raddr
->sin_port
= htons (port
);
159 * If no socket given, open one
163 *sockp
= __socket (AF_INET
, SOCK_STREAM
, IPPROTO_TCP
);
164 (void) bindresvport (*sockp
, (struct sockaddr_in
*) 0);
166 || (__connect (*sockp
, (struct sockaddr
*) raddr
,
167 sizeof (*raddr
)) < 0))
169 struct rpc_createerr
*ce
= &get_rpc_createerr ();
170 ce
->cf_stat
= RPC_SYSTEMERROR
;
171 ce
->cf_error
.re_errno
= errno
;
173 (void) __close (*sockp
);
176 ct
->ct_closeit
= TRUE
;
180 ct
->ct_closeit
= FALSE
;
184 * Set up private data struct
186 ct
->ct_sock
= *sockp
;
187 ct
->ct_wait
.tv_usec
= 0;
188 ct
->ct_waitset
= FALSE
;
189 ct
->ct_addr
= *raddr
;
192 * Initialize call message
194 call_msg
.rm_xid
= _create_xid ();
195 call_msg
.rm_direction
= CALL
;
196 call_msg
.rm_call
.cb_rpcvers
= RPC_MSG_VERSION
;
197 call_msg
.rm_call
.cb_prog
= prog
;
198 call_msg
.rm_call
.cb_vers
= vers
;
201 * pre-serialize the static part of the call msg and stash it away
203 INTUSE(xdrmem_create
) (&(ct
->ct_xdrs
), ct
->ct_mcall
, MCALL_MSG_SIZE
,
205 if (!INTUSE(xdr_callhdr
) (&(ct
->ct_xdrs
), &call_msg
))
209 (void) __close (*sockp
);
213 ct
->ct_mpos
= XDR_GETPOS (&(ct
->ct_xdrs
));
214 XDR_DESTROY (&(ct
->ct_xdrs
));
217 * Create a client handle which uses xdrrec for serialization
218 * and authnone for authentication.
220 INTUSE(xdrrec_create
) (&(ct
->ct_xdrs
), sendsz
, recvsz
,
221 (caddr_t
) ct
, readtcp
, writetcp
);
222 h
->cl_ops
= &tcp_ops
;
223 h
->cl_private
= (caddr_t
) ct
;
224 h
->cl_auth
= INTUSE(authnone_create
) ();
229 * Something goofed, free stuff and barf
231 mem_free ((caddr_t
) ct
, sizeof (struct ct_data
));
232 mem_free ((caddr_t
) h
, sizeof (CLIENT
));
233 return ((CLIENT
*) NULL
);
235 INTDEF (clnttcp_create
)
237 static enum clnt_stat
238 clnttcp_call (h
, proc
, xdr_args
, args_ptr
, xdr_results
, results_ptr
, timeout
)
243 xdrproc_t xdr_results
;
245 struct timeval timeout
;
247 struct ct_data
*ct
= (struct ct_data
*) h
->cl_private
;
248 XDR
*xdrs
= &(ct
->ct_xdrs
);
249 struct rpc_msg reply_msg
;
251 u_int32_t
*msg_x_id
= (u_int32_t
*) (ct
->ct_mcall
); /* yuk */
257 ct
->ct_wait
= timeout
;
261 (xdr_results
== (xdrproc_t
) 0 && ct
->ct_wait
.tv_sec
== 0
262 && ct
->ct_wait
.tv_usec
== 0) ? FALSE
: TRUE
;
265 xdrs
->x_op
= XDR_ENCODE
;
266 ct
->ct_error
.re_status
= RPC_SUCCESS
;
267 x_id
= ntohl (--(*msg_x_id
));
268 if ((!XDR_PUTBYTES (xdrs
, ct
->ct_mcall
, ct
->ct_mpos
)) ||
269 (!XDR_PUTLONG (xdrs
, (long *) &proc
)) ||
270 (!AUTH_MARSHALL (h
->cl_auth
, xdrs
)) ||
271 (!(*xdr_args
) (xdrs
, args_ptr
)))
273 if (ct
->ct_error
.re_status
== RPC_SUCCESS
)
274 ct
->ct_error
.re_status
= RPC_CANTENCODEARGS
;
275 (void) INTUSE(xdrrec_endofrecord
) (xdrs
, TRUE
);
276 return (ct
->ct_error
.re_status
);
278 if (!INTUSE(xdrrec_endofrecord
) (xdrs
, shipnow
))
279 return ct
->ct_error
.re_status
= RPC_CANTSEND
;
283 * Hack to provide rpc-based message passing
285 if (ct
->ct_wait
.tv_sec
== 0 && ct
->ct_wait
.tv_usec
== 0)
287 return ct
->ct_error
.re_status
= RPC_TIMEDOUT
;
292 * Keep receiving until we get a valid transaction id
294 xdrs
->x_op
= XDR_DECODE
;
297 reply_msg
.acpted_rply
.ar_verf
= _null_auth
;
298 reply_msg
.acpted_rply
.ar_results
.where
= NULL
;
299 reply_msg
.acpted_rply
.ar_results
.proc
= (xdrproc_t
)INTUSE(xdr_void
);
300 if (!INTUSE(xdrrec_skiprecord
) (xdrs
))
301 return (ct
->ct_error
.re_status
);
302 /* now decode and validate the response header */
303 if (!INTUSE(xdr_replymsg
) (xdrs
, &reply_msg
))
305 if (ct
->ct_error
.re_status
== RPC_SUCCESS
)
307 return ct
->ct_error
.re_status
;
309 if ((u_int32_t
) reply_msg
.rm_xid
== (u_int32_t
) x_id
)
316 _seterr_reply (&reply_msg
, &(ct
->ct_error
));
317 if (ct
->ct_error
.re_status
== RPC_SUCCESS
)
319 if (!AUTH_VALIDATE (h
->cl_auth
, &reply_msg
.acpted_rply
.ar_verf
))
321 ct
->ct_error
.re_status
= RPC_AUTHERROR
;
322 ct
->ct_error
.re_why
= AUTH_INVALIDRESP
;
324 else if (!(*xdr_results
) (xdrs
, results_ptr
))
326 if (ct
->ct_error
.re_status
== RPC_SUCCESS
)
327 ct
->ct_error
.re_status
= RPC_CANTDECODERES
;
329 /* free verifier ... */
330 if (reply_msg
.acpted_rply
.ar_verf
.oa_base
!= NULL
)
332 xdrs
->x_op
= XDR_FREE
;
333 (void) INTUSE(xdr_opaque_auth
) (xdrs
,
334 &(reply_msg
.acpted_rply
.ar_verf
));
336 } /* end successful completion */
339 /* maybe our credentials need to be refreshed ... */
340 if (refreshes
-- && AUTH_REFRESH (h
->cl_auth
))
342 } /* end of unsuccessful completion */
343 return ct
->ct_error
.re_status
;
347 clnttcp_geterr (h
, errp
)
349 struct rpc_err
*errp
;
352 (struct ct_data
*) h
->cl_private
;
354 *errp
= ct
->ct_error
;
358 clnttcp_freeres (cl
, xdr_res
, res_ptr
)
363 struct ct_data
*ct
= (struct ct_data
*) cl
->cl_private
;
364 XDR
*xdrs
= &(ct
->ct_xdrs
);
366 xdrs
->x_op
= XDR_FREE
;
367 return (*xdr_res
) (xdrs
, res_ptr
);
376 clnttcp_control (CLIENT
*cl
, int request
, char *info
)
378 struct ct_data
*ct
= (struct ct_data
*) cl
->cl_private
;
384 ct
->ct_closeit
= TRUE
;
386 case CLSET_FD_NCLOSE
:
387 ct
->ct_closeit
= FALSE
;
390 ct
->ct_wait
= *(struct timeval
*) info
;
391 ct
->ct_waitset
= TRUE
;
394 *(struct timeval
*) info
= ct
->ct_wait
;
396 case CLGET_SERVER_ADDR
:
397 *(struct sockaddr_in
*) info
= ct
->ct_addr
;
400 *(int *)info
= ct
->ct_sock
;
404 * use the knowledge that xid is the
405 * first element in the call structure *.
406 * This will get the xid of the PREVIOUS call
408 *(u_long
*)info
= ntohl (*(u_long
*)ct
->ct_mcall
);
411 /* This will set the xid of the NEXT call */
412 *(u_long
*)ct
->ct_mcall
= htonl (*(u_long
*)info
- 1);
413 /* decrement by 1 as clnttcp_call() increments once */
416 * This RELIES on the information that, in the call body,
417 * the version number field is the fifth field from the
418 * begining of the RPC header. MUST be changed if the
419 * call_struct is changed
421 *(u_long
*)info
= ntohl (*(u_long
*)(ct
->ct_mcall
+
422 4 * BYTES_PER_XDR_UNIT
));
425 *(u_long
*)(ct
->ct_mcall
+ 4 * BYTES_PER_XDR_UNIT
)
426 = htonl (*(u_long
*)info
);
430 * This RELIES on the information that, in the call body,
431 * the program number field is the field from the
432 * begining of the RPC header. MUST be changed if the
433 * call_struct is changed
435 *(u_long
*)info
= ntohl(*(u_long
*)(ct
->ct_mcall
+
436 3 * BYTES_PER_XDR_UNIT
));
439 *(u_long
*)(ct
->ct_mcall
+ 3 * BYTES_PER_XDR_UNIT
)
440 = htonl(*(u_long
*)info
);
442 /* The following are only possible with TI-RPC */
443 case CLGET_RETRY_TIMEOUT
:
444 case CLSET_RETRY_TIMEOUT
:
447 case CLSET_PUSH_TIMOD
:
448 case CLSET_POP_TIMOD
:
457 clnttcp_destroy (CLIENT
*h
)
460 (struct ct_data
*) h
->cl_private
;
464 (void) __close (ct
->ct_sock
);
466 XDR_DESTROY (&(ct
->ct_xdrs
));
467 mem_free ((caddr_t
) ct
, sizeof (struct ct_data
));
468 mem_free ((caddr_t
) h
, sizeof (CLIENT
));
472 * Interface between xdr serializer and tcp connection.
473 * Behaves like the system calls, read & write, but keeps some error state
474 * around for the rpc level.
477 readtcp (char *ctptr
, char *buf
, int len
)
479 struct ct_data
*ct
= (struct ct_data
*)ctptr
;
481 int milliseconds
= (ct
->ct_wait
.tv_sec
* 1000) +
482 (ct
->ct_wait
.tv_usec
/ 1000);
491 switch (__poll(&fd
, 1, milliseconds
))
494 ct
->ct_error
.re_status
= RPC_TIMEDOUT
;
500 ct
->ct_error
.re_status
= RPC_CANTRECV
;
501 ct
->ct_error
.re_errno
= errno
;
506 switch (len
= __read (ct
->ct_sock
, buf
, len
))
511 ct
->ct_error
.re_errno
= ECONNRESET
;
512 ct
->ct_error
.re_status
= RPC_CANTRECV
;
513 len
= -1; /* it's really an error */
517 ct
->ct_error
.re_errno
= errno
;
518 ct
->ct_error
.re_status
= RPC_CANTRECV
;
525 writetcp (char *ctptr
, char *buf
, int len
)
528 struct ct_data
*ct
= (struct ct_data
*)ctptr
;
530 for (cnt
= len
; cnt
> 0; cnt
-= i
, buf
+= i
)
532 if ((i
= __write (ct
->ct_sock
, buf
, cnt
)) == -1)
534 ct
->ct_error
.re_errno
= errno
;
535 ct
->ct_error
.re_status
= RPC_CANTSEND
;