xdr_mem.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /* @(#)xdr_mem.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. #define __FORCE_GLIBC__
  31. #include <features.h>
  32. /*
  33. * xdr_mem.h, XDR implementation using memory buffers.
  34. *
  35. * Copyright (C) 1984, Sun Microsystems, Inc.
  36. *
  37. * If you have some data to be interpreted as external data representation
  38. * or to be converted to external data representation in a memory buffer,
  39. * then this is the package for you.
  40. *
  41. */
  42. #include <rpc/types.h>
  43. #include <rpc/xdr.h>
  44. #include <netinet/in.h>
  45. static bool_t xdrmem_getlong();
  46. static bool_t xdrmem_putlong();
  47. static bool_t xdrmem_getbytes();
  48. static bool_t xdrmem_putbytes();
  49. static u_int xdrmem_getpos();
  50. static bool_t xdrmem_setpos();
  51. static long *xdrmem_inline();
  52. static void xdrmem_destroy();
  53. static struct xdr_ops xdrmem_ops = {
  54. xdrmem_getlong,
  55. xdrmem_putlong,
  56. xdrmem_getbytes,
  57. xdrmem_putbytes,
  58. xdrmem_getpos,
  59. xdrmem_setpos,
  60. xdrmem_inline,
  61. xdrmem_destroy
  62. };
  63. /*
  64. * The procedure xdrmem_create initializes a stream descriptor for a
  65. * memory buffer.
  66. */
  67. void xdrmem_create(xdrs, addr, size, op)
  68. register XDR *xdrs;
  69. caddr_t addr;
  70. u_int size;
  71. enum xdr_op op;
  72. {
  73. xdrs->x_op = op;
  74. xdrs->x_ops = &xdrmem_ops;
  75. xdrs->x_private = xdrs->x_base = addr;
  76. xdrs->x_handy = size;
  77. }
  78. static void xdrmem_destroy( /*xdrs */ )
  79. /*XDR *xdrs; */
  80. {
  81. }
  82. static bool_t xdrmem_getlong(xdrs, lp)
  83. register XDR *xdrs;
  84. long *lp;
  85. {
  86. if ((xdrs->x_handy -= sizeof(long)) < 0)
  87. return (FALSE);
  88. *lp = (long) ntohl((u_long) (*((long *) (xdrs->x_private))));
  89. xdrs->x_private += sizeof(long);
  90. return (TRUE);
  91. }
  92. static bool_t xdrmem_putlong(xdrs, lp)
  93. register XDR *xdrs;
  94. long *lp;
  95. {
  96. if ((xdrs->x_handy -= sizeof(long)) < 0)
  97. return (FALSE);
  98. *(long *) xdrs->x_private = (long) htonl((u_long) (*lp));
  99. xdrs->x_private += sizeof(long);
  100. return (TRUE);
  101. }
  102. static bool_t xdrmem_getbytes(xdrs, addr, len)
  103. register XDR *xdrs;
  104. caddr_t addr;
  105. register u_int len;
  106. {
  107. if ((xdrs->x_handy -= len) < 0)
  108. return (FALSE);
  109. bcopy(xdrs->x_private, addr, len);
  110. xdrs->x_private += len;
  111. return (TRUE);
  112. }
  113. static bool_t xdrmem_putbytes(xdrs, addr, len)
  114. register XDR *xdrs;
  115. caddr_t addr;
  116. register u_int len;
  117. {
  118. if ((xdrs->x_handy -= len) < 0)
  119. return (FALSE);
  120. bcopy(addr, xdrs->x_private, len);
  121. xdrs->x_private += len;
  122. return (TRUE);
  123. }
  124. static u_int xdrmem_getpos(xdrs)
  125. register XDR *xdrs;
  126. {
  127. return ((u_int) xdrs->x_private - (u_int) xdrs->x_base);
  128. }
  129. static bool_t xdrmem_setpos(xdrs, pos)
  130. register XDR *xdrs;
  131. u_int pos;
  132. {
  133. register caddr_t newaddr = xdrs->x_base + pos;
  134. register caddr_t lastaddr = xdrs->x_private + xdrs->x_handy;
  135. if ((long) newaddr > (long) lastaddr)
  136. return (FALSE);
  137. xdrs->x_private = newaddr;
  138. xdrs->x_handy = (int) lastaddr - (int) newaddr;
  139. return (TRUE);
  140. }
  141. static long *xdrmem_inline(xdrs, len)
  142. register XDR *xdrs;
  143. int len;
  144. {
  145. long *buf = 0;
  146. if (xdrs->x_handy >= len) {
  147. xdrs->x_handy -= len;
  148. buf = (long *) xdrs->x_private;
  149. xdrs->x_private += len;
  150. }
  151. return (buf);
  152. }