1 /* @(#)clnt_simple.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_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";
36 * Simplified front end to rpc.
38 * Copyright (C) 1984, Sun Microsystems, Inc.
46 #include <sys/socket.h>
50 struct callrpc_private_s
54 u_long oldprognum
, oldversnum
, valid
;
57 #ifdef _RPC_THREAD_SAFE_
58 #define callrpc_private RPC_THREAD_VARIABLE(callrpc_private_s)
60 static struct callrpc_private_s
*callrpc_private
;
64 callrpc (const char *host
, u_long prognum
, u_long versnum
, u_long procnum
,
65 xdrproc_t inproc
, const char *in
, xdrproc_t outproc
, char *out
)
67 struct callrpc_private_s
*crp
= callrpc_private
;
68 struct sockaddr_in server_addr
;
69 enum clnt_stat clnt_stat
;
70 struct hostent hostbuf
, *hp
;
71 struct timeval timeout
, tottimeout
;
75 crp
= (struct callrpc_private_s
*) calloc (1, sizeof (*crp
));
78 callrpc_private
= crp
;
80 if (crp
->oldhost
== NULL
)
82 crp
->oldhost
= malloc (256);
84 crp
->socket
= RPC_ANYSOCK
;
86 if (crp
->valid
&& crp
->oldprognum
== prognum
&& crp
->oldversnum
== versnum
87 && strcmp (crp
->oldhost
, host
) == 0)
89 /* reuse old client */
98 if (crp
->socket
!= RPC_ANYSOCK
)
100 (void) __close (crp
->socket
);
101 crp
->socket
= RPC_ANYSOCK
;
105 clnt_destroy (crp
->client
);
110 buffer
= __alloca (buflen
);
111 while (__gethostbyname_r (host
, &hostbuf
, buffer
, buflen
,
114 if (herr
!= NETDB_INTERNAL
|| errno
!= ERANGE
)
115 return (int) RPC_UNKNOWNHOST
;
118 /* Enlarge the buffer. */
120 buffer
= __alloca (buflen
);
125 memcpy ((char *) &server_addr
.sin_addr
, hp
->h_addr
, hp
->h_length
);
126 server_addr
.sin_family
= AF_INET
;
127 server_addr
.sin_port
= 0;
128 if ((crp
->client
= INTUSE(clntudp_create
) (&server_addr
, (u_long
) prognum
,
129 (u_long
) versnum
, timeout
, &crp
->socket
)) == NULL
)
130 return (int) get_rpc_createerr().cf_stat
;
132 crp
->oldprognum
= prognum
;
133 crp
->oldversnum
= versnum
;
134 (void) strncpy (crp
->oldhost
, host
, 255);
135 crp
->oldhost
[255] = '\0';
137 tottimeout
.tv_sec
= 25;
138 tottimeout
.tv_usec
= 0;
139 clnt_stat
= clnt_call (crp
->client
, procnum
, inproc
, (char *) in
,
140 outproc
, out
, tottimeout
);
142 * if call failed, empty cache
144 if (clnt_stat
!= RPC_SUCCESS
)
146 return (int) clnt_stat
;
149 #ifdef _RPC_THREAD_SAFE_
151 __rpc_thread_clnt_cleanup (void)
153 struct callrpc_private_s
*rcp
= RPC_THREAD_VARIABLE(callrpc_private_s
);
157 CLNT_DESTROY (rcp
->client
);
161 #endif /* _RPC_THREAD_SAFE_ */