Home | History | Annotate | Line # | Download | only in rpc
clnt_simple.c revision 1.22
      1  1.22     lukem /*	$NetBSD: clnt_simple.c,v 1.22 2001/01/04 14:42:19 lukem Exp $	*/
      2   1.3       cgd 
      3   1.1       cgd /*
      4   1.1       cgd  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
      5   1.1       cgd  * unrestricted use provided that this legend is included on all tape
      6   1.1       cgd  * media and as a part of the software program in whole or part.  Users
      7   1.1       cgd  * may copy or modify Sun RPC without charge, but are not authorized
      8   1.1       cgd  * to license or distribute it to anyone else except as part of a product or
      9   1.1       cgd  * program developed by the user.
     10   1.1       cgd  *
     11   1.1       cgd  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
     12   1.1       cgd  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
     13   1.1       cgd  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
     14   1.1       cgd  *
     15   1.1       cgd  * Sun RPC is provided with no support and without any obligation on the
     16   1.1       cgd  * part of Sun Microsystems, Inc. to assist in its use, correction,
     17   1.1       cgd  * modification or enhancement.
     18   1.1       cgd  *
     19   1.1       cgd  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
     20   1.1       cgd  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
     21   1.1       cgd  * OR ANY PART THEREOF.
     22   1.1       cgd  *
     23   1.1       cgd  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
     24   1.1       cgd  * or profits or other special, indirect and consequential damages, even if
     25   1.1       cgd  * Sun has been advised of the possibility of such damages.
     26   1.1       cgd  *
     27   1.1       cgd  * Sun Microsystems, Inc.
     28   1.1       cgd  * 2550 Garcia Avenue
     29   1.1       cgd  * Mountain View, California  94043
     30   1.1       cgd  */
     31  1.20      fvdl /*
     32  1.20      fvdl  * Copyright (c) 1986-1991 by Sun Microsystems Inc.
     33  1.20      fvdl  */
     34  1.20      fvdl 
     35  1.20      fvdl /* #ident	"@(#)clnt_simple.c	1.17	94/04/24 SMI" */
     36   1.1       cgd 
     37   1.8  christos #if 0
     38  1.20      fvdl #if !defined(lint) && defined(SCCSIDS)
     39  1.20      fvdl static char sccsid[] = "@(#)clnt_simple.c 1.49 89/01/31 Copyr 1984 Sun Micro";
     40   1.8  christos #endif
     41   1.1       cgd #endif
     42   1.1       cgd 
     43  1.20      fvdl /*
     44   1.1       cgd  * clnt_simple.c
     45  1.20      fvdl  * Simplified front end to client rpc.
     46   1.1       cgd  *
     47   1.1       cgd  */
     48   1.1       cgd 
     49   1.9       jtc #include "namespace.h"
     50  1.20      fvdl #include "reentrant.h"
     51  1.20      fvdl #include <sys/param.h>
     52   1.1       cgd #include <stdio.h>
     53  1.22     lukem #include <assert.h>
     54  1.20      fvdl #include <errno.h>
     55  1.20      fvdl #include <rpc/rpc.h>
     56  1.20      fvdl #include <string.h>
     57   1.1       cgd #include <stdlib.h>
     58  1.20      fvdl #include <fcntl.h>
     59   1.8  christos #include <unistd.h>
     60  1.12     lukem 
     61  1.20      fvdl #ifdef __weak_alias
     62  1.20      fvdl __weak_alias(rpc_call,_rpc_call)
     63  1.20      fvdl #endif
     64  1.20      fvdl 
     65  1.20      fvdl #ifndef MAXHOSTNAMELEN
     66  1.20      fvdl #define	MAXHOSTNAMELEN 64
     67  1.20      fvdl #endif
     68  1.20      fvdl 
     69  1.20      fvdl #ifndef NETIDLEN
     70  1.20      fvdl #define	NETIDLEN 32
     71  1.20      fvdl #endif
     72  1.20      fvdl 
     73  1.20      fvdl struct rpc_call_private {
     74  1.20      fvdl 	int	valid;			/* Is this entry valid ? */
     75  1.20      fvdl 	CLIENT	*client;		/* Client handle */
     76  1.20      fvdl 	pid_t	pid;			/* process-id at moment of creation */
     77  1.20      fvdl 	rpcprog_t prognum;		/* Program */
     78  1.20      fvdl 	rpcvers_t versnum;		/* Version */
     79  1.20      fvdl 	char	host[MAXHOSTNAMELEN];	/* Servers host */
     80  1.20      fvdl 	char	nettype[NETIDLEN];	/* Network type */
     81  1.20      fvdl };
     82  1.20      fvdl static struct rpc_call_private *rpc_call_private_main;
     83  1.20      fvdl 
     84  1.20      fvdl #ifdef __REENT
     85  1.20      fvdl static void rpc_call_destroy __P((void *));
     86  1.20      fvdl 
     87  1.20      fvdl static void
     88  1.20      fvdl rpc_call_destroy(void *vp)
     89  1.20      fvdl {
     90  1.21  christos 	struct rpc_call_private *rcp = (struct rpc_call_private *)vp;
     91   1.9       jtc 
     92  1.20      fvdl 	if (rcp) {
     93  1.20      fvdl 		if (rcp->client)
     94  1.20      fvdl 			CLNT_DESTROY(rcp->client);
     95  1.20      fvdl 		free(rcp);
     96  1.20      fvdl 	}
     97  1.20      fvdl }
     98   1.9       jtc #endif
     99   1.1       cgd 
    100  1.20      fvdl /*
    101  1.20      fvdl  * This is the simplified interface to the client rpc layer.
    102  1.20      fvdl  * The client handle is not destroyed here and is reused for
    103  1.20      fvdl  * the future calls to same prog, vers, host and nettype combination.
    104  1.20      fvdl  *
    105  1.20      fvdl  * The total time available is 25 seconds.
    106  1.20      fvdl  */
    107  1.20      fvdl enum clnt_stat
    108  1.20      fvdl rpc_call(host, prognum, versnum, procnum, inproc, in, outproc, out, nettype)
    109  1.20      fvdl 	const char *host;			/* host name */
    110  1.20      fvdl 	rpcprog_t prognum;			/* program number */
    111  1.20      fvdl 	rpcvers_t versnum;			/* version number */
    112  1.20      fvdl 	rpcproc_t procnum;			/* procedure number */
    113  1.20      fvdl 	xdrproc_t inproc, outproc;	/* in/out XDR procedures */
    114  1.20      fvdl 	const char *in;
    115  1.20      fvdl 	char  *out;			/* recv/send data */
    116  1.20      fvdl 	const char *nettype;			/* nettype */
    117   1.1       cgd {
    118  1.20      fvdl 	struct rpc_call_private *rcp = (struct rpc_call_private *) 0;
    119   1.1       cgd 	enum clnt_stat clnt_stat;
    120   1.1       cgd 	struct timeval timeout, tottimeout;
    121  1.20      fvdl #ifdef __REENT
    122  1.20      fvdl 	static thread_key_t rpc_call_key;
    123  1.20      fvdl 	extern mutex_t tsd_lock;
    124  1.20      fvdl #endif
    125  1.20      fvdl 	int main_thread = 1;
    126  1.22     lukem 
    127  1.22     lukem 	_DIAGASSERT(host != NULL);
    128  1.22     lukem 	/* XXX: in may be NULL ??? */
    129  1.22     lukem 	/* XXX: out may be NULL ??? */
    130  1.22     lukem 	/* XXX: nettype may be NULL ??? */
    131  1.17     lukem 
    132  1.20      fvdl #ifdef __REENT
    133  1.20      fvdl 	if ((main_thread = _thr_main())) {
    134  1.20      fvdl 		rcp = rpc_call_private_main;
    135  1.20      fvdl 	} else {
    136  1.20      fvdl 		if (rpc_call_key == 0) {
    137  1.20      fvdl 			mutex_lock(&tsd_lock);
    138  1.20      fvdl 			if (rpc_call_key == 0)
    139  1.20      fvdl 				thr_keycreate(&rpc_call_key, rpc_call_destroy);
    140  1.20      fvdl 			mutex_unlock(&tsd_lock);
    141  1.20      fvdl 		}
    142  1.20      fvdl 		thr_getspecific(rpc_call_key, (void **) &rcp);
    143   1.1       cgd 	}
    144  1.20      fvdl #else
    145  1.20      fvdl 	rcp = rpc_call_private_main;
    146  1.20      fvdl #endif
    147  1.21  christos 	if (rcp == NULL) {
    148  1.21  christos 		rcp = malloc(sizeof (*rcp));
    149  1.21  christos 		if (rcp == NULL) {
    150  1.20      fvdl 			rpc_createerr.cf_stat = RPC_SYSTEMERROR;
    151  1.20      fvdl 			rpc_createerr.cf_error.re_errno = errno;
    152  1.20      fvdl 			return (rpc_createerr.cf_stat);
    153  1.20      fvdl 		}
    154  1.20      fvdl 		if (main_thread)
    155  1.20      fvdl 			rpc_call_private_main = rcp;
    156  1.20      fvdl 		else
    157  1.20      fvdl 			thr_setspecific(rpc_call_key, (void *) rcp);
    158  1.20      fvdl 		rcp->valid = 0;
    159  1.20      fvdl 		rcp->client = NULL;
    160   1.1       cgd 	}
    161  1.20      fvdl 	if ((nettype == NULL) || (nettype[0] == NULL))
    162  1.20      fvdl 		nettype = "netpath";
    163  1.20      fvdl 	if (!(rcp->valid && rcp->pid == getpid() &&
    164  1.20      fvdl 		(rcp->prognum == prognum) &&
    165  1.20      fvdl 		(rcp->versnum == versnum) &&
    166  1.20      fvdl 		(!strcmp(rcp->host, host)) &&
    167  1.20      fvdl 		(!strcmp(rcp->nettype, nettype)))) {
    168  1.20      fvdl 		int fd;
    169  1.20      fvdl 
    170  1.20      fvdl 		rcp->valid = 0;
    171  1.20      fvdl 		if (rcp->client)
    172  1.20      fvdl 			CLNT_DESTROY(rcp->client);
    173  1.20      fvdl 		/*
    174  1.20      fvdl 		 * Using the first successful transport for that type
    175  1.20      fvdl 		 */
    176  1.20      fvdl 		rcp->client = clnt_create(host, prognum, versnum, nettype);
    177  1.20      fvdl 		rcp->pid = getpid();
    178  1.21  christos 		if (rcp->client == NULL) {
    179  1.20      fvdl 			return (rpc_createerr.cf_stat);
    180   1.1       cgd 		}
    181  1.20      fvdl 		/*
    182  1.20      fvdl 		 * Set time outs for connectionless case.  Do it
    183  1.20      fvdl 		 * unconditionally.  Faster than doing a t_getinfo()
    184  1.20      fvdl 		 * and then doing the right thing.
    185  1.20      fvdl 		 */
    186   1.1       cgd 		timeout.tv_usec = 0;
    187   1.1       cgd 		timeout.tv_sec = 5;
    188  1.20      fvdl 		(void) CLNT_CONTROL(rcp->client,
    189  1.21  christos 				CLSET_RETRY_TIMEOUT, (char *)(void *)&timeout);
    190  1.21  christos 		if (CLNT_CONTROL(rcp->client, CLGET_FD, (char *)(void *)&fd))
    191  1.20      fvdl 			fcntl(fd, F_SETFD, 1);	/* make it "close on exec" */
    192  1.20      fvdl 		rcp->prognum = prognum;
    193  1.20      fvdl 		rcp->versnum = versnum;
    194  1.20      fvdl 		if ((strlen(host) < (size_t)MAXHOSTNAMELEN) &&
    195  1.20      fvdl 		    (strlen(nettype) < (size_t)NETIDLEN)) {
    196  1.20      fvdl 			(void) strcpy(rcp->host, host);
    197  1.20      fvdl 			(void) strcpy(rcp->nettype, nettype);
    198  1.20      fvdl 			rcp->valid = 1;
    199  1.20      fvdl 		} else {
    200  1.20      fvdl 			rcp->valid = 0;
    201  1.20      fvdl 		}
    202  1.20      fvdl 	} /* else reuse old client */
    203   1.1       cgd 	tottimeout.tv_sec = 25;
    204   1.1       cgd 	tottimeout.tv_usec = 0;
    205  1.21  christos 	/*LINTED const castaway*/
    206  1.21  christos 	clnt_stat = CLNT_CALL(rcp->client, procnum, inproc, (char *) in,
    207  1.21  christos 	    outproc, out, tottimeout);
    208  1.20      fvdl 	/*
    209   1.1       cgd 	 * if call failed, empty cache
    210   1.1       cgd 	 */
    211   1.1       cgd 	if (clnt_stat != RPC_SUCCESS)
    212  1.20      fvdl 		rcp->valid = 0;
    213  1.20      fvdl 	return (clnt_stat);
    214   1.1       cgd }
    215