clnt_simple.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /* @(#)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. * clnt_simple.c
  35. * Simplified front end to rpc.
  36. *
  37. * Copyright (C) 1984, Sun Microsystems, Inc.
  38. */
  39. #include <alloca.h>
  40. #include <errno.h>
  41. #include <stdio.h>
  42. #include <unistd.h>
  43. #include "rpc_private.h"
  44. #include <sys/socket.h>
  45. #include <netdb.h>
  46. #include <string.h>
  47. struct callrpc_private_s
  48. {
  49. CLIENT *client;
  50. int socket;
  51. u_long oldprognum, oldversnum, valid;
  52. char *oldhost;
  53. };
  54. #ifdef __UCLIBC_HAS_THREADS__
  55. #define callrpc_private (*(struct callrpc_private_s **)&RPC_THREAD_VARIABLE(callrpc_private_s))
  56. #else
  57. static struct callrpc_private_s *callrpc_private;
  58. #endif
  59. int
  60. callrpc (const char *host, u_long prognum, u_long versnum, u_long procnum,
  61. xdrproc_t inproc, const char *in, xdrproc_t outproc, char *out)
  62. {
  63. struct callrpc_private_s *crp = callrpc_private;
  64. struct sockaddr_in server_addr;
  65. enum clnt_stat clnt_stat;
  66. struct hostent hostbuf, *hp;
  67. struct timeval timeout, tottimeout;
  68. if (crp == 0)
  69. {
  70. crp = (struct callrpc_private_s *) calloc (1, sizeof (*crp));
  71. if (crp == 0)
  72. return 0;
  73. callrpc_private = crp;
  74. }
  75. if (crp->oldhost == NULL)
  76. {
  77. crp->oldhost = malloc (256);
  78. crp->oldhost[0] = 0;
  79. crp->socket = RPC_ANYSOCK;
  80. }
  81. if (crp->valid && crp->oldprognum == prognum && crp->oldversnum == versnum
  82. && strcmp (crp->oldhost, host) == 0)
  83. {
  84. /* reuse old client */
  85. }
  86. else
  87. {
  88. size_t buflen;
  89. char *buffer;
  90. int herr;
  91. crp->valid = 0;
  92. if (crp->socket != RPC_ANYSOCK)
  93. {
  94. (void) close (crp->socket);
  95. crp->socket = RPC_ANYSOCK;
  96. }
  97. if (crp->client)
  98. {
  99. clnt_destroy (crp->client);
  100. crp->client = NULL;
  101. }
  102. buflen = 1024;
  103. buffer = alloca (buflen);
  104. while (gethostbyname_r (host, &hostbuf, buffer, buflen,
  105. &hp, &herr) != 0
  106. || hp == NULL)
  107. if (herr != NETDB_INTERNAL || errno != ERANGE)
  108. return (int) RPC_UNKNOWNHOST;
  109. else
  110. {
  111. /* Enlarge the buffer. */
  112. buflen *= 2;
  113. buffer = alloca (buflen);
  114. }
  115. timeout.tv_usec = 0;
  116. timeout.tv_sec = 5;
  117. memcpy ((char *) &server_addr.sin_addr, hp->h_addr, hp->h_length);
  118. server_addr.sin_family = AF_INET;
  119. server_addr.sin_port = 0;
  120. if ((crp->client = clntudp_create (&server_addr, (u_long) prognum,
  121. (u_long) versnum, timeout, &crp->socket)) == NULL)
  122. return (int) get_rpc_createerr().cf_stat;
  123. crp->valid = 1;
  124. crp->oldprognum = prognum;
  125. crp->oldversnum = versnum;
  126. (void) strncpy (crp->oldhost, host, 255);
  127. crp->oldhost[255] = '\0';
  128. }
  129. tottimeout.tv_sec = 25;
  130. tottimeout.tv_usec = 0;
  131. clnt_stat = clnt_call (crp->client, procnum, inproc, (char *) in,
  132. outproc, out, tottimeout);
  133. /*
  134. * if call failed, empty cache
  135. */
  136. if (clnt_stat != RPC_SUCCESS)
  137. crp->valid = 0;
  138. return (int) clnt_stat;
  139. }
  140. #ifdef __UCLIBC_HAS_THREADS__
  141. void attribute_hidden __rpc_thread_clnt_cleanup (void)
  142. {
  143. struct callrpc_private_s *rcp = RPC_THREAD_VARIABLE(callrpc_private_s);
  144. if (rcp) {
  145. if (rcp->client)
  146. CLNT_DESTROY (rcp->client);
  147. free (rcp);
  148. }
  149. }
  150. #endif /* __UCLIBC_HAS_THREADS__ */