clnt_simple.c revision 1.6.2.1 1 /* $NetBSD: clnt_simple.c,v 1.6.2.1 1996/09/16 23:44:22 jtc Exp $ */
2
3 /*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or
9 * program developed by the user.
10 *
11 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
12 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
13 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 *
15 * Sun RPC is provided with no support and without any obligation on the
16 * part of Sun Microsystems, Inc. to assist in its use, correction,
17 * modification or enhancement.
18 *
19 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
20 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
21 * OR ANY PART THEREOF.
22 *
23 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
24 * or profits or other special, indirect and consequential damages, even if
25 * Sun has been advised of the possibility of such damages.
26 *
27 * Sun Microsystems, Inc.
28 * 2550 Garcia Avenue
29 * Mountain View, California 94043
30 */
31
32 #if defined(LIBC_SCCS) && !defined(lint)
33 /*static char *sccsid = "from: @(#)clnt_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";*/
34 /*static char *sccsid = "from: @(#)clnt_simple.c 2.2 88/08/01 4.0 RPCSRC";*/
35 static char *rcsid = "$NetBSD: clnt_simple.c,v 1.6.2.1 1996/09/16 23:44:22 jtc Exp $";
36 #endif
37
38 /*
39 * clnt_simple.c
40 * Simplified front end to rpc.
41 *
42 * Copyright (C) 1984, Sun Microsystems, Inc.
43 */
44
45 #include "namespace.h"
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include <rpc/rpc.h>
50 #include <sys/socket.h>
51 #include <netdb.h>
52
53 #ifdef __weak_alias
54 __weak_alias(callrpc,_callrpc);
55 #endif
56
57 static struct callrpc_private {
58 CLIENT *client;
59 int socket;
60 int oldprognum, oldversnum, valid;
61 char *oldhost;
62 } *callrpc_private;
63
64 int
65 callrpc(host, prognum, versnum, procnum, inproc, in, outproc, out)
66 char *host;
67 xdrproc_t inproc, outproc;
68 char *in, *out;
69 {
70 register struct callrpc_private *crp = callrpc_private;
71 struct sockaddr_in server_addr;
72 enum clnt_stat clnt_stat;
73 struct hostent *hp;
74 struct timeval timeout, tottimeout;
75
76 if (crp == 0) {
77 crp = (struct callrpc_private *)calloc(1, sizeof (*crp));
78 if (crp == 0)
79 return (0);
80 callrpc_private = crp;
81 }
82 if (crp->oldhost == NULL) {
83 crp->oldhost = malloc(256);
84 crp->oldhost[0] = 0;
85 crp->socket = RPC_ANYSOCK;
86 }
87 if (crp->valid && crp->oldprognum == prognum && crp->oldversnum == versnum
88 && strcmp(crp->oldhost, host) == 0) {
89 /* reuse old client */
90 } else {
91 crp->valid = 0;
92 (void)close(crp->socket);
93 crp->socket = RPC_ANYSOCK;
94 if (crp->client) {
95 clnt_destroy(crp->client);
96 crp->client = NULL;
97 }
98 if ((hp = gethostbyname(host)) == NULL)
99 return ((int) RPC_UNKNOWNHOST);
100 timeout.tv_usec = 0;
101 timeout.tv_sec = 5;
102 memset(&server_addr, 0, sizeof(server_addr));
103 bcopy(hp->h_addr, (char *)&server_addr.sin_addr, hp->h_length);
104 server_addr.sin_len = sizeof(struct sockaddr_in);
105 server_addr.sin_family = AF_INET;
106 server_addr.sin_port = 0;
107 if ((crp->client = clntudp_create(&server_addr, (u_long)prognum,
108 (u_long)versnum, timeout, &crp->socket)) == NULL)
109 return ((int) rpc_createerr.cf_stat);
110 crp->valid = 1;
111 crp->oldprognum = prognum;
112 crp->oldversnum = versnum;
113 (void) strcpy(crp->oldhost, host);
114 }
115 tottimeout.tv_sec = 25;
116 tottimeout.tv_usec = 0;
117 clnt_stat = clnt_call(crp->client, procnum, inproc, in,
118 outproc, out, tottimeout);
119 /*
120 * if call failed, empty cache
121 */
122 if (clnt_stat != RPC_SUCCESS)
123 crp->valid = 0;
124 return ((int) clnt_stat);
125 }
126