1 /* @(#)xdr.c 2.1 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 #if !defined(lint) && defined(SCCSIDS)
31 static char sccsid
[] = "@(#)xdr.c 1.35 87/08/12";
35 * xdr.c, Generic XDR routines implementation.
37 * Copyright (C) 1986, Sun Microsystems, Inc.
39 * These are the "generic" xdr routines used to serialize and de-serialize
40 * most common data items. See xdr.h for more info on the interface to
48 #include <rpc/types.h>
52 * constants specific to the xdr "protocol"
54 #define XDR_FALSE ((long) 0)
55 #define XDR_TRUE ((long) 1)
56 #define LASTUNSIGNED ((u_int) 0-1)
61 static const char xdr_zero
[BYTES_PER_XDR_UNIT
] = {0, 0, 0, 0};
64 * Free a data structure using XDR
65 * Not a filter, but a convenient utility nonetheless
68 xdr_free (xdrproc_t proc
, char *objp
)
89 xdr_int (XDR
*xdrs
, int *ip
)
92 #if INT_MAX < LONG_MAX
99 return XDR_PUTLONG (xdrs
, &l
);
102 if (!XDR_GETLONG (xdrs
, &l
))
111 #elif INT_MAX == LONG_MAX
112 return xdr_long (xdrs
, (long *) ip
);
113 #elif INT_MAX == SHRT_MAX
114 return xdr_short (xdrs
, (short *) ip
);
116 #error unexpected integer sizes in_xdr_int()
121 * XDR unsigned integers
124 xdr_u_int (XDR
*xdrs
, u_int
*up
)
126 #if UINT_MAX < ULONG_MAX
133 return XDR_PUTLONG (xdrs
, &l
);
136 if (!XDR_GETLONG (xdrs
, &l
))
145 #elif UINT_MAX == ULONG_MAX
146 return xdr_u_long (xdrs
, (u_long
*) up
);
147 #elif UINT_MAX == USHRT_MAX
148 return xdr_short (xdrs
, (short *) up
);
150 #error unexpected integer sizes in_xdr_u_int()
156 * The definition of xdr_long() is kept for backward
157 * compatibility. Instead xdr_int() should be used.
160 xdr_long (XDR
*xdrs
, long *lp
)
163 if (xdrs
->x_op
== XDR_ENCODE
164 && (sizeof (int32_t) == sizeof (long)
165 || (int32_t) *lp
== *lp
))
166 return XDR_PUTLONG (xdrs
, lp
);
168 if (xdrs
->x_op
== XDR_DECODE
)
169 return XDR_GETLONG (xdrs
, lp
);
171 if (xdrs
->x_op
== XDR_FREE
)
178 * XDR unsigned long integers
179 * The definition of xdr_u_long() is kept for backward
180 * compatibility. Instead xdr_u_int() should be used.
183 xdr_u_long (XDR
*xdrs
, u_long
*ulp
)
191 if (XDR_GETLONG (xdrs
, &tmp
) == FALSE
)
194 *ulp
= (uint32_t) tmp
;
199 if (sizeof (uint32_t) != sizeof (u_long
)
200 && (uint32_t) *ulp
!= *ulp
)
203 return XDR_PUTLONG (xdrs
, (long *) ulp
);
213 * same as xdr_u_hyper - open coded to save a proc call!
216 xdr_hyper (XDR
*xdrs
, quad_t
*llp
)
219 unsigned long int t2
;
221 if (xdrs
->x_op
== XDR_ENCODE
)
223 t1
= (long) ((*llp
) >> 32);
225 return (XDR_PUTLONG(xdrs
, &t1
) && XDR_PUTLONG(xdrs
, &t2
));
228 if (xdrs
->x_op
== XDR_DECODE
)
230 if (!XDR_GETLONG(xdrs
, &t1
) || !XDR_GETLONG(xdrs
, &t2
))
232 *llp
= ((quad_t
) t1
) << 32;
237 if (xdrs
->x_op
== XDR_FREE
)
246 * same as xdr_hyper - open coded to save a proc call!
249 xdr_u_hyper (XDR
*xdrs
, u_quad_t
*ullp
)
254 if (xdrs
->x_op
== XDR_ENCODE
)
256 t1
= (unsigned long) ((*ullp
) >> 32);
257 t2
= (unsigned long) (*ullp
);
258 return (XDR_PUTLONG(xdrs
, &t1
) && XDR_PUTLONG(xdrs
, &t2
));
261 if (xdrs
->x_op
== XDR_DECODE
)
263 if (!XDR_GETLONG(xdrs
, &t1
) || !XDR_GETLONG(xdrs
, &t2
))
265 *ullp
= ((u_quad_t
) t1
) << 32;
270 if (xdrs
->x_op
== XDR_FREE
)
277 xdr_longlong_t (XDR
*xdrs
, quad_t
*llp
)
279 return xdr_hyper (xdrs
, llp
);
283 xdr_u_longlong_t (XDR
*xdrs
, u_quad_t
*ullp
)
285 return xdr_u_hyper (xdrs
, ullp
);
292 xdr_short (XDR
*xdrs
, short *sp
)
300 return XDR_PUTLONG (xdrs
, &l
);
303 if (!XDR_GETLONG (xdrs
, &l
))
317 * XDR unsigned short integers
320 xdr_u_short (XDR
*xdrs
, u_short
*usp
)
328 return XDR_PUTLONG (xdrs
, &l
);
331 if (!XDR_GETLONG (xdrs
, &l
))
349 xdr_char (XDR
*xdrs
, char *cp
)
354 if (!xdr_int (xdrs
, &i
))
363 * XDR an unsigned char
366 xdr_u_char (XDR
*xdrs
, u_char
*cp
)
371 if (!xdr_u_int (xdrs
, &u
))
383 xdr_bool (XDR
*xdrs
, bool_t
*bp
)
390 lb
= *bp
? XDR_TRUE
: XDR_FALSE
;
391 return XDR_PUTLONG (xdrs
, &lb
);
394 if (!XDR_GETLONG (xdrs
, &lb
))
398 *bp
= (lb
== XDR_FALSE
) ? FALSE
: TRUE
;
411 xdr_enum (XDR
*xdrs
, enum_t
*ep
)
416 }; /* used to find the size of an enum */
419 * enums are treated as ints
421 if (sizeof (enum sizecheck
) == 4)
423 #if INT_MAX < LONG_MAX
430 return XDR_PUTLONG (xdrs
, &l
);
433 if (!XDR_GETLONG (xdrs
, &l
))
444 return xdr_long (xdrs
, (long *) ep
);
447 else if (sizeof (enum sizecheck
) == sizeof (short))
449 return xdr_short (xdrs
, (short *) ep
);
459 * Allows the specification of a fixed size sequence of opaque bytes.
460 * cp points to the opaque object and cnt gives the byte length.
463 xdr_opaque (XDR
*xdrs
, caddr_t cp
, u_int cnt
)
466 static char crud
[BYTES_PER_XDR_UNIT
];
469 * if no data we are done
475 * round byte count to full xdr units
477 rndup
= cnt
% BYTES_PER_XDR_UNIT
;
479 rndup
= BYTES_PER_XDR_UNIT
- rndup
;
484 if (!XDR_GETBYTES (xdrs
, cp
, cnt
))
490 return XDR_GETBYTES (xdrs
, (caddr_t
)crud
, rndup
);
493 if (!XDR_PUTBYTES (xdrs
, cp
, cnt
))
499 return XDR_PUTBYTES (xdrs
, xdr_zero
, rndup
);
509 * *cpp is a pointer to the bytes, *sizep is the count.
510 * If *cpp is NULL maxsize bytes are allocated
513 xdr_bytes (xdrs
, cpp
, sizep
, maxsize
)
519 char *sp
= *cpp
; /* sp is the actual string pointer */
523 * first deal with the length since xdr bytes are counted
525 if (!xdr_u_int (xdrs
, sizep
))
530 if ((nodesize
> maxsize
) && (xdrs
->x_op
!= XDR_FREE
))
536 * now deal with the actual bytes
547 *cpp
= sp
= (char *) mem_alloc (nodesize
);
551 (void) fprintf (stderr
, "xdr_bytes: out of memory\n");
557 return xdr_opaque (xdrs
, sp
, nodesize
);
562 mem_free (sp
, nodesize
);
571 * Implemented here due to commonality of the object.
574 xdr_netobj (xdrs
, np
)
579 return xdr_bytes (xdrs
, &np
->n_bytes
, &np
->n_len
, MAX_NETOBJ_SZ
);
583 * XDR a discriminated union
584 * Support routine for discriminated unions.
585 * You create an array of xdrdiscrim structures, terminated with
586 * an entry with a null procedure pointer. The routine gets
587 * the discriminant value and then searches the array of xdrdiscrims
588 * looking for that value. It calls the procedure given in the xdrdiscrim
589 * to handle the discriminant. If there is no specific routine a default
590 * routine may be called.
591 * If there is no specific or default routine an error is returned.
594 xdr_union (xdrs
, dscmp
, unp
, choices
, dfault
)
596 enum_t
*dscmp
; /* enum to decide which arm to work on */
597 char *unp
; /* the union itself */
598 const struct xdr_discrim
*choices
; /* [value, xdr proc] for each arm */
599 xdrproc_t dfault
; /* default xdr routine */
604 * we deal with the discriminator; it's an enum
606 if (!xdr_enum (xdrs
, dscmp
))
613 * search choices for a value that matches the discriminator.
614 * if we find one, execute the xdr routine for that value.
616 for (; choices
->proc
!= NULL_xdrproc_t
; choices
++)
618 if (choices
->value
== dscm
)
619 return (*(choices
->proc
)) (xdrs
, unp
, LASTUNSIGNED
);
623 * no match - execute the default xdr routine if there is one
625 return ((dfault
== NULL_xdrproc_t
) ? FALSE
:
626 (*dfault
) (xdrs
, unp
, LASTUNSIGNED
));
631 * Non-portable xdr primitives.
632 * Care should be taken when moving these routines to new architectures.
637 * XDR null terminated ASCII strings
638 * xdr_string deals with "C strings" - arrays of bytes that are
639 * terminated by a NULL character. The parameter cpp references a
640 * pointer to storage; If the pointer is null, then the necessary
641 * storage is allocated. The last parameter is the max allowed length
642 * of the string as specified by a protocol.
645 xdr_string (xdrs
, cpp
, maxsize
)
650 char *sp
= *cpp
; /* sp is the actual string pointer */
655 * first deal with the length since xdr strings are counted-strings
662 return TRUE
; /* already free */
664 /* fall through... */
673 if (!xdr_u_int (xdrs
, &size
))
684 * now deal with the actual bytes
694 *cpp
= sp
= (char *) mem_alloc (nodesize
);
697 (void) fprintf (stderr
, "xdr_string: out of memory\n");
704 return xdr_opaque (xdrs
, sp
, size
);
707 mem_free (sp
, nodesize
);
715 * Wrapper for xdr_string that can be called directly from
716 * routines like clnt_call
719 xdr_wrapstring (xdrs
, cpp
)
723 if (xdr_string (xdrs
, cpp
, LASTUNSIGNED
))