xdr_stdio.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  3. * unrestricted use provided that this legend is included on all tape
  4. * media and as a part of the software program in whole or part. Users
  5. * may copy or modify Sun RPC without charge, but are not authorized
  6. * to license or distribute it to anyone else except as part of a product or
  7. * program developed by the user.
  8. *
  9. * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  10. * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  11. * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  12. *
  13. * Sun RPC is provided with no support and without any obligation on the
  14. * part of Sun Microsystems, Inc. to assist in its use, correction,
  15. * modification or enhancement.
  16. *
  17. * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  18. * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  19. * OR ANY PART THEREOF.
  20. *
  21. * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  22. * or profits or other special, indirect and consequential damages, even if
  23. * Sun has been advised of the possibility of such damages.
  24. *
  25. * Sun Microsystems, Inc.
  26. * 2550 Garcia Avenue
  27. * Mountain View, California 94043
  28. */
  29. /*
  30. * xdr_stdio.c, XDR implementation on standard i/o file.
  31. *
  32. * Copyright (C) 1984, Sun Microsystems, Inc.
  33. *
  34. * This set of routines implements a XDR on a stdio stream.
  35. * XDR_ENCODE serializes onto the stream, XDR_DECODE de-serializes
  36. * from the stream.
  37. */
  38. #define fread __fread
  39. #define fwrite __fwrite
  40. #include <rpc/types.h>
  41. #include <stdio.h>
  42. #include <rpc/xdr.h>
  43. #ifdef USE_IN_LIBIO
  44. # include <libio/iolibio.h>
  45. # define fflush(s) _IO_fflush (s)
  46. # define fread(p, m, n, s) _IO_fread (p, m, n, s)
  47. # define ftell(s) _IO_ftell (s)
  48. # define fwrite(p, m, n, s) _IO_fwrite (p, m, n, s)
  49. #endif
  50. static bool_t xdrstdio_getlong (XDR *, long *);
  51. static bool_t xdrstdio_putlong (XDR *, const long *);
  52. static bool_t xdrstdio_getbytes (XDR *, caddr_t, u_int);
  53. static bool_t xdrstdio_putbytes (XDR *, const char *, u_int);
  54. static u_int xdrstdio_getpos (const XDR *);
  55. static bool_t xdrstdio_setpos (XDR *, u_int);
  56. static int32_t *xdrstdio_inline (XDR *, int);
  57. static void xdrstdio_destroy (XDR *);
  58. static bool_t xdrstdio_getint32 (XDR *, int32_t *);
  59. static bool_t xdrstdio_putint32 (XDR *, const int32_t *);
  60. /*
  61. * Ops vector for stdio type XDR
  62. */
  63. static const struct xdr_ops xdrstdio_ops =
  64. {
  65. xdrstdio_getlong, /* deserialize a long int */
  66. xdrstdio_putlong, /* serialize a long int */
  67. xdrstdio_getbytes, /* deserialize counted bytes */
  68. xdrstdio_putbytes, /* serialize counted bytes */
  69. xdrstdio_getpos, /* get offset in the stream */
  70. xdrstdio_setpos, /* set offset in the stream */
  71. xdrstdio_inline, /* prime stream for inline macros */
  72. xdrstdio_destroy, /* destroy stream */
  73. xdrstdio_getint32, /* deserialize a int */
  74. xdrstdio_putint32 /* serialize a int */
  75. };
  76. /*
  77. * Initialize a stdio xdr stream.
  78. * Sets the xdr stream handle xdrs for use on the stream file.
  79. * Operation flag is set to op.
  80. */
  81. void
  82. xdrstdio_create (XDR *xdrs, FILE *file, enum xdr_op op)
  83. {
  84. xdrs->x_op = op;
  85. /* We have to add the const since the `struct xdr_ops' in `struct XDR'
  86. is not `const'. */
  87. xdrs->x_ops = (struct xdr_ops *) &xdrstdio_ops;
  88. xdrs->x_private = (caddr_t) file;
  89. xdrs->x_handy = 0;
  90. xdrs->x_base = 0;
  91. }
  92. /*
  93. * Destroy a stdio xdr stream.
  94. * Cleans up the xdr stream handle xdrs previously set up by xdrstdio_create.
  95. */
  96. static void
  97. xdrstdio_destroy (XDR *xdrs)
  98. {
  99. (void) fflush ((FILE *) xdrs->x_private);
  100. /* xx should we close the file ?? */
  101. };
  102. static bool_t
  103. xdrstdio_getlong (XDR *xdrs, long *lp)
  104. {
  105. int32_t mycopy;
  106. if (fread ((caddr_t) & mycopy, 4, 1, (FILE *) xdrs->x_private) != 1)
  107. return FALSE;
  108. *lp = (int32_t) ntohl (mycopy);
  109. return TRUE;
  110. }
  111. static bool_t
  112. xdrstdio_putlong (XDR *xdrs, const long *lp)
  113. {
  114. long mycopy = htonl (*lp);
  115. lp = &mycopy;
  116. if (fwrite ((caddr_t) lp, 4, 1, (FILE *) xdrs->x_private) != 1)
  117. return FALSE;
  118. return TRUE;
  119. }
  120. static bool_t
  121. xdrstdio_getbytes (XDR *xdrs, const caddr_t addr, u_int len)
  122. {
  123. if ((len != 0) && (fread (addr, (int) len, 1,
  124. (FILE *) xdrs->x_private) != 1))
  125. return FALSE;
  126. return TRUE;
  127. }
  128. static bool_t
  129. xdrstdio_putbytes (XDR *xdrs, const char *addr, u_int len)
  130. {
  131. if ((len != 0) && (fwrite (addr, (int) len, 1,
  132. (FILE *) xdrs->x_private) != 1))
  133. return FALSE;
  134. return TRUE;
  135. }
  136. static u_int
  137. xdrstdio_getpos (const XDR *xdrs)
  138. {
  139. return (u_int) ftell ((FILE *) xdrs->x_private);
  140. }
  141. static bool_t
  142. xdrstdio_setpos (XDR *xdrs, u_int pos)
  143. {
  144. return fseek ((FILE *) xdrs->x_private, (long) pos, 0) < 0 ? FALSE : TRUE;
  145. }
  146. static int32_t *
  147. xdrstdio_inline (XDR *xdrs, int len)
  148. {
  149. /*
  150. * Must do some work to implement this: must insure
  151. * enough data in the underlying stdio buffer,
  152. * that the buffer is aligned so that we can indirect through a
  153. * long *, and stuff this pointer in xdrs->x_buf. Doing
  154. * a fread or fwrite to a scratch buffer would defeat
  155. * most of the gains to be had here and require storage
  156. * management on this buffer, so we don't do this.
  157. */
  158. return NULL;
  159. }
  160. static bool_t
  161. xdrstdio_getint32 (XDR *xdrs, int32_t *ip)
  162. {
  163. int32_t mycopy;
  164. if (fread ((caddr_t) &mycopy, 4, 1, (FILE *) xdrs->x_private) != 1)
  165. return FALSE;
  166. *ip = ntohl (mycopy);
  167. return TRUE;
  168. }
  169. static bool_t
  170. xdrstdio_putint32 (XDR *xdrs, const int32_t *ip)
  171. {
  172. int32_t mycopy = htonl (*ip);
  173. ip = &mycopy;
  174. if (fwrite ((caddr_t) ip, 4, 1, (FILE *) xdrs->x_private) != 1)
  175. return FALSE;
  176. return TRUE;
  177. }