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