Remove a few more casts of NULL to some pointer type.
[dragonfly.git] / lib / libc / xdr / xdr_sizeof.c
1 /*
2  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3  * unrestricted use provided that this legend is included on all tape
4  * media and as a part of the software program in whole or part.  Users
5  * may copy or modify Sun RPC without charge, but are not authorized
6  * to license or distribute it to anyone else except as part of a product or
7  * program developed by the user.
8  *
9  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
10  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
11  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
12  *
13  * Sun RPC is provided with no support and without any obligation on the
14  * part of Sun Microsystems, Inc. to assist in its use, correction,
15  * modification or enhancement.
16  *
17  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
18  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
19  * OR ANY PART THEREOF.
20  *
21  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
22  * or profits or other special, indirect and consequential damages, even if
23  * Sun has been advised of the possibility of such damages.
24  *
25  * Sun Microsystems, Inc.
26  * 2550 Garcia Avenue
27  * Mountain View, California  94043
28  *
29  * $FreeBSD: src/lib/libc/xdr/xdr_sizeof.c,v 1.5 2003/03/07 13:19:40 nectar Exp $
30  */
31
32 /*
33  * xdr_sizeof.c
34  *
35  * Copyright 1990 Sun Microsystems, Inc.
36  *
37  * General purpose routine to see how much space something will use
38  * when serialized using XDR.
39  */
40
41 #include "namespace.h"
42 #include <rpc/types.h>
43 #include <rpc/xdr.h>
44 #include <sys/types.h>
45 #include <stdlib.h>
46 #include "un-namespace.h"
47
48 /* ARGSUSED */
49 static bool_t
50 x_putlong(XDR *xdrs, long *longp __unused)
51 {
52         xdrs->x_handy += BYTES_PER_XDR_UNIT;
53         return (TRUE);
54 }
55
56 /* ARGSUSED */
57 static bool_t
58 x_putbytes(XDR *xdrs, char *bp __unused, u_int len)
59 {
60         xdrs->x_handy += len;
61         return (TRUE);
62 }
63
64 static u_int
65 x_getpostn(XDR *xdrs)
66 {
67         return (xdrs->x_handy);
68 }
69
70 /* ARGSUSED */
71 static bool_t
72 x_setpostn(XDR *xdrs __unused, u_int pos __unused)
73 {
74         /* This is not allowed */
75         return (FALSE);
76 }
77
78 static int32_t *
79 x_inline(XDR *xdrs, u_int len)
80 {
81         if (len == 0) {
82                 return (NULL);
83         }
84         if (xdrs->x_op != XDR_ENCODE) {
85                 return (NULL);
86         }
87         if (len < (u_int)xdrs->x_base) {
88                 /* x_private was already allocated */
89                 xdrs->x_handy += len;
90                 return ((int32_t *) xdrs->x_private);
91         } else {
92                 /* Free the earlier space and allocate new area */
93                 if (xdrs->x_private)
94                         free(xdrs->x_private);
95                 if ((xdrs->x_private = (caddr_t) malloc(len)) == NULL) {
96                         xdrs->x_base = 0;
97                         return (NULL);
98                 }
99                 xdrs->x_base = (caddr_t) len;
100                 xdrs->x_handy += len;
101                 return ((int32_t *) xdrs->x_private);
102         }
103 }
104
105 static int
106 harmless(void)
107 {
108         /* Always return FALSE/NULL, as the case may be */
109         return (0);
110 }
111
112 static void
113 x_destroy(XDR *xdrs)
114 {
115         xdrs->x_handy = 0;
116         xdrs->x_base = 0;
117         if (xdrs->x_private) {
118                 free(xdrs->x_private);
119                 xdrs->x_private = NULL;
120         }
121         return;
122 }
123
124 unsigned long
125 xdr_sizeof(xdrproc_t func, void *data)
126 {
127         XDR x;
128         struct xdr_ops ops;
129         bool_t stat;
130         /* to stop ANSI-C compiler from complaining */
131         typedef  bool_t (* dummyfunc1)(XDR *, long *);
132         typedef  bool_t (* dummyfunc2)(XDR *, caddr_t, u_int);
133
134         ops.x_putlong = x_putlong;
135         ops.x_putbytes = x_putbytes;
136         ops.x_inline = x_inline;
137         ops.x_getpostn = x_getpostn;
138         ops.x_setpostn = x_setpostn;
139         ops.x_destroy = x_destroy;
140
141         /* the other harmless ones */
142         ops.x_getlong =  (dummyfunc1) harmless;
143         ops.x_getbytes = (dummyfunc2) harmless;
144
145         x.x_op = XDR_ENCODE;
146         x.x_ops = &ops;
147         x.x_handy = 0;
148         x.x_private = NULL;
149         x.x_base = (caddr_t) 0;
150
151         stat = func(&x, data);
152         if (x.x_private)
153                 free(x.x_private);
154         return (stat == TRUE ? (unsigned) x.x_handy: 0);
155 }