source: rtems/cpukit/librpc/src/rpc/clnt_simple.c @ 33a105fb

4.115
Last change on this file since 33a105fb was 37da47a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/28/10 at 02:40:16

Add HAVE_CONFIG_H support to let files receive configure defines.

  • Property mode set to 100644
File size: 3.8 KB
Line 
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";*/
33static char *rcsid = "$FreeBSD: src/lib/libc/rpc/clnt_simple.c,v 1.12 2000/01/27 23:06:35 jasone Exp $";
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#ifdef HAVE_CONFIG_H
44#include "config.h"
45#endif
46
47#include <sys/param.h>
48#include <stdio.h>
49#include <stdlib.h>
50#include <unistd.h>
51#include <string.h>
52#include <rpc/rpc.h>
53#include <sys/socket.h>
54#include <netdb.h>
55
56struct call_rpc_private {
57        CLIENT  *client;
58        int     socket;
59        int     oldprognum, oldversnum, valid;
60        char    *oldhost;
61};
62#define callrpc_private (rtems_rpc_task_variables->call_rpc_private)
63
64int
65callrpc(
66        char *host,
67        int prognum, int versnum, int procnum,
68        xdrproc_t inproc, char *in,
69        xdrproc_t outproc, char *out )
70{
71        register struct call_rpc_private *crp = callrpc_private;
72        struct sockaddr_in server_addr;
73        enum clnt_stat clnt_stat;
74        struct hostent *hp;
75        struct timeval timeout, tottimeout;
76
77        if (crp == 0) {
78                crp = (struct call_rpc_private *)calloc(1, sizeof (*crp));
79                if (crp == 0)
80                        return (0);
81                callrpc_private = crp;
82        }
83        if (crp->oldhost == NULL) {
84                crp->oldhost = malloc(MAXHOSTNAMELEN);
85                crp->oldhost[0] = 0;
86                crp->socket = RPC_ANYSOCK;
87        }
88        if (crp->valid && crp->oldprognum == prognum && crp->oldversnum == versnum
89                && strcmp(crp->oldhost, host) == 0) {
90                /* reuse old client */
91        } else {
92                crp->valid = 0;
93                if (crp->socket != -1)
94                        (void)_RPC_close(crp->socket);
95                crp->socket = RPC_ANYSOCK;
96                if (crp->client) {
97                        clnt_destroy(crp->client);
98                        crp->client = NULL;
99                }
100                if ((hp = gethostbyname(host)) == NULL)
101                        return ((int) RPC_UNKNOWNHOST);
102                timeout.tv_usec = 0;
103                timeout.tv_sec = 5;
104                memset(&server_addr, 0, sizeof(server_addr));
105                memcpy((char *)&server_addr.sin_addr, hp->h_addr, hp->h_length);
106                server_addr.sin_len = sizeof(struct sockaddr_in);
107                server_addr.sin_family = AF_INET;
108                server_addr.sin_port =  0;
109                if ((crp->client = clntudp_create(&server_addr, (u_long)prognum,
110                    (u_long)versnum, timeout, &crp->socket)) == NULL)
111                        return ((int) rpc_createerr.cf_stat);
112                crp->valid = 1;
113                crp->oldprognum = prognum;
114                crp->oldversnum = versnum;
115                (void) strcpy(crp->oldhost, host);
116        }
117        tottimeout.tv_sec = 25;
118        tottimeout.tv_usec = 0;
119        clnt_stat = clnt_call(crp->client, procnum, inproc, in,
120            outproc, out, tottimeout);
121        /*
122         * if call failed, empty cache
123         */
124        if (clnt_stat != RPC_SUCCESS)
125                crp->valid = 0;
126        return ((int) clnt_stat);
127}
Note: See TracBrowser for help on using the repository browser.