(_ISwbit): Protext use of parameter with parentheses.
[glibc.git] / sunrpc / rpc / xdr.h
blobcd287172219673092182eef8c3edd94fb093d23f
1 /* @(#)xdr.h 2.2 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.
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.
27 * 2550 Garcia Avenue
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.
38 #ifndef _RPC_XDR_H
39 #define _RPC_XDR_H 1
41 #include <features.h>
42 #include <sys/types.h>
43 #include <rpc/types.h>
45 /* We need FILE. */
46 #include <stdio.h>
48 __BEGIN_DECLS
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:
59 * bool_t
60 * xdrproc(xdrs, argresp)
61 * XDR *xdrs;
62 * <type> *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
83 * request.
85 enum xdr_op
87 XDR_ENCODE = 0,
88 XDR_DECODE = 1,
89 XDR_FREE = 2
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.
101 #if 1
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)
106 #endif
109 * The XDR handle.
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;
115 struct XDR
117 enum xdr_op x_op; /* operation; fast additional param */
118 struct xdr_ops
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,
125 u_int __len));
126 /* get some bytes from " */
127 bool_t (*x_putbytes) __PMT ((XDR *__xdrs, __const char *__addr,
128 u_int __len));
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 */
139 *x_ops;
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
161 * XDR *xdrs;
162 * long *longp;
163 * caddr_t addr;
164 * u_int len;
165 * u_int pos;
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) \
213 if ((xdrs)->x_ops->x_destroy) \
214 (*(xdrs)->x_ops->x_destroy)(xdrs)
215 #define xdr_destroy(xdrs) \
216 if ((xdrs)->x_ops->x_destroy) \
217 (*(xdrs)->x_ops->x_destroy)(xdrs)
220 * Support struct for discriminated unions.
221 * You create an array of xdrdiscrim structures, terminated with
222 * a entry with a null procedure pointer. The xdr_union routine gets
223 * the discriminant value and then searches the array of structures
224 * for a matching value. If a match is found the associated xdr routine
225 * is called to handle that part of the union. If there is
226 * no match, then a default routine may be called.
227 * If there is no match and no default routine it is an error.
229 #define NULL_xdrproc_t ((xdrproc_t)0)
230 struct xdr_discrim
232 int value;
233 xdrproc_t proc;
237 * Inline routines for fast encode/decode of primitive data types.
238 * Caveat emptor: these use single memory cycles to get the
239 * data from the underlying buffer, and will fail to operate
240 * properly if the data is not aligned. The standard way to use these
241 * is to say:
242 * if ((buf = XDR_INLINE(xdrs, count)) == NULL)
243 * return (FALSE);
244 * <<< macro calls >>>
245 * where ``count'' is the number of bytes of data occupied
246 * by the primitive data types.
248 * N.B. and frozen for all time: each data type here uses 4 bytes
249 * of external representation.
252 #define IXDR_GET_INT32(buf) ((int32_t)ntohl((uint32_t)*(buf)++))
253 #define IXDR_PUT_INT32(buf, v) (*(buf)++ = (int32_t)htonl((uint32_t)v))
254 #define IXDR_GET_U_INT32(buf) ((uint32_t)IXDR_GET_INT32(buf))
255 #define IXDR_PUT_U_INT32(buf, v) IXDR_PUT_INT32((buf), ((int32_t)(v)))
257 #define IXDR_GET_BOOL(buf) ((bool_t)IXDR_GET_INT32(buf))
258 #define IXDR_GET_ENUM(buf, t) ((t)IXDR_GET_INT32(buf))
259 #define IXDR_GET_SHORT(buf) ((short)IXDR_GET_INT32(buf))
260 #define IXDR_GET_U_SHORT(buf) ((u_short)IXDR_GET_INT32(buf))
262 #define IXDR_PUT_BOOL(buf, v) IXDR_PUT_INT32((buf), ((int)(v)))
263 #define IXDR_PUT_ENUM(buf, v) IXDR_PUT_INT32((buf), ((int)(v)))
264 #define IXDR_PUT_SHORT(buf, v) IXDR_PUT_INT32((buf), ((int)(v)))
265 #define IXDR_PUT_U_SHORT(buf, v) IXDR_PUT_INT32((buf), ((int)(v)))
267 /* This defines are removed from Sun for new platforms and shouldn't
268 be used any longer. */
269 #define IXDR_GET_LONG(buf) ((long)ntohl((u_long)*((u_int32_t*)buf)++))
270 #define IXDR_PUT_LONG(buf, v) (*((u_int32_t*)(buf))++ = (long)htonl((u_long)v))
271 #define IXDR_GET_U_LONG(buf) ((u_long)IXDR_GET_LONG(buf))
272 #define IXDR_PUT_U_LONG(buf, v) IXDR_PUT_LONG((buf), ((long)(v)))
275 * These are the "generic" xdr routines.
276 * None of these can have const applied because it's not possible to
277 * know whether the call is a read or a write to the passed parameter
278 * also, the XDR structure is always updated by some of these calls.
280 extern bool_t xdr_void __P ((void));
281 extern bool_t xdr_int __P ((XDR *__xdrs, int *__ip));
282 extern bool_t xdr_u_int __P ((XDR *__xdrs, u_int *__up));
283 extern bool_t xdr_long __P ((XDR *__xdrs, long *__lp));
284 extern bool_t xdr_u_long __P ((XDR *__xdrs, u_long *__ulp));
285 extern bool_t xdr_short __P ((XDR *__xdrs, short *__sp));
286 extern bool_t xdr_u_short __P ((XDR *__xdrs, u_short *__usp));
287 extern bool_t xdr_int8_t __P ((XDR *__xdrs, int8_t *__ip));
288 extern bool_t xdr_uint8_t __P ((XDR *__xdrs, uint8_t *__up));
289 extern bool_t xdr_int16_t __P ((XDR *__xdrs, int16_t *__ip));
290 extern bool_t xdr_uint16_t __P ((XDR *__xdrs, uint16_t *__up));
291 extern bool_t xdr_int32_t __P ((XDR *__xdrs, int32_t *__ip));
292 extern bool_t xdr_uint32_t __P ((XDR *__xdrs, uint32_t *__up));
293 extern bool_t xdr_bool __P ((XDR *__xdrs, bool_t *__bp));
294 extern bool_t xdr_enum __P ((XDR *__xdrs, enum_t *__ep));
295 extern bool_t xdr_array __P ((XDR * _xdrs, caddr_t *__addrp, u_int *__sizep,
296 u_int __maxsize, u_int __elsize,
297 xdrproc_t __elproc));
298 extern bool_t xdr_bytes __P ((XDR *__xdrs, char **__cpp, u_int *__sizep,
299 u_int __maxsize));
300 extern bool_t xdr_opaque __P ((XDR *__xdrs, caddr_t __cp, u_int __cnt));
301 extern bool_t xdr_string __P ((XDR *__xdrs, char **__cpp, u_int __maxsize));
302 extern bool_t xdr_union __P ((XDR *__xdrs, enum_t *__dscmp, char *__unp,
303 __const struct xdr_discrim *__choices,
304 xdrproc_t dfault));
305 extern bool_t xdr_char __P ((XDR *__xdrs, char *__cp));
306 extern bool_t xdr_u_char __P ((XDR *__xdrs, u_char *__cp));
307 extern bool_t xdr_vector __P ((XDR *__xdrs, char *__basep, u_int __nelem,
308 u_int __elemsize, xdrproc_t __xdr_elem));
309 extern bool_t xdr_float __P ((XDR *__xdrs, float *__fp));
310 extern bool_t xdr_double __P ((XDR *__xdrs, double *__dp));
311 extern bool_t xdr_reference __P ((XDR *__xdrs, caddr_t *__xpp, u_int __size,
312 xdrproc_t __proc));
313 extern bool_t xdr_pointer __P ((XDR *__xdrs, char **__objpp,
314 u_int __obj_size, xdrproc_t __xdr_obj));
315 extern bool_t xdr_wrapstring __P ((XDR *__xdrs, char **__cpp));
316 extern u_long xdr_sizeof __P ((xdrproc_t, void *));
319 * Common opaque bytes objects used by many rpc protocols;
320 * declared here due to commonality.
322 #define MAX_NETOBJ_SZ 1024
323 struct netobj
325 u_int n_len;
326 char *n_bytes;
328 typedef struct netobj netobj;
329 extern bool_t xdr_netobj __P ((XDR *__xdrs, struct netobj *__np));
332 * These are the public routines for the various implementations of
333 * xdr streams.
336 /* XDR using memory buffers */
337 extern void xdrmem_create __P ((XDR *__xdrs, __const caddr_t __addr,
338 u_int __size, enum xdr_op __xop));
340 /* XDR using stdio library */
341 extern void xdrstdio_create __P ((XDR *__xdrs, FILE *__file,
342 enum xdr_op __xop));
344 /* XDR pseudo records for tcp */
345 extern void xdrrec_create __P ((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)));
350 /* make end of xdr record */
351 extern bool_t xdrrec_endofrecord __P ((XDR *__xdrs, bool_t __sendnow));
353 /* move to beginning of next record */
354 extern bool_t xdrrec_skiprecord __P ((XDR *__xdrs));
356 /* true if no more input */
357 extern bool_t xdrrec_eof __P ((XDR *__xdrs));
359 /* free memory buffers for xdr */
360 extern void xdr_free __P ((xdrproc_t __proc, char *__objp));
362 __END_DECLS
364 #endif /* rpc/xdr.h */