svc_raw.c 4.3 KB

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