1 /* @(#)xdr.h 2.2 88/07/29 4.0 RPCSRC */
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.
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.
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.
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.
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.
26 * Sun Microsystems, Inc.
28 * Mountain View, California 94043
30 /* @(#)xdr.h 1.19 87/04/22 SMI */
33 * xdr.h, External Data Representation Serialization Routines.
35 * Copyright (C) 1984, Sun Microsystems, Inc.
42 #include <sys/types.h>
43 #include <rpc/types.h>
51 * XDR provides a conventional way for converting between C data
52 * types and an external bit-string representation. Library supplied
53 * routines provide for the conversion on built-in C data types. These
54 * routines and utility routines defined here are used to help implement
55 * a type encode/decode routine for each user-defined type.
57 * Each data type provides a single procedure which takes two arguments:
60 * xdrproc(xdrs, argresp)
64 * xdrs is an instance of a XDR handle, to which or from which the data
65 * type is to be converted. argresp is a pointer to the structure to be
66 * converted. The XDR handle contains an operation field which indicates
67 * which of the operations (ENCODE, DECODE * or FREE) is to be performed.
69 * XDR_DECODE may allocate space if the pointer argresp is null. This
70 * data can be freed with the XDR_FREE operation.
72 * We write only one procedure per data type to make it easy
73 * to keep the encode and decode procedures for a data type consistent.
74 * In many cases the same code performs all operations on a user defined type,
75 * because all the hard work is done in the component type routines.
76 * decode as a series of calls on the nested data types.
80 * Xdr operations. XDR_ENCODE causes the type to be encoded into the
81 * stream. XDR_DECODE causes the type to be extracted from the stream.
82 * XDR_FREE can be used to release the space allocated by an XDR_DECODE
93 * This is the number of bytes per unit of external data.
95 #define BYTES_PER_XDR_UNIT (4)
97 * This only works if the above is a power of 2. But it's defined to be
98 * 4 by the appropriate RFCs. So it will work. And it's normally quicker
99 * than the old routine.
102 #define RNDUP(x) (((x) + BYTES_PER_XDR_UNIT - 1) & ~(BYTES_PER_XDR_UNIT - 1))
103 #else /* this is the old routine */
104 #define RNDUP(x) ((((x) + BYTES_PER_XDR_UNIT - 1) / BYTES_PER_XDR_UNIT) \
105 * BYTES_PER_XDR_UNIT)
110 * Contains operation which is being applied to the stream,
111 * an operations vector for the particular implementation (e.g. see xdr_mem.c),
112 * and two private fields for the use of the particular implementation.
114 typedef struct XDR XDR
;
117 enum xdr_op x_op
; /* operation; fast additional param */
120 bool_t (*x_getlong
) __PMT ((XDR
*__xdrs
, long *__lp
));
121 /* get a long from underlying stream */
122 bool_t (*x_putlong
) __PMT ((XDR
*__xdrs
, __const
long *__lp
));
123 /* put a long to " */
124 bool_t (*x_getbytes
) __PMT ((XDR
*__xdrs
, caddr_t __addr
,
126 /* get some bytes from " */
127 bool_t (*x_putbytes
) __PMT ((XDR
*__xdrs
, __const
char *__addr
,
129 /* put some bytes to " */
130 u_int (*x_getpostn
) __PMT ((__const XDR
*__xdrs
));
131 /* returns bytes off from beginning */
132 bool_t (*x_setpostn
) __PMT ((XDR
*__xdrs
, u_int pos
));
133 /* lets you reposition the stream */
134 long *(*x_inline
) __PMT ((XDR
*__xdrs
, int len
));
135 /* buf quick ptr to buffered data */
136 void (*x_destroy
) __PMT ((XDR
*__xdrs
));
137 /* free privates of this xdr_stream */
140 caddr_t x_public
; /* users' data */
141 caddr_t x_private
; /* pointer to private data */
142 caddr_t x_base
; /* private used for position info */
143 int x_handy
; /* extra private word */
147 * A xdrproc_t exists for each data type which is to be encoded or decoded.
149 * The second argument to the xdrproc_t is a pointer to an opaque pointer.
150 * The opaque pointer generally points to a structure of the data type
151 * to be decoded. If this pointer is 0, then the type routines should
152 * allocate dynamic storage of the appropriate size and return it.
153 * bool_t (*xdrproc_t)(XDR *, caddr_t *);
155 typedef bool_t (*xdrproc_t
) __PMT ((XDR
*, void *,...));
159 * Operations defined on a XDR handle
167 #define XDR_GETINT32(xdrs, int32p) \
168 (*(xdrs)->x_ops->x_getlong)(xdrs, (long *)int32p)
169 #define xdr_getint32(xdrs, int32p) \
170 (*(xdrs)->x_ops->x_getlong)(xdrs, (long *)int32p)
172 #define XDR_PUTINT32(xdrs, int32p) \
173 (*(xdrs)->x_ops->x_putlong)(xdrs, (long *)int32p)
174 #define xdr_putint32(xdrs, int32p) \
175 (*(xdrs)->x_ops->x_putlong)(xdrs, (long *)int32p)
177 #define XDR_GETLONG(xdrs, longp) \
178 (*(xdrs)->x_ops->x_getlong)(xdrs, longp)
179 #define xdr_getlong(xdrs, longp) \
180 (*(xdrs)->x_ops->x_getlong)(xdrs, longp)
182 #define XDR_PUTLONG(xdrs, longp) \
183 (*(xdrs)->x_ops->x_putlong)(xdrs, longp)
184 #define xdr_putlong(xdrs, longp) \
185 (*(xdrs)->x_ops->x_putlong)(xdrs, longp)
187 #define XDR_GETBYTES(xdrs, addr, len) \
188 (*(xdrs)->x_ops->x_getbytes)(xdrs, addr, len)
189 #define xdr_getbytes(xdrs, addr, len) \
190 (*(xdrs)->x_ops->x_getbytes)(xdrs, addr, len)
192 #define XDR_PUTBYTES(xdrs, addr, len) \
193 (*(xdrs)->x_ops->x_putbytes)(xdrs, addr, len)
194 #define xdr_putbytes(xdrs, addr, len) \
195 (*(xdrs)->x_ops->x_putbytes)(xdrs, addr, len)
197 #define XDR_GETPOS(xdrs) \
198 (*(xdrs)->x_ops->x_getpostn)(xdrs)
199 #define xdr_getpos(xdrs) \
200 (*(xdrs)->x_ops->x_getpostn)(xdrs)
202 #define XDR_SETPOS(xdrs, pos) \
203 (*(xdrs)->x_ops->x_setpostn)(xdrs, pos)
204 #define xdr_setpos(xdrs, pos) \
205 (*(xdrs)->x_ops->x_setpostn)(xdrs, pos)
207 #define XDR_INLINE(xdrs, len) \
208 (*(xdrs)->x_ops->x_inline)(xdrs, len)
209 #define xdr_inline(xdrs, len) \
210 (*(xdrs)->x_ops->x_inline)(xdrs, len)
212 #define XDR_DESTROY(xdrs) \
214 if ((xdrs)->x_ops->x_destroy) \
215 (*(xdrs)->x_ops->x_destroy)(xdrs); \
217 #define xdr_destroy(xdrs) \
219 if ((xdrs)->x_ops->x_destroy) \
220 (*(xdrs)->x_ops->x_destroy)(xdrs); \
224 * Support struct for discriminated unions.
225 * You create an array of xdrdiscrim structures, terminated with
226 * a entry with a null procedure pointer. The xdr_union routine gets
227 * the discriminant value and then searches the array of structures
228 * for a matching value. If a match is found the associated xdr routine
229 * is called to handle that part of the union. If there is
230 * no match, then a default routine may be called.
231 * If there is no match and no default routine it is an error.
233 #define NULL_xdrproc_t ((xdrproc_t)0)
241 * Inline routines for fast encode/decode of primitive data types.
242 * Caveat emptor: these use single memory cycles to get the
243 * data from the underlying buffer, and will fail to operate
244 * properly if the data is not aligned. The standard way to use these
246 * if ((buf = XDR_INLINE(xdrs, count)) == NULL)
248 * <<< macro calls >>>
249 * where ``count'' is the number of bytes of data occupied
250 * by the primitive data types.
252 * N.B. and frozen for all time: each data type here uses 4 bytes
253 * of external representation.
256 #define IXDR_GET_INT32(buf) ((int32_t)ntohl((uint32_t)*(buf)++))
257 #define IXDR_PUT_INT32(buf, v) (*(buf)++ = (int32_t)htonl((uint32_t)(v)))
258 #define IXDR_GET_U_INT32(buf) ((uint32_t)IXDR_GET_INT32(buf))
259 #define IXDR_PUT_U_INT32(buf, v) IXDR_PUT_INT32(buf, (int32_t)(v))
261 /* WARNING: The IXDR_*_LONG defines are removed by Sun for new platforms
262 * and shouldn't be used any longer. Code which use this defines or longs
263 * in the RPC code will not work on 64bit Solaris platforms !
265 #define IXDR_GET_LONG(buf) \
266 ((long)ntohl((u_long)*__extension__((u_int32_t*)(buf))++))
267 #define IXDR_PUT_LONG(buf, v) \
268 (*__extension__((u_int32_t*)(buf))++ = (long)htonl((u_long)(v)))
269 #define IXDR_GET_U_LONG(buf) ((u_long)IXDR_GET_LONG(buf))
270 #define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG(buf, (long)(v))
273 #define IXDR_GET_BOOL(buf) ((bool_t)IXDR_GET_LONG(buf))
274 #define IXDR_GET_ENUM(buf, t) ((t)IXDR_GET_LONG(buf))
275 #define IXDR_GET_SHORT(buf) ((short)IXDR_GET_LONG(buf))
276 #define IXDR_GET_U_SHORT(buf) ((u_short)IXDR_GET_LONG(buf))
278 #define IXDR_PUT_BOOL(buf, v) IXDR_PUT_LONG(buf, (long)(v))
279 #define IXDR_PUT_ENUM(buf, v) IXDR_PUT_LONG(buf, (long)(v))
280 #define IXDR_PUT_SHORT(buf, v) IXDR_PUT_LONG(buf, (long)(v))
281 #define IXDR_PUT_U_SHORT(buf, v) IXDR_PUT_LONG(buf, (long)(v))
284 * These are the "generic" xdr routines.
285 * None of these can have const applied because it's not possible to
286 * know whether the call is a read or a write to the passed parameter
287 * also, the XDR structure is always updated by some of these calls.
289 extern bool_t xdr_void
__P ((void));
290 extern bool_t xdr_int
__P ((XDR
*__xdrs
, int *__ip
));
291 extern bool_t xdr_u_int
__P ((XDR
*__xdrs
, u_int
*__up
));
292 extern bool_t xdr_long
__P ((XDR
*__xdrs
, long *__lp
));
293 extern bool_t xdr_u_long
__P ((XDR
*__xdrs
, u_long
*__ulp
));
294 extern bool_t xdr_short
__P ((XDR
*__xdrs
, short *__sp
));
295 extern bool_t xdr_u_short
__P ((XDR
*__xdrs
, u_short
*__usp
));
296 extern bool_t xdr_int8_t
__P ((XDR
*__xdrs
, int8_t *__ip
));
297 extern bool_t xdr_uint8_t
__P ((XDR
*__xdrs
, uint8_t *__up
));
298 extern bool_t xdr_int16_t
__P ((XDR
*__xdrs
, int16_t *__ip
));
299 extern bool_t xdr_uint16_t
__P ((XDR
*__xdrs
, uint16_t *__up
));
300 extern bool_t xdr_int32_t
__P ((XDR
*__xdrs
, int32_t *__ip
));
301 extern bool_t xdr_uint32_t
__P ((XDR
*__xdrs
, uint32_t *__up
));
302 extern bool_t xdr_bool
__P ((XDR
*__xdrs
, bool_t
*__bp
));
303 extern bool_t xdr_enum
__P ((XDR
*__xdrs
, enum_t
*__ep
));
304 extern bool_t xdr_array
__P ((XDR
* _xdrs
, caddr_t
*__addrp
, u_int
*__sizep
,
305 u_int __maxsize
, u_int __elsize
,
306 xdrproc_t __elproc
));
307 extern bool_t xdr_bytes
__P ((XDR
*__xdrs
, char **__cpp
, u_int
*__sizep
,
309 extern bool_t xdr_opaque
__P ((XDR
*__xdrs
, caddr_t __cp
, u_int __cnt
));
310 extern bool_t xdr_string
__P ((XDR
*__xdrs
, char **__cpp
, u_int __maxsize
));
311 extern bool_t xdr_union
__P ((XDR
*__xdrs
, enum_t
*__dscmp
, char *__unp
,
312 __const
struct xdr_discrim
*__choices
,
314 extern bool_t xdr_char
__P ((XDR
*__xdrs
, char *__cp
));
315 extern bool_t xdr_u_char
__P ((XDR
*__xdrs
, u_char
*__cp
));
316 extern bool_t xdr_vector
__P ((XDR
*__xdrs
, char *__basep
, u_int __nelem
,
317 u_int __elemsize
, xdrproc_t __xdr_elem
));
318 extern bool_t xdr_float
__P ((XDR
*__xdrs
, float *__fp
));
319 extern bool_t xdr_double
__P ((XDR
*__xdrs
, double *__dp
));
320 extern bool_t xdr_reference
__P ((XDR
*__xdrs
, caddr_t
*__xpp
, u_int __size
,
322 extern bool_t xdr_pointer
__P ((XDR
*__xdrs
, char **__objpp
,
323 u_int __obj_size
, xdrproc_t __xdr_obj
));
324 extern bool_t xdr_wrapstring
__P ((XDR
*__xdrs
, char **__cpp
));
325 extern u_long xdr_sizeof
__P ((xdrproc_t
, void *));
328 * Common opaque bytes objects used by many rpc protocols;
329 * declared here due to commonality.
331 #define MAX_NETOBJ_SZ 1024
337 typedef struct netobj netobj
;
338 extern bool_t xdr_netobj
__P ((XDR
*__xdrs
, struct netobj
*__np
));
341 * These are the public routines for the various implementations of
345 /* XDR using memory buffers */
346 extern void xdrmem_create
__P ((XDR
*__xdrs
, __const caddr_t __addr
,
347 u_int __size
, enum xdr_op __xop
));
349 /* XDR using stdio library */
350 extern void xdrstdio_create
__P ((XDR
*__xdrs
, FILE *__file
,
353 /* XDR pseudo records for tcp */
354 extern void xdrrec_create
__P ((XDR
*__xdrs
, u_int __sendsize
,
355 u_int __recvsize
, caddr_t __tcp_handle
,
356 int (*__readit
) (char *, char *, int),
357 int (*__writeit
) (char *, char *, int)));
359 /* make end of xdr record */
360 extern bool_t xdrrec_endofrecord
__P ((XDR
*__xdrs
, bool_t __sendnow
));
362 /* move to beginning of next record */
363 extern bool_t xdrrec_skiprecord
__P ((XDR
*__xdrs
));
365 /* true if no more input */
366 extern bool_t xdrrec_eof
__P ((XDR
*__xdrs
));
368 /* free memory buffers for xdr */
369 extern void xdr_free
__P ((xdrproc_t __proc
, char *__objp
));
373 #endif /* rpc/xdr.h */