OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [inet/] [rpc/] [clnt_simple.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
/* @(#)clnt_simple.c    2.2 88/08/01 4.0 RPCSRC */
2
/*
3
 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4
 * unrestricted use provided that this legend is included on all tape
5
 * media and as a part of the software program in whole or part.  Users
6
 * may copy or modify Sun RPC without charge, but are not authorized
7
 * to license or distribute it to anyone else except as part of a product or
8
 * program developed by the user.
9
 *
10
 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
11
 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
12
 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
13
 *
14
 * Sun RPC is provided with no support and without any obligation on the
15
 * part of Sun Microsystems, Inc. to assist in its use, correction,
16
 * modification or enhancement.
17
 *
18
 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
19
 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
20
 * OR ANY PART THEREOF.
21
 *
22
 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
23
 * or profits or other special, indirect and consequential damages, even if
24
 * Sun has been advised of the possibility of such damages.
25
 *
26
 * Sun Microsystems, Inc.
27
 * 2550 Garcia Avenue
28
 * Mountain View, California  94043
29
 */
30
#if 0
31
static char sccsid[] = "@(#)clnt_simple.c 1.35 87/08/11 Copyr 1984 Sun Micro";
32
#endif
33
 
34
/*
35
 * clnt_simple.c
36
 * Simplified front end to rpc.
37
 *
38
 * Copyright (C) 1984, Sun Microsystems, Inc.
39
 */
40
 
41
#define __FORCE_GLIBC
42
#include <features.h>
43
 
44
#include <alloca.h>
45
#include <errno.h>
46
#include <stdio.h>
47
#include <unistd.h>
48
#include "rpc_private.h"
49
#include <sys/socket.h>
50
#include <netdb.h>
51
#include <string.h>
52
 
53
struct callrpc_private_s
54
  {
55
    CLIENT *client;
56
    int socket;
57
    u_long oldprognum, oldversnum, valid;
58
    char *oldhost;
59
  };
60
#ifdef __UCLIBC_HAS_THREADS__
61
#define callrpc_private ((struct callrpc_private_s *)RPC_THREAD_VARIABLE(callrpc_private_s))
62
#else
63
static struct callrpc_private_s *callrpc_private;
64
#endif
65
 
66
int
67
callrpc (const char *host, u_long prognum, u_long versnum, u_long procnum,
68
         xdrproc_t inproc, const char *in, xdrproc_t outproc, char *out)
69
{
70
  struct callrpc_private_s *crp = callrpc_private;
71
  struct sockaddr_in server_addr;
72
  enum clnt_stat clnt_stat;
73
  struct hostent hostbuf, *hp;
74
  struct timeval timeout, tottimeout;
75
 
76
  if (crp == 0)
77
    {
78
      crp = (struct callrpc_private_s *) calloc (1, sizeof (*crp));
79
      if (crp == 0)
80
        return 0;
81
      callrpc_private = crp;
82
    }
83
  if (crp->oldhost == NULL)
84
    {
85
      crp->oldhost = malloc (256);
86
      crp->oldhost[0] = 0;
87
      crp->socket = RPC_ANYSOCK;
88
    }
89
  if (crp->valid && crp->oldprognum == prognum && crp->oldversnum == versnum
90
      && strcmp (crp->oldhost, host) == 0)
91
    {
92
      /* reuse old client */
93
    }
94
  else
95
    {
96
      size_t buflen;
97
      char *buffer;
98
      int herr;
99
 
100
      crp->valid = 0;
101
      if (crp->socket != RPC_ANYSOCK)
102
        {
103
          (void) close (crp->socket);
104
          crp->socket = RPC_ANYSOCK;
105
        }
106
      if (crp->client)
107
        {
108
          clnt_destroy (crp->client);
109
          crp->client = NULL;
110
        }
111
 
112
      buflen = 1024;
113
      buffer = alloca (buflen);
114
      while (gethostbyname_r (host, &hostbuf, buffer, buflen,
115
                                &hp, &herr) != 0
116
             || hp == NULL)
117
        if (herr != NETDB_INTERNAL || errno != ERANGE)
118
          return (int) RPC_UNKNOWNHOST;
119
        else
120
          {
121
            /* Enlarge the buffer.  */
122
            buflen *= 2;
123
            buffer = alloca (buflen);
124
          }
125
 
126
      timeout.tv_usec = 0;
127
      timeout.tv_sec = 5;
128
      memcpy ((char *) &server_addr.sin_addr, hp->h_addr, hp->h_length);
129
      server_addr.sin_family = AF_INET;
130
      server_addr.sin_port = 0;
131
      if ((crp->client = clntudp_create (&server_addr, (u_long) prognum,
132
                          (u_long) versnum, timeout, &crp->socket)) == NULL)
133
        return (int) get_rpc_createerr().cf_stat;
134
      crp->valid = 1;
135
      crp->oldprognum = prognum;
136
      crp->oldversnum = versnum;
137
      (void) strncpy (crp->oldhost, host, 255);
138
      crp->oldhost[255] = '\0';
139
    }
140
  tottimeout.tv_sec = 25;
141
  tottimeout.tv_usec = 0;
142
  clnt_stat = clnt_call (crp->client, procnum, inproc, (char *) in,
143
                         outproc, out, tottimeout);
144
  /*
145
   * if call failed, empty cache
146
   */
147
  if (clnt_stat != RPC_SUCCESS)
148
    crp->valid = 0;
149
  return (int) clnt_stat;
150
}
151
 
152
#ifdef __UCLIBC_HAS_THREADS__
153
void
154
__rpc_thread_clnt_cleanup (void)
155
{
156
        struct callrpc_private_s *rcp = RPC_THREAD_VARIABLE(callrpc_private_s);
157
 
158
        if (rcp) {
159
                if (rcp->client)
160
                        CLNT_DESTROY (rcp->client);
161
                free (rcp);
162
        }
163
}
164
#endif /* __UCLIBC_HAS_THREADS__ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.