xdr.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  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.h, External Data Representation Serialization Routines.
  31. *
  32. * Copyright (C) 1984, Sun Microsystems, Inc.
  33. */
  34. #ifndef _RPC_XDR_H
  35. #define _RPC_XDR_H 1
  36. #ifdef _LIBC
  37. # define _(X) X
  38. #endif
  39. #include <features.h>
  40. #include <sys/types.h>
  41. #include <rpc/types.h>
  42. /* We need FILE. */
  43. #include <stdio.h>
  44. __BEGIN_DECLS
  45. /*
  46. * XDR provides a conventional way for converting between C data
  47. * types and an external bit-string representation. Library supplied
  48. * routines provide for the conversion on built-in C data types. These
  49. * routines and utility routines defined here are used to help implement
  50. * a type encode/decode routine for each user-defined type.
  51. *
  52. * Each data type provides a single procedure which takes two arguments:
  53. *
  54. * bool_t
  55. * xdrproc(xdrs, argresp)
  56. * XDR *xdrs;
  57. * <type> *argresp;
  58. *
  59. * xdrs is an instance of a XDR handle, to which or from which the data
  60. * type is to be converted. argresp is a pointer to the structure to be
  61. * converted. The XDR handle contains an operation field which indicates
  62. * which of the operations (ENCODE, DECODE * or FREE) is to be performed.
  63. *
  64. * XDR_DECODE may allocate space if the pointer argresp is null. This
  65. * data can be freed with the XDR_FREE operation.
  66. *
  67. * We write only one procedure per data type to make it easy
  68. * to keep the encode and decode procedures for a data type consistent.
  69. * In many cases the same code performs all operations on a user defined type,
  70. * because all the hard work is done in the component type routines.
  71. * decode as a series of calls on the nested data types.
  72. */
  73. /*
  74. * Xdr operations. XDR_ENCODE causes the type to be encoded into the
  75. * stream. XDR_DECODE causes the type to be extracted from the stream.
  76. * XDR_FREE can be used to release the space allocated by an XDR_DECODE
  77. * request.
  78. */
  79. enum xdr_op {
  80. XDR_ENCODE = 0,
  81. XDR_DECODE = 1,
  82. XDR_FREE = 2
  83. };
  84. /*
  85. * This is the number of bytes per unit of external data.
  86. */
  87. #define BYTES_PER_XDR_UNIT (4)
  88. /*
  89. * This only works if the above is a power of 2. But it's defined to be
  90. * 4 by the appropriate RFCs. So it will work. And it's normally quicker
  91. * than the old routine.
  92. */
  93. #if 1
  94. #define RNDUP(x) (((x) + BYTES_PER_XDR_UNIT - 1) & ~(BYTES_PER_XDR_UNIT - 1))
  95. #else /* this is the old routine */
  96. #define RNDUP(x) ((((x) + BYTES_PER_XDR_UNIT - 1) / BYTES_PER_XDR_UNIT) \
  97. * BYTES_PER_XDR_UNIT)
  98. #endif
  99. /*
  100. * The XDR handle.
  101. * Contains operation which is being applied to the stream,
  102. * an operations vector for the particular implementation (e.g. see xdr_mem.c),
  103. * and two private fields for the use of the particular implementation.
  104. */
  105. typedef struct XDR XDR;
  106. struct XDR
  107. {
  108. enum xdr_op x_op; /* operation; fast additional param */
  109. struct xdr_ops
  110. {
  111. bool_t (*x_getlong) (XDR *__xdrs, long *__lp);
  112. /* get a long from underlying stream */
  113. bool_t (*x_putlong) (XDR *__xdrs, __const long *__lp);
  114. /* put a long to " */
  115. bool_t (*x_getbytes) (XDR *__xdrs, caddr_t __addr, u_int __len);
  116. /* get some bytes from " */
  117. bool_t (*x_putbytes) (XDR *__xdrs, __const char *__addr, u_int __len);
  118. /* put some bytes to " */
  119. u_int (*x_getpostn) (__const XDR *__xdrs);
  120. /* returns bytes off from beginning */
  121. bool_t (*x_setpostn) (XDR *__xdrs, u_int __pos);
  122. /* lets you reposition the stream */
  123. int32_t *(*x_inline) (XDR *__xdrs, u_int __len);
  124. /* buf quick ptr to buffered data */
  125. void (*x_destroy) (XDR *__xdrs);
  126. /* free privates of this xdr_stream */
  127. bool_t (*x_getint32) (XDR *__xdrs, int32_t *__ip);
  128. /* get a int from underlying stream */
  129. bool_t (*x_putint32) (XDR *__xdrs, __const int32_t *__ip);
  130. /* put a int to " */
  131. }
  132. *x_ops;
  133. caddr_t x_public; /* users' data */
  134. caddr_t x_private; /* pointer to private data */
  135. caddr_t x_base; /* private used for position info */
  136. u_int x_handy; /* extra private word */
  137. };
  138. /*
  139. * A xdrproc_t exists for each data type which is to be encoded or decoded.
  140. *
  141. * The second argument to the xdrproc_t is a pointer to an opaque pointer.
  142. * The opaque pointer generally points to a structure of the data type
  143. * to be decoded. If this pointer is 0, then the type routines should
  144. * allocate dynamic storage of the appropriate size and return it.
  145. * bool_t (*xdrproc_t)(XDR *, caddr_t *);
  146. */
  147. typedef bool_t (*xdrproc_t) (XDR *, void *,...);
  148. /*
  149. * Operations defined on a XDR handle
  150. *
  151. * XDR *xdrs;
  152. * int32_t *int32p;
  153. * long *longp;
  154. * caddr_t addr;
  155. * u_int len;
  156. * u_int pos;
  157. */
  158. #define XDR_GETINT32(xdrs, int32p) \
  159. (*(xdrs)->x_ops->x_getint32)(xdrs, int32p)
  160. #define xdr_getint32(xdrs, int32p) \
  161. (*(xdrs)->x_ops->x_getint32)(xdrs, int32p)
  162. #define XDR_PUTINT32(xdrs, int32p) \
  163. (*(xdrs)->x_ops->x_putint32)(xdrs, int32p)
  164. #define xdr_putint32(xdrs, int32p) \
  165. (*(xdrs)->x_ops->x_putint32)(xdrs, int32p)
  166. #define XDR_GETLONG(xdrs, longp) \
  167. (*(xdrs)->x_ops->x_getlong)(xdrs, longp)
  168. #define xdr_getlong(xdrs, longp) \
  169. (*(xdrs)->x_ops->x_getlong)(xdrs, longp)
  170. #define XDR_PUTLONG(xdrs, longp) \
  171. (*(xdrs)->x_ops->x_putlong)(xdrs, longp)
  172. #define xdr_putlong(xdrs, longp) \
  173. (*(xdrs)->x_ops->x_putlong)(xdrs, longp)
  174. #define XDR_GETBYTES(xdrs, addr, len) \
  175. (*(xdrs)->x_ops->x_getbytes)(xdrs, addr, len)
  176. #define xdr_getbytes(xdrs, addr, len) \
  177. (*(xdrs)->x_ops->x_getbytes)(xdrs, addr, len)
  178. #define XDR_PUTBYTES(xdrs, addr, len) \
  179. (*(xdrs)->x_ops->x_putbytes)(xdrs, addr, len)
  180. #define xdr_putbytes(xdrs, addr, len) \
  181. (*(xdrs)->x_ops->x_putbytes)(xdrs, addr, len)
  182. #define XDR_GETPOS(xdrs) \
  183. (*(xdrs)->x_ops->x_getpostn)(xdrs)
  184. #define xdr_getpos(xdrs) \
  185. (*(xdrs)->x_ops->x_getpostn)(xdrs)
  186. #define XDR_SETPOS(xdrs, pos) \
  187. (*(xdrs)->x_ops->x_setpostn)(xdrs, pos)
  188. #define xdr_setpos(xdrs, pos) \
  189. (*(xdrs)->x_ops->x_setpostn)(xdrs, pos)
  190. #define XDR_INLINE(xdrs, len) \
  191. (*(xdrs)->x_ops->x_inline)(xdrs, len)
  192. #define xdr_inline(xdrs, len) \
  193. (*(xdrs)->x_ops->x_inline)(xdrs, len)
  194. #define XDR_DESTROY(xdrs) \
  195. do { \
  196. if ((xdrs)->x_ops->x_destroy) \
  197. (*(xdrs)->x_ops->x_destroy)(xdrs); \
  198. } while (0)
  199. #define xdr_destroy(xdrs) \
  200. do { \
  201. if ((xdrs)->x_ops->x_destroy) \
  202. (*(xdrs)->x_ops->x_destroy)(xdrs); \
  203. } while (0)
  204. /*
  205. * Support struct for discriminated unions.
  206. * You create an array of xdrdiscrim structures, terminated with
  207. * a entry with a null procedure pointer. The xdr_union routine gets
  208. * the discriminant value and then searches the array of structures
  209. * for a matching value. If a match is found the associated xdr routine
  210. * is called to handle that part of the union. If there is
  211. * no match, then a default routine may be called.
  212. * If there is no match and no default routine it is an error.
  213. */
  214. #define NULL_xdrproc_t ((xdrproc_t)0)
  215. struct xdr_discrim
  216. {
  217. int value;
  218. xdrproc_t proc;
  219. };
  220. /*
  221. * Inline routines for fast encode/decode of primitive data types.
  222. * Caveat emptor: these use single memory cycles to get the
  223. * data from the underlying buffer, and will fail to operate
  224. * properly if the data is not aligned. The standard way to use these
  225. * is to say:
  226. * if ((buf = XDR_INLINE(xdrs, count)) == NULL)
  227. * return (FALSE);
  228. * <<< macro calls >>>
  229. * where ``count'' is the number of bytes of data occupied
  230. * by the primitive data types.
  231. *
  232. * N.B. and frozen for all time: each data type here uses 4 bytes
  233. * of external representation.
  234. */
  235. #define IXDR_GET_INT32(buf) ((int32_t)ntohl((uint32_t)*(buf)++))
  236. #define IXDR_PUT_INT32(buf, v) (*(buf)++ = (int32_t)htonl((uint32_t)(v)))
  237. #define IXDR_GET_U_INT32(buf) ((uint32_t)IXDR_GET_INT32(buf))
  238. #define IXDR_PUT_U_INT32(buf, v) IXDR_PUT_INT32(buf, (int32_t)(v))
  239. /* WARNING: The IXDR_*_LONG defines are removed by Sun for new platforms
  240. * and shouldn't be used any longer. Code which use this defines or longs
  241. * in the RPC code will not work on 64bit Solaris platforms !
  242. */
  243. #define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf))
  244. #define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v)))
  245. #define IXDR_GET_U_LONG(buf) ((u_long)IXDR_GET_LONG(buf))
  246. #define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG(buf, (long)(v))
  247. #define IXDR_GET_BOOL(buf) ((bool_t)IXDR_GET_LONG(buf))
  248. #define IXDR_GET_ENUM(buf, t) ((t)IXDR_GET_LONG(buf))
  249. #define IXDR_GET_SHORT(buf) ((short)IXDR_GET_LONG(buf))
  250. #define IXDR_GET_U_SHORT(buf) ((u_short)IXDR_GET_LONG(buf))
  251. #define IXDR_PUT_BOOL(buf, v) IXDR_PUT_LONG(buf, (long)(v))
  252. #define IXDR_PUT_ENUM(buf, v) IXDR_PUT_LONG(buf, (long)(v))
  253. #define IXDR_PUT_SHORT(buf, v) IXDR_PUT_LONG(buf, (long)(v))
  254. #define IXDR_PUT_U_SHORT(buf, v) IXDR_PUT_LONG(buf, (long)(v))
  255. /*
  256. * These are the "generic" xdr routines.
  257. * None of these can have const applied because it's not possible to
  258. * know whether the call is a read or a write to the passed parameter
  259. * also, the XDR structure is always updated by some of these calls.
  260. */
  261. extern bool_t xdr_void (void) __THROW;
  262. libc_hidden_proto(xdr_void)
  263. extern bool_t xdr_short (XDR *__xdrs, short *__sp) __THROW;
  264. libc_hidden_proto(xdr_short)
  265. extern bool_t xdr_u_short (XDR *__xdrs, u_short *__usp) __THROW;
  266. libc_hidden_proto(xdr_u_short)
  267. extern bool_t xdr_int (XDR *__xdrs, int *__ip) __THROW;
  268. libc_hidden_proto(xdr_int)
  269. extern bool_t xdr_u_int (XDR *__xdrs, u_int *__up) __THROW;
  270. libc_hidden_proto(xdr_u_int)
  271. extern bool_t xdr_long (XDR *__xdrs, long *__lp) __THROW;
  272. libc_hidden_proto(xdr_long)
  273. extern bool_t xdr_u_long (XDR *__xdrs, u_long *__ulp) __THROW;
  274. libc_hidden_proto(xdr_u_long)
  275. extern bool_t xdr_hyper (XDR *__xdrs, quad_t *__llp) __THROW;
  276. libc_hidden_proto(xdr_hyper)
  277. extern bool_t xdr_u_hyper (XDR *__xdrs, u_quad_t *__ullp) __THROW;
  278. libc_hidden_proto(xdr_u_hyper)
  279. extern bool_t xdr_longlong_t (XDR *__xdrs, quad_t *__llp) __THROW;
  280. extern bool_t xdr_u_longlong_t (XDR *__xdrs, u_quad_t *__ullp) __THROW;
  281. extern bool_t xdr_int8_t (XDR *__xdrs, int8_t *__ip) __THROW;
  282. extern bool_t xdr_uint8_t (XDR *__xdrs, uint8_t *__up) __THROW;
  283. extern bool_t xdr_int16_t (XDR *__xdrs, int16_t *__ip) __THROW;
  284. extern bool_t xdr_uint16_t (XDR *__xdrs, uint16_t *__up) __THROW;
  285. extern bool_t xdr_int32_t (XDR *__xdrs, int32_t *__ip) __THROW;
  286. extern bool_t xdr_uint32_t (XDR *__xdrs, uint32_t *__up) __THROW;
  287. extern bool_t xdr_int64_t (XDR *__xdrs, int64_t *__ip) __THROW;
  288. extern bool_t xdr_uint64_t (XDR *__xdrs, uint64_t *__up) __THROW;
  289. extern bool_t xdr_bool (XDR *__xdrs, bool_t *__bp) __THROW;
  290. libc_hidden_proto(xdr_bool)
  291. extern bool_t xdr_enum (XDR *__xdrs, enum_t *__ep) __THROW;
  292. libc_hidden_proto(xdr_enum)
  293. extern bool_t xdr_array (XDR * _xdrs, caddr_t *__addrp, u_int *__sizep,
  294. u_int __maxsize, u_int __elsize, xdrproc_t __elproc)
  295. __THROW;
  296. libc_hidden_proto(xdr_array)
  297. extern bool_t xdr_bytes (XDR *__xdrs, char **__cpp, u_int *__sizep,
  298. u_int __maxsize) __THROW;
  299. libc_hidden_proto(xdr_bytes)
  300. extern bool_t xdr_opaque (XDR *__xdrs, caddr_t __cp, u_int __cnt) __THROW;
  301. libc_hidden_proto(xdr_opaque)
  302. extern bool_t xdr_string (XDR *__xdrs, char **__cpp, u_int __maxsize) __THROW;
  303. libc_hidden_proto(xdr_string)
  304. extern bool_t xdr_union (XDR *__xdrs, enum_t *__dscmp, char *__unp,
  305. __const struct xdr_discrim *__choices,
  306. xdrproc_t dfault) __THROW;
  307. libc_hidden_proto(xdr_union)
  308. extern bool_t xdr_char (XDR *__xdrs, char *__cp) __THROW;
  309. extern bool_t xdr_u_char (XDR *__xdrs, u_char *__cp) __THROW;
  310. extern bool_t xdr_vector (XDR *__xdrs, char *__basep, u_int __nelem,
  311. u_int __elemsize, xdrproc_t __xdr_elem) __THROW;
  312. extern bool_t xdr_float (XDR *__xdrs, float *__fp) __THROW;
  313. extern bool_t xdr_double (XDR *__xdrs, double *__dp) __THROW;
  314. extern bool_t xdr_reference (XDR *__xdrs, caddr_t *__xpp, u_int __size,
  315. xdrproc_t __proc) __THROW;
  316. libc_hidden_proto(xdr_reference)
  317. extern bool_t xdr_pointer (XDR *__xdrs, char **__objpp,
  318. u_int __obj_size, xdrproc_t __xdr_obj) __THROW;
  319. extern bool_t xdr_wrapstring (XDR *__xdrs, char **__cpp) __THROW;
  320. extern u_long xdr_sizeof (xdrproc_t, void *) __THROW;
  321. /*
  322. * Common opaque bytes objects used by many rpc protocols;
  323. * declared here due to commonality.
  324. */
  325. #define MAX_NETOBJ_SZ 1024
  326. struct netobj
  327. {
  328. u_int n_len;
  329. char *n_bytes;
  330. };
  331. typedef struct netobj netobj;
  332. extern bool_t xdr_netobj (XDR *__xdrs, struct netobj *__np) __THROW;
  333. /*
  334. * These are the public routines for the various implementations of
  335. * xdr streams.
  336. */
  337. /* XDR using memory buffers */
  338. extern void xdrmem_create (XDR *__xdrs, __const caddr_t __addr,
  339. u_int __size, enum xdr_op __xop) __THROW;
  340. libc_hidden_proto(xdrmem_create)
  341. /* XDR using stdio library */
  342. extern void xdrstdio_create (XDR *__xdrs, FILE *__file, enum xdr_op __xop)
  343. __THROW;
  344. /* XDR pseudo records for tcp */
  345. extern void xdrrec_create (XDR *__xdrs, u_int __sendsize,
  346. u_int __recvsize, caddr_t __tcp_handle,
  347. int (*__readit) (char *, char *, int),
  348. int (*__writeit) (char *, char *, int)) __THROW;
  349. libc_hidden_proto(xdrrec_create)
  350. /* make end of xdr record */
  351. extern bool_t xdrrec_endofrecord (XDR *__xdrs, bool_t __sendnow) __THROW;
  352. libc_hidden_proto(xdrrec_endofrecord)
  353. /* move to beginning of next record */
  354. extern bool_t xdrrec_skiprecord (XDR *__xdrs) __THROW;
  355. libc_hidden_proto(xdrrec_skiprecord)
  356. /* true if no more input */
  357. extern bool_t xdrrec_eof (XDR *__xdrs) __THROW;
  358. libc_hidden_proto(xdrrec_eof)
  359. /* free memory buffers for xdr */
  360. extern void xdr_free (xdrproc_t __proc, char *__objp) __THROW;
  361. __END_DECLS
  362. #endif /* rpc/xdr.h */