clnt_raw.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /* @(#)clnt_raw.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_raw.c 1.22 87/08/11 Copyr 1984 Sun Micro";
  32. #endif
  33. /*
  34. * clnt_raw.c
  35. *
  36. * Copyright (C) 1984, Sun Microsystems, Inc.
  37. *
  38. * Memory based rpc for simple testing and timing.
  39. * Interface to create an rpc client and server in the same process.
  40. * This lets us simulate rpc and get round trip overhead, without
  41. * any interference from the kernel.
  42. */
  43. #define authnone_create __authnone_create
  44. #define __FORCE_GLIBC
  45. #include <features.h>
  46. #include "rpc_private.h"
  47. #include <rpc/svc.h>
  48. #include <rpc/xdr.h>
  49. #define MCALL_MSG_SIZE 24
  50. /*
  51. * This is the "network" we will be moving stuff over.
  52. */
  53. struct clntraw_private_s
  54. {
  55. CLIENT client_object;
  56. XDR xdr_stream;
  57. char _raw_buf[UDPMSGSIZE];
  58. char mashl_callmsg[MCALL_MSG_SIZE];
  59. u_int mcnt;
  60. };
  61. #ifdef __UCLIBC_HAS_THREADS__
  62. #define clntraw_private (*(struct clntraw_private_s **)&RPC_THREAD_VARIABLE(clntraw_private_s))
  63. #else
  64. static struct clntraw_private_s *clntraw_private;
  65. #endif
  66. static enum clnt_stat clntraw_call (CLIENT *, u_long, xdrproc_t, caddr_t,
  67. xdrproc_t, caddr_t, struct timeval);
  68. static void clntraw_abort (void);
  69. static void clntraw_geterr (CLIENT *, struct rpc_err *);
  70. static bool_t clntraw_freeres (CLIENT *, xdrproc_t, caddr_t);
  71. static bool_t clntraw_control (CLIENT *, int, char *);
  72. static void clntraw_destroy (CLIENT *);
  73. static struct clnt_ops client_ops =
  74. {
  75. clntraw_call,
  76. clntraw_abort,
  77. clntraw_geterr,
  78. clntraw_freeres,
  79. clntraw_destroy,
  80. clntraw_control
  81. };
  82. /*
  83. * Create a client handle for memory based rpc.
  84. */
  85. CLIENT *
  86. clntraw_create (u_long prog, u_long vers)
  87. {
  88. struct clntraw_private_s *clp = clntraw_private;
  89. struct rpc_msg call_msg;
  90. XDR *xdrs = &clp->xdr_stream;
  91. CLIENT *client = &clp->client_object;
  92. if (clp == 0)
  93. {
  94. clp = (struct clntraw_private_s *) calloc (1, sizeof (*clp));
  95. if (clp == 0)
  96. return (0);
  97. clntraw_private = clp;
  98. }
  99. /*
  100. * pre-serialize the static part of the call msg and stash it away
  101. */
  102. call_msg.rm_direction = CALL;
  103. call_msg.rm_call.cb_rpcvers = RPC_MSG_VERSION;
  104. call_msg.rm_call.cb_prog = prog;
  105. call_msg.rm_call.cb_vers = vers;
  106. xdrmem_create (xdrs, clp->mashl_callmsg, MCALL_MSG_SIZE, XDR_ENCODE);
  107. if (!xdr_callhdr (xdrs, &call_msg))
  108. {
  109. perror (_ ("clnt_raw.c - Fatal header serialization error."));
  110. }
  111. clp->mcnt = XDR_GETPOS (xdrs);
  112. XDR_DESTROY (xdrs);
  113. /*
  114. * Set xdrmem for client/server shared buffer
  115. */
  116. xdrmem_create (xdrs, clp->_raw_buf, UDPMSGSIZE, XDR_FREE);
  117. /*
  118. * create client handle
  119. */
  120. client->cl_ops = &client_ops;
  121. client->cl_auth = authnone_create ();
  122. return client;
  123. }
  124. static enum clnt_stat
  125. clntraw_call (h, proc, xargs, argsp, xresults, resultsp, timeout)
  126. CLIENT *h;
  127. u_long proc;
  128. xdrproc_t xargs;
  129. caddr_t argsp;
  130. xdrproc_t xresults;
  131. caddr_t resultsp;
  132. struct timeval timeout;
  133. {
  134. struct clntraw_private_s *clp = clntraw_private;
  135. XDR *xdrs = &clp->xdr_stream;
  136. struct rpc_msg msg;
  137. enum clnt_stat status;
  138. struct rpc_err error;
  139. if (clp == NULL)
  140. return RPC_FAILED;
  141. call_again:
  142. /*
  143. * send request
  144. */
  145. xdrs->x_op = XDR_ENCODE;
  146. XDR_SETPOS (xdrs, 0);
  147. ((struct rpc_msg *) clp->mashl_callmsg)->rm_xid++;
  148. if ((!XDR_PUTBYTES (xdrs, clp->mashl_callmsg, clp->mcnt)) ||
  149. (!XDR_PUTLONG (xdrs, (long *) &proc)) ||
  150. (!AUTH_MARSHALL (h->cl_auth, xdrs)) ||
  151. (!(*xargs) (xdrs, argsp)))
  152. {
  153. return (RPC_CANTENCODEARGS);
  154. }
  155. (void) XDR_GETPOS (xdrs); /* called just to cause overhead */
  156. /*
  157. * We have to call server input routine here because this is
  158. * all going on in one process. Yuk.
  159. */
  160. svc_getreq (1);
  161. /*
  162. * get results
  163. */
  164. xdrs->x_op = XDR_DECODE;
  165. XDR_SETPOS (xdrs, 0);
  166. msg.acpted_rply.ar_verf = _null_auth;
  167. msg.acpted_rply.ar_results.where = resultsp;
  168. msg.acpted_rply.ar_results.proc = xresults;
  169. if (!xdr_replymsg (xdrs, &msg))
  170. return RPC_CANTDECODERES;
  171. _seterr_reply (&msg, &error);
  172. status = error.re_status;
  173. if (status == RPC_SUCCESS)
  174. {
  175. if (!AUTH_VALIDATE (h->cl_auth, &msg.acpted_rply.ar_verf))
  176. {
  177. status = RPC_AUTHERROR;
  178. }
  179. } /* end successful completion */
  180. else
  181. {
  182. if (AUTH_REFRESH (h->cl_auth))
  183. goto call_again;
  184. } /* end of unsuccessful completion */
  185. if (status == RPC_SUCCESS)
  186. {
  187. if (!AUTH_VALIDATE (h->cl_auth, &msg.acpted_rply.ar_verf))
  188. {
  189. status = RPC_AUTHERROR;
  190. }
  191. if (msg.acpted_rply.ar_verf.oa_base != NULL)
  192. {
  193. xdrs->x_op = XDR_FREE;
  194. (void) xdr_opaque_auth (xdrs, &(msg.acpted_rply.ar_verf));
  195. }
  196. }
  197. return status;
  198. }
  199. static void
  200. clntraw_geterr (CLIENT *cl, struct rpc_err *err)
  201. {
  202. }
  203. static bool_t
  204. clntraw_freeres (cl, xdr_res, res_ptr)
  205. CLIENT *cl;
  206. xdrproc_t xdr_res;
  207. caddr_t res_ptr;
  208. {
  209. struct clntraw_private_s *clp = clntraw_private;
  210. XDR *xdrs = &clp->xdr_stream;
  211. bool_t rval;
  212. if (clp == NULL)
  213. {
  214. rval = (bool_t) RPC_FAILED;
  215. return rval;
  216. }
  217. xdrs->x_op = XDR_FREE;
  218. return (*xdr_res) (xdrs, res_ptr);
  219. }
  220. static void
  221. clntraw_abort (void)
  222. {
  223. }
  224. static bool_t
  225. clntraw_control (CLIENT *cl, int i, char *c)
  226. {
  227. return FALSE;
  228. }
  229. static void
  230. clntraw_destroy (CLIENT *cl)
  231. {
  232. }