svc_raw.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /* @(#)svc_raw.c 2.1 88/07/29 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 !defined(lint) && defined(SCCSIDS)
  31. static char sccsid[] = "@(#)svc_raw.c 1.15 87/08/11 Copyr 1984 Sun Micro";
  32. #endif
  33. /*
  34. * svc_raw.c, This a toy for simple testing and timing.
  35. * Interface to create an rpc client and server in the same UNIX process.
  36. * This lets us similate rpc and get rpc (round trip) overhead, without
  37. * any interference from the kernal.
  38. *
  39. * Copyright (C) 1984, Sun Microsystems, Inc.
  40. */
  41. #include <rpc/rpc.h>
  42. /*
  43. * This is the "network" that we will be moving data over
  44. */
  45. static struct svcraw_private {
  46. char _raw_buf[UDPMSGSIZE];
  47. SVCXPRT server;
  48. XDR xdr_stream;
  49. char verf_body[MAX_AUTH_BYTES];
  50. } *svcraw_private;
  51. static bool_t svcraw_recv();
  52. static enum xprt_stat svcraw_stat();
  53. static bool_t svcraw_getargs();
  54. static bool_t svcraw_reply();
  55. static bool_t svcraw_freeargs();
  56. static void svcraw_destroy();
  57. static struct xp_ops server_ops = {
  58. svcraw_recv,
  59. svcraw_stat,
  60. svcraw_getargs,
  61. svcraw_reply,
  62. svcraw_freeargs,
  63. svcraw_destroy
  64. };
  65. SVCXPRT *
  66. svcraw_create()
  67. {
  68. register struct svcraw_private *srp = svcraw_private;
  69. if (srp == 0) {
  70. srp = (struct svcraw_private *)calloc(1, sizeof (*srp));
  71. if (srp == 0)
  72. return (0);
  73. }
  74. srp->server.xp_sock = 0;
  75. srp->server.xp_port = 0;
  76. srp->server.xp_ops = &server_ops;
  77. srp->server.xp_verf.oa_base = srp->verf_body;
  78. xdrmem_create(&srp->xdr_stream, srp->_raw_buf, UDPMSGSIZE, XDR_FREE);
  79. return (&srp->server);
  80. }
  81. static enum xprt_stat
  82. svcraw_stat()
  83. {
  84. return (XPRT_IDLE);
  85. }
  86. static bool_t
  87. svcraw_recv(xprt, msg)
  88. SVCXPRT *xprt;
  89. struct rpc_msg *msg;
  90. {
  91. register struct svcraw_private *srp = svcraw_private;
  92. register XDR *xdrs;
  93. if (srp == 0)
  94. return (0);
  95. xdrs = &srp->xdr_stream;
  96. xdrs->x_op = XDR_DECODE;
  97. XDR_SETPOS(xdrs, 0);
  98. if (! xdr_callmsg(xdrs, msg))
  99. return (FALSE);
  100. return (TRUE);
  101. }
  102. static bool_t
  103. svcraw_reply(xprt, msg)
  104. SVCXPRT *xprt;
  105. struct rpc_msg *msg;
  106. {
  107. register struct svcraw_private *srp = svcraw_private;
  108. register XDR *xdrs;
  109. if (srp == 0)
  110. return (FALSE);
  111. xdrs = &srp->xdr_stream;
  112. xdrs->x_op = XDR_ENCODE;
  113. XDR_SETPOS(xdrs, 0);
  114. if (! xdr_replymsg(xdrs, msg))
  115. return (FALSE);
  116. (void)XDR_GETPOS(xdrs); /* called just for overhead */
  117. return (TRUE);
  118. }
  119. static bool_t
  120. svcraw_getargs(xprt, xdr_args, args_ptr)
  121. SVCXPRT *xprt;
  122. xdrproc_t xdr_args;
  123. caddr_t args_ptr;
  124. {
  125. register struct svcraw_private *srp = svcraw_private;
  126. if (srp == 0)
  127. return (FALSE);
  128. return ((*xdr_args)(&srp->xdr_stream, args_ptr));
  129. }
  130. static bool_t
  131. svcraw_freeargs(xprt, xdr_args, args_ptr)
  132. SVCXPRT *xprt;
  133. xdrproc_t xdr_args;
  134. caddr_t args_ptr;
  135. {
  136. register struct svcraw_private *srp = svcraw_private;
  137. register XDR *xdrs;
  138. if (srp == 0)
  139. return (FALSE);
  140. xdrs = &srp->xdr_stream;
  141. xdrs->x_op = XDR_FREE;
  142. return ((*xdr_args)(xdrs, args_ptr));
  143. }
  144. static void
  145. svcraw_destroy()
  146. {
  147. }