/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* Portions of this source code were derived from Berkeley 4.3 BSD
* under license from the Regents of the University of California.
*/
/*
* xdr.c, generic XDR routines implementation.
* These are the "generic" xdr routines used to serialize and de-serialize
* most common data items. See xdr.h for more info on the interface to
* xdr.
*/
#include <sys/isa_defs.h>
#if !defined(_BIG_ENDIAN) && !defined(_LITTLE_ENDIAN)
#error "Exactly one of _BIG_ENDIAN or _LITTLE_ENDIAN must be defined"
#error "Only one of _BIG_ENDIAN or _LITTLE_ENDIAN may be defined"
#endif
/*
* constants specific to the xdr "protocol"
*/
/*
* for unit alignment
*/
/*
* Free a data structure using XDR
* Not a filter, but a convenient utility nonetheless
*/
void
{
XDR x;
}
/*
* XDR nothing
*/
xdr_void(void)
{
return (TRUE);
}
/*
* XDR integers
*
* PSARC 2003/523 Contract Private Interface
* xdr_int
* Changes must be reviewed by Solaris File Sharing
* Changes must be communicated to contract-2003-523@sun.com
*/
{
return (TRUE);
return (FALSE);
}
/*
* XDR unsigned integers
*
* PSARC 2003/523 Contract Private Interface
* xdr_u_int
* Changes must be reviewed by Solaris File Sharing
* Changes must be communicated to contract-2003-523@sun.com
*/
{
return (TRUE);
return (FALSE);
}
#if defined(_ILP32)
/*
* xdr_long and xdr_u_long for binary compatability on ILP32 kernels.
*
* No prototypes since new code should not be using these interfaces.
*/
{
}
{
}
#endif /* _ILP32 */
/*
* XDR long long integers
*/
{
#if defined(_LITTLE_ENDIAN)
BYTES_PER_XDR_UNIT)) == TRUE) {
}
#elif defined(_BIG_ENDIAN)
}
#endif
return (FALSE);
}
#if defined(_LITTLE_ENDIAN)
BYTES_PER_XDR_UNIT)) == TRUE) {
}
#elif defined(_BIG_ENDIAN)
}
#endif
return (FALSE);
}
return (TRUE);
}
/*
* XDR unsigned long long integers
*/
{
#if defined(_LITTLE_ENDIAN)
BYTES_PER_XDR_UNIT)) == TRUE) {
}
#elif defined(_BIG_ENDIAN)
}
#endif
return (FALSE);
}
#if defined(_LITTLE_ENDIAN)
BYTES_PER_XDR_UNIT)) == TRUE) {
}
#elif defined(_BIG_ENDIAN)
}
#endif
return (FALSE);
}
return (TRUE);
}
/*
* XDR short integers
*/
{
int32_t l;
case XDR_ENCODE:
return (XDR_PUTINT32(xdrs, &l));
case XDR_DECODE:
if (!XDR_GETINT32(xdrs, &l))
return (FALSE);
*sp = (short)l;
return (TRUE);
case XDR_FREE:
return (TRUE);
}
return (FALSE);
}
/*
* XDR unsigned short integers
*/
{
uint32_t l;
case XDR_ENCODE:
case XDR_DECODE:
return (FALSE);
}
return (TRUE);
case XDR_FREE:
return (TRUE);
}
return (FALSE);
}
/*
* XDR a char
*/
{
int i;
i = (*cp);
return (FALSE);
}
*cp = (char)i;
return (TRUE);
}
/*
* XDR an unsigned char
*/
{
int i;
case XDR_ENCODE:
i = (*cp);
return (XDR_PUTINT32(xdrs, &i));
case XDR_DECODE:
if (!XDR_GETINT32(xdrs, &i))
return (FALSE);
return (TRUE);
case XDR_FREE:
return (TRUE);
}
return (FALSE);
}
/*
* XDR booleans
*
* PSARC 2003/523 Contract Private Interface
* xdr_bool
* Changes must be reviewed by Solaris File Sharing
* Changes must be communicated to contract-2003-523@sun.com
*/
{
case XDR_ENCODE:
case XDR_DECODE:
return (FALSE);
}
return (TRUE);
case XDR_FREE:
return (TRUE);
}
return (FALSE);
}
/*
* XDR enumerations
*
* PSARC 2003/523 Contract Private Interface
* xdr_enum
* Changes must be reviewed by Solaris File Sharing
* Changes must be communicated to contract-2003-523@sun.com
*/
#ifndef lint
/* an enum */
#endif
{
#ifndef lint
/*
* enums are treated as ints
*/
if (sizeof (sizecheckvar) == sizeof (int32_t)) {
} else if (sizeof (sizecheckvar) == sizeof (short)) {
} else {
return (FALSE);
}
#else
#endif
}
/*
* XDR opaque data
* Allows the specification of a fixed size sequence of opaque bytes.
* cp points to the opaque object and cnt gives the byte length.
*
* PSARC 2003/523 Contract Private Interface
* xdr_opaque
* Changes must be reviewed by Solaris File Sharing
* Changes must be communicated to contract-2003-523@sun.com
*/
{
/*
* if no data we are done
*/
if (cnt == 0)
return (TRUE);
/*
* round byte count to full xdr units
*/
if (rndup != 0)
return (FALSE);
}
if (rndup == 0)
return (TRUE);
}
return (FALSE);
}
if (rndup == 0)
return (TRUE);
}
return (TRUE);
return (FALSE);
}
/*
* XDR counted bytes
* *cpp is a pointer to the bytes, *sizep is the count.
* If *cpp is NULL maxsize bytes are allocated
*
* PSARC 2003/523 Contract Private Interface
* xdr_bytes
* Changes must be reviewed by Solaris File Sharing
* Changes must be communicated to contract-2003-523@sun.com
*/
{
/*
* first deal with the length since xdr bytes are counted
*/
return (FALSE);
}
return (FALSE);
}
/*
* now deal with the actual bytes
*/
case XDR_DECODE:
if (nodesize == 0)
return (TRUE);
/* FALLTHROUGH */
case XDR_ENCODE:
case XDR_FREE:
}
return (TRUE);
}
return (FALSE);
}
/*
* Implemented here due to commonality of the object.
*/
{
}
/*
* XDR a descriminated union
* Support routine for discriminated unions.
* You create an array of xdrdiscrim structures, terminated with
* an entry with a null procedure pointer. The routine gets
* the discriminant value and then searches the array of xdrdiscrims
* looking for that value. It calls the procedure given in the xdrdiscrim
* to handle the discriminant. If there is no specific routine a default
* routine may be called.
* If there is no specific or default routine an error is returned.
*/
{
/*
* we deal with the discriminator; it's an enum
*/
return (FALSE);
}
/*
* search choices for a value that matches the discriminator.
* if we find one, execute the xdr routine for that value.
*/
}
/*
* no match - execute the default xdr routine if there is one
*/
}
/*
* Non-portable xdr primitives.
* Care should be taken when moving these routines to new architectures.
*/
/*
* XDR null terminated ASCII strings
* xdr_string deals with "C strings" - arrays of bytes that are
* terminated by a NULL character. The parameter cpp references a
* pointer to storage; If the pointer is null, then the necessary
* storage is allocated. The last parameter is the max allowed length
* of the string as specified by a protocol.
*/
{
/*
* first deal with the length since xdr strings are counted-strings
*/
case XDR_FREE:
return (TRUE); /* already free */
/* FALLTHROUGH */
case XDR_ENCODE:
break;
case XDR_DECODE:
break;
}
return (FALSE);
}
return (FALSE);
}
/*
* now deal with the actual bytes
*/
case XDR_DECODE:
if (nodesize == 0)
return (TRUE);
/*
* free up memory if allocated here
*/
}
return (FALSE);
}
}
return (FALSE);
}
return (TRUE);
case XDR_ENCODE:
case XDR_FREE:
return (TRUE);
}
return (FALSE);
}
/*
* xdr_vector():
*
* XDR a fixed length array. Unlike variable-length arrays, the storage
* of fixed length arrays is static and unfreeable.
* > basep: base of the array
* > size: size of the array
* > elemsize: size of each element
* > xdr_elem: routine to XDR each element
*/
{
uint_t i;
char *elptr;
for (i = 0; i < nelem; i++) {
return (FALSE);
}
return (TRUE);
}
/*
* Wrapper for xdr_string that can be called directly from
* routines like clnt_call
*/
{
return (TRUE);
return (FALSE);
}