2 * Copyright (c) 2010, Oracle America, Inc.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following
12 * disclaimer in the documentation and/or other materials
13 * provided with the distribution.
14 * * Neither the name of the "Oracle America, Inc." nor the names of its
15 * contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
25 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 * Copyright 1990 Sun Microsystems, Inc.
36 * General purpose routine to see how much space something will use
37 * when serialized using XDR.
40 #include <sys/cdefs.h>
42 __FBSDID("$FreeBSD: src/lib/libc/xdr/xdr_sizeof.c,v 1.5.38.1 2010/12/21 17:10:29 kensmith Exp $");
44 __RCSID("$NetBSD: xdr_sizeof.c,v 1.5 2013/03/11 20:19:30 tron Exp $");
47 #include "namespace.h"
48 #include <rpc/types.h>
50 #include <sys/types.h>
54 __weak_alias(xdr_sizeof
,_xdr_sizeof
)
57 static bool_t
x_putlong(XDR
*, const long *);
58 static bool_t
x_putbytes(XDR
*, const char *, u_int
);
59 static u_int
x_getpostn(XDR
*);
60 static bool_t
x_setpostn(XDR
*, u_int
);
61 static int32_t *x_inline(XDR
*, u_int
);
62 static int harmless(void);
63 static void x_destroy(XDR
*);
67 x_putlong(XDR
*xdrs
, const long *longp
)
69 xdrs
->x_handy
+= BYTES_PER_XDR_UNIT
;
75 x_putbytes(XDR
*xdrs
, const char *bp
, u_int len
)
84 return (xdrs
->x_handy
);
89 x_setpostn(XDR
*xdrs
, u_int pos
)
91 /* This is not allowed */
96 x_inline(XDR
*xdrs
, u_int len
)
101 if (xdrs
->x_op
!= XDR_ENCODE
) {
104 if (len
< (u_int
)(uintptr_t)xdrs
->x_base
) {
105 /* x_private was already allocated */
106 xdrs
->x_handy
+= len
;
107 return ((int32_t *) xdrs
->x_private
);
109 /* Free the earlier space and allocate new area */
111 free(xdrs
->x_private
);
112 if ((xdrs
->x_private
= malloc(len
)) == NULL
) {
116 xdrs
->x_base
= (caddr_t
)(uintptr_t)len
;
117 xdrs
->x_handy
+= len
;
118 return ((int32_t *) xdrs
->x_private
);
125 /* Always return FALSE/NULL, as the case may be */
134 if (xdrs
->x_private
) {
135 free(xdrs
->x_private
);
136 xdrs
->x_private
= NULL
;
142 xdr_sizeof(xdrproc_t func
, void *data
)
147 /* to stop ANSI-C compiler from complaining */
148 typedef bool_t (* dummyfunc1
)(XDR
*, long *);
149 typedef bool_t (* dummyfunc2
)(XDR
*, caddr_t
, u_int
);
151 ops
.x_putlong
= x_putlong
;
152 ops
.x_putbytes
= x_putbytes
;
153 ops
.x_inline
= x_inline
;
154 ops
.x_getpostn
= x_getpostn
;
155 ops
.x_setpostn
= x_setpostn
;
156 ops
.x_destroy
= x_destroy
;
158 /* the other harmless ones */
159 ops
.x_getlong
= (dummyfunc1
) harmless
;
160 ops
.x_getbytes
= (dummyfunc2
) harmless
;
165 x
.x_private
= (caddr_t
) NULL
;
166 x
.x_base
= (caddr_t
) 0;
168 stat
= func(&x
, data
);
171 return (stat
== TRUE
? (unsigned) x
.x_handy
: 0);