1998-02-10 07:54:22 +03:00
|
|
|
/* $NetBSD: clnt_simple.c,v 1.10 1998/02/10 04:54:29 lukem Exp $ */
|
1995-02-25 06:01:33 +03:00
|
|
|
|
1993-10-07 10:29:33 +03:00
|
|
|
/*
|
|
|
|
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
|
|
|
* unrestricted use provided that this legend is included on all tape
|
|
|
|
* media and as a part of the software program in whole or part. Users
|
|
|
|
* may copy or modify Sun RPC without charge, but are not authorized
|
|
|
|
* to license or distribute it to anyone else except as part of a product or
|
|
|
|
* program developed by the user.
|
|
|
|
*
|
|
|
|
* SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
|
|
|
|
* WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
|
|
|
|
*
|
|
|
|
* Sun RPC is provided with no support and without any obligation on the
|
|
|
|
* part of Sun Microsystems, Inc. to assist in its use, correction,
|
|
|
|
* modification or enhancement.
|
|
|
|
*
|
|
|
|
* SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
|
|
|
|
* INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
|
|
|
|
* OR ANY PART THEREOF.
|
|
|
|
*
|
|
|
|
* In no event will Sun Microsystems, Inc. be liable for any lost revenue
|
|
|
|
* or profits or other special, indirect and consequential damages, even if
|
|
|
|
* Sun has been advised of the possibility of such damages.
|
|
|
|
*
|
|
|
|
* Sun Microsystems, Inc.
|
|
|
|
* 2550 Garcia Avenue
|
|
|
|
* Mountain View, California 94043
|
|
|
|
*/
|
|
|
|
|
1997-07-14 00:13:02 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-10-07 10:29:33 +03:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1997-07-14 00:13:02 +04:00
|
|
|
#if 0
|
|
|
|
static char *sccsid = "@(#)clnt_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";
|
|
|
|
static char *sccsid = "@(#)clnt_simple.c 2.2 88/08/01 4.0 RPCSRC";
|
|
|
|
#else
|
1998-02-10 07:54:22 +03:00
|
|
|
__RCSID("$NetBSD: clnt_simple.c,v 1.10 1998/02/10 04:54:29 lukem Exp $");
|
1997-07-14 00:13:02 +04:00
|
|
|
#endif
|
1993-10-07 10:29:33 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* clnt_simple.c
|
|
|
|
* Simplified front end to rpc.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1984, Sun Microsystems, Inc.
|
|
|
|
*/
|
|
|
|
|
1997-07-21 18:06:24 +04:00
|
|
|
#include "namespace.h"
|
1998-02-10 07:54:22 +03:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
|
|
|
#include <netdb.h>
|
1993-10-07 10:29:33 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1997-07-14 00:13:02 +04:00
|
|
|
#include <unistd.h>
|
1998-02-10 07:54:22 +03:00
|
|
|
|
1993-10-07 10:29:33 +03:00
|
|
|
#include <rpc/rpc.h>
|
|
|
|
|
1997-07-21 18:06:24 +04:00
|
|
|
#ifdef __weak_alias
|
|
|
|
__weak_alias(callrpc,_callrpc);
|
|
|
|
#endif
|
|
|
|
|
1993-10-07 10:29:33 +03:00
|
|
|
static struct callrpc_private {
|
|
|
|
CLIENT *client;
|
|
|
|
int socket;
|
|
|
|
int oldprognum, oldversnum, valid;
|
|
|
|
char *oldhost;
|
|
|
|
} *callrpc_private;
|
|
|
|
|
1996-03-30 02:00:47 +03:00
|
|
|
int
|
1993-10-07 10:29:33 +03:00
|
|
|
callrpc(host, prognum, versnum, procnum, inproc, in, outproc, out)
|
1998-02-10 07:54:22 +03:00
|
|
|
const char *host;
|
|
|
|
u_int32_t prognum, versnum, procnum;
|
|
|
|
xdrproc_t inproc;
|
|
|
|
caddr_t in;
|
|
|
|
xdrproc_t outproc;
|
|
|
|
caddr_t out;
|
1993-10-07 10:29:33 +03:00
|
|
|
{
|
1998-02-10 07:54:22 +03:00
|
|
|
struct callrpc_private *crp = callrpc_private;
|
1993-10-07 10:29:33 +03:00
|
|
|
struct sockaddr_in server_addr;
|
|
|
|
enum clnt_stat clnt_stat;
|
|
|
|
struct hostent *hp;
|
|
|
|
struct timeval timeout, tottimeout;
|
|
|
|
|
1998-02-10 07:54:22 +03:00
|
|
|
if (crp == NULL) {
|
1993-10-07 10:29:33 +03:00
|
|
|
crp = (struct callrpc_private *)calloc(1, sizeof (*crp));
|
1998-02-10 07:54:22 +03:00
|
|
|
if (crp == NULL)
|
|
|
|
return (NULL);
|
1993-10-07 10:29:33 +03:00
|
|
|
callrpc_private = crp;
|
|
|
|
}
|
|
|
|
if (crp->oldhost == NULL) {
|
|
|
|
crp->oldhost = malloc(256);
|
|
|
|
crp->oldhost[0] = 0;
|
|
|
|
crp->socket = RPC_ANYSOCK;
|
|
|
|
}
|
|
|
|
if (crp->valid && crp->oldprognum == prognum && crp->oldversnum == versnum
|
|
|
|
&& strcmp(crp->oldhost, host) == 0) {
|
|
|
|
/* reuse old client */
|
|
|
|
} else {
|
|
|
|
crp->valid = 0;
|
|
|
|
(void)close(crp->socket);
|
|
|
|
crp->socket = RPC_ANYSOCK;
|
|
|
|
if (crp->client) {
|
|
|
|
clnt_destroy(crp->client);
|
|
|
|
crp->client = NULL;
|
|
|
|
}
|
|
|
|
if ((hp = gethostbyname(host)) == NULL)
|
|
|
|
return ((int) RPC_UNKNOWNHOST);
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
timeout.tv_sec = 5;
|
1995-04-14 23:48:20 +04:00
|
|
|
memset(&server_addr, 0, sizeof(server_addr));
|
1998-02-10 07:54:22 +03:00
|
|
|
memmove((char *)&server_addr.sin_addr, hp->h_addr,
|
|
|
|
hp->h_length);
|
1995-06-04 02:37:19 +04:00
|
|
|
server_addr.sin_len = sizeof(struct sockaddr_in);
|
1993-10-07 10:29:33 +03:00
|
|
|
server_addr.sin_family = AF_INET;
|
|
|
|
server_addr.sin_port = 0;
|
1998-02-10 07:54:22 +03:00
|
|
|
if ((crp->client = clntudp_create(&server_addr,
|
|
|
|
(u_int32_t)prognum, (u_int32_t)versnum, timeout,
|
|
|
|
&crp->socket)) == NULL)
|
1993-10-07 10:29:33 +03:00
|
|
|
return ((int) rpc_createerr.cf_stat);
|
|
|
|
crp->valid = 1;
|
|
|
|
crp->oldprognum = prognum;
|
|
|
|
crp->oldversnum = versnum;
|
1997-01-23 17:01:45 +03:00
|
|
|
(void)strncpy(crp->oldhost, host, 256 - 1);
|
1993-10-07 10:29:33 +03:00
|
|
|
}
|
|
|
|
tottimeout.tv_sec = 25;
|
|
|
|
tottimeout.tv_usec = 0;
|
|
|
|
clnt_stat = clnt_call(crp->client, procnum, inproc, in,
|
|
|
|
outproc, out, tottimeout);
|
|
|
|
/*
|
|
|
|
* if call failed, empty cache
|
|
|
|
*/
|
|
|
|
if (clnt_stat != RPC_SUCCESS)
|
|
|
|
crp->valid = 0;
|
|
|
|
return ((int) clnt_stat);
|
|
|
|
}
|